
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /*paleta original*/
       --cream: #F5F0E8;
      --ivory: #FAF7F2;
      --gold: #B8965A;
      --gold-light: #D4AE72;
      --gold-pale: #E8D5B0;
      --charcoal: #111828;
      --warm-gray: #6B6560;
      --mid-gray: #003366; 
      --color-primary:     #1A1A2E;
      /*paleta generada*/
      --color-primary-mid:  #2B2B3F;
      --color-primary-soft: #3D3D52;
      --color-accent:       #C9A84C;
      --color-accent-light: #E8C96A;
      --color-accent-dark:  #8C6E28;
      --color-bg:           #FAFAF8;
      --color-bg-alt:       #F5F0E8;
      --color-border:       #E0D9CE;
      --color-text-muted:   #8A8580;
      --color-support:      #2C3E6B;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Tenor Sans', sans-serif;
      background: var(--charcoal);
      color: var(--cream);
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom cursor */
    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    }
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid rgba(184,150,90,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, width 0.4s ease, height 0.4s ease;
    }

    /* Noise overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.35;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 60px;
      mix-blend-mode: normal;
    }
    nav::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(26,24,20,0.85) 0%, transparent 100%);
      pointer-events: none;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center; /* Centra horizontalmente */
      align-items: center; /* Centra verticalmente */
      
    }
    .nav-links {
      display: flex; gap: 44px;
      list-style: none;
      position: relative; z-index: 1;
    }
    .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: 0.75;
      transition: opacity 0.3s, color 0.3s;
    }
    .nav-links a:hover { opacity: 1; color: var(--gold-light); }
    .nav-cta {
      position: relative; z-index: 1;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold);
      padding: 10px 24px;
      text-decoration: none;
      transition: background 0.3s;
    }
    .nav-cta:hover { background: var(--gold-light); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 0 60px 80px;
      overflow: hidden;
    }

    /* Geometric background */
    .hero-bg {
      position: absolute; inset: 0;
      background: var(--charcoal);
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      top: -20%; right: -5%;
      width: 65vw; height: 120vh;
      background: linear-gradient(135deg,     #001F3F 0%, #001F3F 50%, var(--charcoal) 100%);
      clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      top: 15%; right: 8%;
      width: 42vw; height: 65vh;
      border: 1px solid rgba(184,150,90,0.15);
      transform: rotate(3deg);
    }

    /* Large ornamental number */
    .hero-ornament {
      position: absolute;
      top: 50%; right: 6%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 32vw;
      font-weight: 300;
      color: transparent;
      -webkit-text-stroke: 1px rgba(184,150,90,0.07);
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }

    /* Gold vertical line */
    .hero-line {
      position: absolute;
      left: 56px;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
      opacity: 0.25;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 36px; left: 61px;
      display: flex; align-items: center; gap: 14px;
    }
    .scroll-indicator span {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--warm-gray);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }
    .scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%,100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(0.6); }
    }

    /* Hero image placeholder */
    .hero-image {
      position: absolute;
      top: 12%; right: 10%;
      width: 38vw; max-width: 560px;
      height: 72vh;
      overflow: hidden;
    }
    .hero-image-inner {
      width: 100%; height: 100%;
      background: linear-gradient(160deg, #001f3ff2 0%, #001f3ff7 40%, #012040 100%);
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-image-inner::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 30% 40%, rgba(184,150,90,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(184,150,90,0.06) 0%, transparent 50%);
    }
    /* Decorative abstract portrait lines */
    .portrait-lines {
      position: absolute;
      width: 85%; height: 90%;
      display: flex; flex-direction: column; justify-content: center;
      gap: 3px;
    }
    .portrait-lines span {
      display: block;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(184,150,90,0.4), transparent);
      transform-origin: left;
      animation: lineAppear 1.5s ease forwards;
      opacity: 0;
    }
    .portrait-lines span:nth-child(odd) { width: 80%; align-self: flex-start; }
    .portrait-lines span:nth-child(even) { width: 60%; align-self: flex-end; }
    @keyframes lineAppear {
      from { opacity: 0; transform: scaleX(0); }
      to   { opacity: 1; transform: scaleX(1); }
    }
    .portrait-lines span:nth-child(1)  { animation-delay: 0.1s; }
    .portrait-lines span:nth-child(2)  { animation-delay: 0.15s; }
    .portrait-lines span:nth-child(3)  { animation-delay: 0.2s; }
    .portrait-lines span:nth-child(4)  { animation-delay: 0.25s; }
    .portrait-lines span:nth-child(5)  { animation-delay: 0.3s; }
    .portrait-lines span:nth-child(6)  { animation-delay: 0.35s; }
    .portrait-lines span:nth-child(7)  { animation-delay: 0.4s; }
    .portrait-lines span:nth-child(8)  { animation-delay: 0.45s; }
    .portrait-lines span:nth-child(9)  { animation-delay: 0.5s; }
    .portrait-lines span:nth-child(10) { animation-delay: 0.55s; }
    .portrait-lines span:nth-child(11) { animation-delay: 0.6s; }
    .portrait-lines span:nth-child(12) { animation-delay: 0.65s; }
    .portrait-lines span:nth-child(13) { animation-delay: 0.7s; }
    .portrait-lines span:nth-child(14) { animation-delay: 0.75s; }
    .portrait-lines span:nth-child(15) { animation-delay: 0.8s; }

    .hero-image::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, var(--charcoal), transparent);
    }

    /* Hero content */
    .hero-content {
      position: relative; z-index: 2;
      max-width: 54%;
      animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.2s both;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px; height: 1px;
      background: var(--gold);
    }
    .hero-eyebrow span {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 5.5vw, 6rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 28px;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 0.88rem;
      line-height: 1.9;
      color: rgba(245,240,232,0.6);
      max-width: 460px;
      margin-bottom: 44px;
    }

    .hero-actions {
      display: flex; align-items: center; gap: 32px;
    }
    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: var(--gold);
      color: var(--charcoal);
      font-family: 'Tenor Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
    }
    .btn-primary::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--charcoal);
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .btn-primary:hover { color: var(--gold); }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-ghost {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.6);
      text-decoration: none;
      transition: color 0.3s;
    }
    .btn-ghost:hover { color: var(--gold-light); }
    .btn-ghost .arrow {
      width: 28px; height: 1px;
      background: currentColor;
      position: relative;
      transition: width 0.3s;
    }
    .btn-ghost:hover .arrow { width: 40px; }
    .btn-ghost .arrow::after {
      content: '';
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 6px; height: 6px;
      border-right: 1px solid currentColor;
      border-top: 1px solid currentColor;
    }

    /* Stats bar */
    .hero-stats {
      position: absolute;
      bottom: 0; right: 10%;
      width: 38vw; max-width: 560px;
      display: grid; grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(184,150,90,0.2);
      z-index: 3;
      animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s both;
    }
    .stat-item {
      padding: 22px 20px;
      border-right: 1px solid rgba(184,150,90,0.15);
      background: rgba(26,24,20,0.8);
      backdrop-filter: blur(8px);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--warm-gray);
    }

    /* ── FEATURES ── */
    #features {
      padding: 130px 60px;
      position: relative;
      overflow: hidden;
    }
    #features::before {
      content: 'Excelencia';
      position: absolute;
      top: 40px; left: -20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 15vw;
      font-weight: 300;
      color: transparent;
      -webkit-text-stroke: 1px rgba(184,150,90,0.05);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .section-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 80px;
    }
    .section-label {
      display: flex; align-items: center; gap: 14px;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      display: block; width: 30px; height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
    }
    .section-title em { font-style: italic; color: var(--gold-light); }
    .section-desc {
      max-width: 340px;
      font-size: 0.85rem;
      line-height: 1.9;
      color: rgba(245,240,232,0.5);
      text-align: right;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(184,150,90,0.12);
    }
    .feature-card {
      background: var(--charcoal);
      padding: 52px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }
    .feature-card:hover { background: #022242; }
    .feature-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .feature-card:hover::before { width: 100%; }

    .feature-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--gold);
      letter-spacing: 0.1em;
      margin-bottom: 32px;
      opacity: 0.6;
    }
    .feature-icon {
      width: 44px; height: 44px;
      border: 1px solid rgba(184,150,90,0.3);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
    }
    .feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .feature-text {
      font-size: 0.82rem;
      line-height: 1.9;
      color: rgba(245,240,232,0.5);
    }

      /* ── ABOUT ── */
    #about {
      padding: 130px 60px;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    /* ── PRICING ── */
    #pricing {
      padding: 130px 60px;
      background: #161411;
      position: relative;
      overflow: hidden;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 80px;
    }
    .pricing-card {
      border: 1px solid rgba(184,150,90,0.15);
      padding: 52px 36px;
      position: relative;
      transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .pricing-card:hover {
      border-color: rgba(184,150,90,0.5);
      transform: translateY(-6px);
    }
    .pricing-card.featured {
      border-color: var(--gold);
      background: linear-gradient(160deg, #211E18 0%, #1A1814 100%);
    }
    .pricing-badge {
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--charcoal);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 18px;
    }
    .pricing-tier {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .pricing-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 6px;
    }
    .pricing-period {
      font-size: 0.72rem;
      color: var(--warm-gray);
      margin-bottom: 36px;
    }
    .pricing-divider {
      height: 1px;
      background: rgba(184,150,90,0.15);
      margin-bottom: 32px;
    }
    .pricing-features {
      list-style: none;
      margin-bottom: 40px;
    }
    .pricing-features li {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.82rem;
      color: rgba(245,240,232,0.65);
      margin-bottom: 14px;
    }
    .pricing-features li::before {
      content: '';
      display: block;
      width: 16px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .pricing-features li.disabled {
      opacity: 0.35;
      text-decoration: line-through;
    }
    .btn-pricing {
      display: block; width: 100%;
      padding: 14px;
      text-align: center;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(184,150,90,0.4);
      color: var(--cream);
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .btn-pricing:hover, .pricing-card.featured .btn-pricing {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--charcoal);
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      padding: 130px 60px;
      position: relative;
      overflow: hidden;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 60px;
      margin-top: 80px;
      align-items: start;
    }
    .testimonial-featured {
      border-left: 2px solid var(--gold);
      padding-left: 40px;
    }
    .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.2vw, 2rem);
      font-weight: 300;
      line-height: 1.5;
      font-style: italic;
      color: var(--cream);
      margin-bottom: 32px;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 16px;
    }
    .author-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(184,150,90,0.4);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--gold-light);
      background: rgba(184,150,90,0.08);
    }
    .author-name {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }
    .author-role {
      font-size: 0.7rem;
      color: var(--warm-gray);
      letter-spacing: 0.1em;
    }
    .stars {
      display: flex; gap: 3px;
      margin-bottom: 20px;
    }
    .stars span {
      width: 10px; height: 10px;
      background: var(--gold);
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .testimonials-stack {
      display: flex; flex-direction: column; gap: 20px;
    }
    .testimonial-mini {
      border: 1px solid rgba(184,150,90,0.12);
      padding: 28px;
      transition: border-color 0.3s;
    }
    .testimonial-mini:hover { border-color: rgba(184,150,90,0.35); }
    .testimonial-mini .testimonial-quote {
      font-size: 0.95rem;
      margin-bottom: 16px;
    }

    /* ── FAQ ── */
    #faq {
      padding: 130px 60px;
      background: #161411;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 100px;
      margin-top: 80px;
      align-items: start;
    }
    .faq-intro {
      position: sticky; top: 120px;
    }
    .faq-intro p {
      font-size: 0.85rem;
      line-height: 1.9;
      color: rgba(245,240,232,0.5);
      margin-top: 20px;
    }
    .faq-contact {
      display: flex; align-items: center; gap: 12px;
      margin-top: 36px;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: gap 0.3s;
    }
    .faq-contact:hover { gap: 20px; }
    .faq-contact::after {
      content: '→';
    }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item {
      border-top: 1px solid rgba(184,150,90,0.15);
      overflow: hidden;
    }
    .faq-item:last-child { border-bottom: 1px solid rgba(184,150,90,0.15); }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 28px 0;
      cursor: pointer;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      transition: color 0.3s;
    }
    .faq-question:hover { color: var(--gold-light); }
    .faq-plus {
      width: 24px; height: 24px;
      border: 1px solid rgba(184,150,90,0.3);
      position: relative; flex-shrink: 0;
      transition: transform 0.4s, background 0.3s;
    }
    .faq-plus::before, .faq-plus::after {
      content: '';
      position: absolute;
      background: var(--gold);
      transition: opacity 0.3s, transform 0.3s;
    }
    .faq-plus::before { width: 10px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .faq-plus::after  { width: 1px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .faq-item.open .faq-plus { background: rgba(184,150,90,0.15); transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
      font-size: 0.85rem;
      line-height: 1.9;
      color: rgba(245,240,232,0.5);
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: 28px;
    }

    /* ── CTA / CONTACT ── */
    #contact {
      padding: 130px 60px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .cta-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 60%, rgba(184,150,90,0.08) 0%, transparent 70%);
    }
    .cta-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(184,150,90,0.08);
    }
    .cta-ring:nth-child(1) { width: 500px; height: 500px; }
    .cta-ring:nth-child(2) { width: 750px; height: 750px; }
    .cta-ring:nth-child(3) { width: 1000px; height: 1000px; }

    .cta-content { position: relative; z-index: 2; }
    .cta-eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .cta-eyebrow::before, .cta-eyebrow::after {
      content: '';
      display: block; width: 30px; height: 1px;
      background: var(--gold);
    }
    .cta-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      max-width: 700px;
      margin: 0 auto 20px;
    }
    .cta-headline em { font-style: italic; color: var(--gold-light); }
    .cta-sub {
      font-size: 0.88rem;
      color: rgba(245,240,232,0.5);
      max-width: 440px;
      margin: 0 auto 52px;
      line-height: 1.9;
    }
    .cta-form {
      display: flex; gap: 0;
      max-width: 480px;
      margin: 0 auto 24px;
    }
    .cta-form input {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,150,90,0.25);
      /*border-right: none;*/
      padding: 16px 20px;
      color: var(--cream);
      font-family: 'Tenor Sans', sans-serif;
      font-size: 0.82rem;
      outline: none;
      transition: border-color 0.3s;
    }
    
    .cta-form input::placeholder { color: rgba(245,240,232,0.3); }
    .cta-form input:focus { border-color: var(--gold); }
    .cta-form button {
      background: var(--gold);
      border: none;
      padding: 16px 28px;
      color: var(--charcoal);
      font-family: 'Tenor Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: none;
      transition: background 0.3s;
    }
    .cta-form button:hover { background: var(--gold-light); }
    .cta-disclaimer {
      font-size: 0.65rem;
      color: rgba(245,240,232,0.25);
      letter-spacing: 0.1em;
    }

    /* ── FOOTER ── */
    footer {
      padding: 52px 60px 40px;
      border-top: 1px solid rgba(184,150,90,0.1);
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
    }
    .footer-copy {
      font-size: 0.65rem;
      color: var(--warm-gray);
      letter-spacing: 0.12em;
      text-align: center;
    }
    .footer-links {
      display: flex; gap: 28px; justify-content: flex-end;
      list-style: none;
    }
    .footer-links a {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--warm-gray);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold-light); }

    /* Reveal animation on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @media (max-width: 900px) {
      nav { padding: 24px 28px; }
      .nav-links { display: none; }
      .hero { padding: 0 28px 60px; }
      .hero-content { max-width: 100%; }
      .hero-image { display: none; }
      .hero-stats { right: 0; left: 0; width: 100%; grid-template-columns: repeat(3,1fr); }
      #features, #pricing, #testimonials, #faq, #contact, #about{ padding: 80px 28px; }
      .features-grid, .pricing-grid { grid-template-columns: 1fr; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .section-desc { text-align: left; max-width: 100%; }
      .testimonials-grid, .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .faq-intro { position: static; }
      footer { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
    }
    /* WHATSAPP ICON */
.whatsapp-ico{
    fill: white;
    width: 70px;
    height: 70px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    /* box-shadow: 2px 2px 11px rgba(0,0,0,0.7); */
    position: fixed;
    bottom: 20px;
    right : 20px;
    z-index: 10;
}

.whatsapp-ico:hover{
    box-shadow: 2px 2px 11px rgba(0,0,0,0.7);
}