
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: #000;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
    }

    /* Gold gradient text */
    .gold-text {
      background: linear-gradient(135deg, #C9A84C 0%, #E8D087 50%, #C9A84C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Noise grain 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.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* Gold CTA button */
    .btn-gold {
      background: linear-gradient(135deg, #C9A84C, #A8852D);
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.72rem;
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
      display: inline-block;
    }
    .btn-gold::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #E8D087, #C9A84C);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .btn-gold:hover::after { opacity: 1; }
    .btn-gold span { position: relative; z-index: 1; }

    /* Outline button */
    .btn-outline {
      border: 1px solid rgba(201,168,76,0.4);
      color: #C9A84C;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.72rem;
      padding: 14px 32px;
      cursor: pointer;
      transition: all 0.35s ease;
      display: inline-block;
    }
    .btn-outline:hover {
      border-color: #C9A84C;
      background: rgba(201,168,76,0.05);
    }

    /* Nav */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.25em;
      color: #fff;
    }
    .nav-logo span { color: #C9A84C; }
    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      transition: color 0.25s;
      text-decoration: none;
    }
    .nav-links a:hover { color: #C9A84C; }

    /* Section label */
    .section-label {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #C9A84C;
      margin-bottom: 20px;
      display: block;
    }

    /* Hero */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      padding-top: 80px;
    }
    .hero-left {
      padding: 80px 64px 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 5.5vw, 7rem);
      line-height: 0.92;
      letter-spacing: 0.01em;
      color: #fff;
      margin-bottom: 28px;
    }
    .hero-sub {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      max-width: 420px;
      margin-bottom: 44px;
      font-weight: 300;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 52px;
    }
    .hero-secondary-link {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      padding-bottom: 2px;
      transition: color 0.25s, border-color 0.25s;
    }
    .hero-secondary-link:hover { color: #C9A84C; border-color: rgba(201,168,76,0.4); }
    .hero-stats {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 36px;
    }
    .hero-stat {
      flex: 1;
      border-right: 1px solid rgba(255,255,255,0.08);
      padding-right: 32px;
      margin-right: 32px;
    }
    .hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
    .hero-stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.05em;
      color: #C9A84C;
      display: block;
    }
    .hero-stat-label {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      display: block;
      margin-top: 4px;
    }
    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      filter: contrast(1.1) brightness(0.85);
    }
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, #000 0%, transparent 25%),
                  linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
      z-index: 1;
    }
    .hero-right-badge {
      position: absolute;
      bottom: 40px;
      right: 40px;
      z-index: 2;
      border: 1px solid rgba(201,168,76,0.3);
      padding: 16px 20px;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
    }
    .hero-right-badge p {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }
    .hero-right-badge p span { color: #C9A84C; }

    /* Marquee */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      background: #0A0A0A;
      padding: 18px 0;
    }
    .marquee-track {
      display: flex;
      gap: 80px;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.2);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 80px;
    }
    .marquee-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: #C9A84C;
      display: inline-block;
      flex-shrink: 0;
    }

    /* Philosophy section */
    #philosophy {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
    }
    .philosophy-img {
      overflow: hidden;
      position: relative;
    }
    .philosophy-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.15) brightness(0.75);
      transition: transform 0.8s ease;
    }
    .philosophy-img:hover img { transform: scale(1.03); }
    .philosophy-content {
      padding: 96px 80px 96px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #0A0A0A;
    }
    .philosophy-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 3.5vw, 4.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      margin-bottom: 36px;
    }
    .philosophy-body p {
      font-size: 0.95rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.45);
      font-weight: 300;
      margin-bottom: 20px;
    }
    .philosophy-body p:last-child { margin-bottom: 0; }
    .philosophy-body em { color: rgba(255,255,255,0.7); font-style: italic; }

    /* Gallery */
    #gallery {
      padding: 120px 80px;
      background: #000;
    }
    .gallery-title {
      text-align: center;
      margin-bottom: 64px;
    }
    .gallery-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 4vw, 5.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
    }
    .gallery-item:nth-child(1) { height: 580px; }
    .gallery-item:nth-child(2) { height: 580px; margin-top: 60px; }
    .gallery-item:nth-child(3) { height: 580px; margin-top: -60px; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: contrast(1.1) brightness(0.8);
      transition: transform 0.7s ease, filter 0.7s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); filter: contrast(1.15) brightness(0.9); }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
      pointer-events: none;
    }
    .gallery-item-label {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 2;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* Features */
    #features {
      padding: 120px 80px 0;
      background: #000;
    }
    .features-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 72px;
    }
    .features-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 3vw, 4rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      margin-bottom: 16px;
    }
    .features-sub {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.35);
      font-weight: 300;
      line-height: 1.7;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: #1A1A1A;
    }
    .feature-card {
      background: #0B0B0B;
      padding: 48px 40px;
      transition: background 0.3s ease;
      position: relative;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .feature-card:hover { background: #111; }
    .feature-card:hover::before { opacity: 1; }
    .feature-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      color: #C9A84C;
      margin-bottom: 28px;
      opacity: 0.7;
    }
    .feature-title {
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 12px;
      color: #fff;
    }
    .feature-desc {
      font-size: 0.85rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.35);
      font-weight: 300;
    }

    /* Callout bar */
    .callout-bar {
      background: #0D0D0D;
      border-top: 1px solid #1E1E1E;
      border-bottom: 1px solid #1E1E1E;
      padding: 48px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      margin-top: 1px;
    }
    .callout-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.1rem, 1.8vw, 1.5rem);
      font-style: italic;
      color: rgba(255,255,255,0.65);
      max-width: 560px;
      line-height: 1.5;
    }
    .callout-text em { color: #fff; font-style: italic; }

    /* Testimonials */

    /* Stars */
    .stars { color: #C9A84C; font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 20px; }

    /* FAQ */
    #faq {
      padding: 120px 80px;
      background: #0A0A0A;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .faq-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 3vw, 4rem);
      letter-spacing: 0.02em;
    }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid #1E1E1E;
    }
    .faq-item:first-child { border-top: 1px solid #1E1E1E; }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 0;
      cursor: pointer;
      text-align: left;
      gap: 24px;
    }
    .faq-q-text {
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.01em;
    }
    .faq-icon {
      width: 28px; height: 28px;
      border: 1px solid #2A2A2A;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #C9A84C;
      font-size: 1.2rem;
      transition: transform 0.3s ease, border-color 0.3s;
      font-weight: 300;
      line-height: 1;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      border-color: rgba(201,168,76,0.4);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding-bottom: 28px;
      font-size: 0.88rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.4);
      font-weight: 300;
    }

    /* CTA Footer */
    #cta-footer {
      padding: 140px 80px 100px;
      text-align: center;
      background: #000;
      position: relative;
      overflow: hidden;
    }
    #cta-footer::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 7vw, 9rem);
      line-height: 0.9;
      letter-spacing: 0.01em;
      margin-bottom: 32px;
    }
    .cta-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.4);
      font-weight: 300;
      max-width: 480px;
      margin: 0 auto 52px;
      line-height: 1.7;
    }
    .cta-btn-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Footer bottom */
    footer {
      border-top: 1px solid #111;
      padding: 32px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #000;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.3);
    }
    .footer-logo span { color: rgba(201,168,76,0.5); }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      text-decoration: none;
      transition: color 0.25s;
    }
    .footer-links a:hover { color: rgba(201,168,76,0.6); }

    /* Responsive */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 100px 40px 60px; }
      .hero-right { height: 60vh; }
      #philosophy { grid-template-columns: 1fr; }
      .philosophy-img { height: 50vh; }
      .philosophy-content { padding: 72px 40px; }
      #gallery, #features, #pricing, #testimonials, #faq, #cta-footer { padding-left: 40px; padding-right: 40px; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; gap: 3px; }
      .gallery-item, .gallery-item:nth-child(2), .gallery-item:nth-child(3) { height: 400px; margin: 0; }
      .callout-bar { flex-direction: column; text-align: center; padding: 48px 40px; }
      nav { padding: 20px 24px; }
      .nav-links { display: none; }
      footer { flex-direction: column; gap: 20px; padding: 28px 40px; text-align: center; }
    }
    @media (max-width: 640px) {
      .hero-left { padding: 100px 24px 60px; }
      #gallery, #features, #pricing, #testimonials, #faq, #cta-footer { padding-left: 24px; padding-right: 24px; }
      .features-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; gap: 20px; }
      .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; margin-right: 0; padding-right: 0; }
      .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
      .callout-bar { padding: 48px 24px; }
      footer { padding: 28px 24px; }
    }

    /* Floating WhatsApp button */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 200;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #C9A84C, #A8852D);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(201,168,76,0.25), 0 2px 8px rgba(0,0,0,0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(201,168,76,0.4), 0 4px 12px rgba(0,0,0,0.6);
    }
    .whatsapp-float svg { width: 26px; height: 26px; fill: #000; }
    .whatsapp-float::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.25);
      animation: wa-pulse 2.5s ease-out infinite;
    }
    @keyframes wa-pulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.55); opacity: 0; }
    }
    @media (max-width: 640px) {
      .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
      .whatsapp-float svg { width: 22px; height: 22px; }
    }

    /* ===== PRICING ===== */
    #pricing {
      padding: 120px 80px;
      background: #000;
      position: relative;
    }
    #pricing::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3));
    }
    .pricing-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .pricing-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 4vw, 5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      margin-bottom: 16px;
    }
    .pricing-sub {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.35);
      font-weight: 300;
      line-height: 1.7;
      max-width: 480px;
      margin: 0 auto;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .pricing-card {
      background: #0B0B0B;
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease;
      border: 1px solid #1A1A1A;
    }
    .pricing-card:hover { background: #111; }
    .pricing-card.featured {
      background: #0F0E0B;
      border-color: rgba(201,168,76,0.25);
    }
    .pricing-card.featured:hover { background: #141208; }
    .pricing-card.featured::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top center, rgba(201,168,76,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .pricing-badge {
      display: inline-block;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #000;
      background: linear-gradient(135deg, #C9A84C, #A8852D);
      padding: 5px 14px;
      margin-bottom: 32px;
    }
    .pricing-badge-ghost {
      display: inline-block;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      border: 1px solid #222;
      padding: 5px 14px;
      margin-bottom: 32px;
    }
    .pricing-plan-name {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 12px;
      display: block;
    }
    .pricing-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem;
      line-height: 1;
      letter-spacing: 0.02em;
      margin-bottom: 6px;
    }
    .pricing-price sup {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 300;
      vertical-align: top;
      margin-top: 12px;
      display: inline-block;
      color: rgba(255,255,255,0.6);
    }
    .pricing-duration {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.25);
      margin-bottom: 40px;
      display: block;
    }
    .pricing-divider {
      height: 1px;
      background: #1E1E1E;
      margin-bottom: 36px;
    }
    .pricing-features {
      list-style: none;
      margin-bottom: 44px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      line-height: 1.5;
    }
    .pricing-check {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pricing-check svg { width: 14px; height: 14px; }
    .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.65); }
    .pricing-card.featured .pricing-check svg path { stroke: #C9A84C; }
    .pricing-note {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.2);
      text-align: center;
      margin-top: 40px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 1024px) {
      #pricing { padding-left: 40px; padding-right: 40px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
    }
    @media (max-width: 640px) {
      #pricing { padding-left: 24px; padding-right: 24px; }
      .pricing-card { padding: 40px 28px; }
    }

    /* Fade in on load */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-left > * {
      animation: fadeUp 0.8s ease forwards;
      opacity: 0;
    }
    .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
    .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
    .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
    .hero-left > *:nth-child(5) { animation-delay: 0.5s; }
  
