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

    :root {
      --bg:        #070b07;
      --bg2:       #0d130d;
      --bg3:       #111811;
      --gold:      #c9a84c;
      --gold-lt:   #e8c96a;
      --gold-dk:   #9a7a2e;
      --green-lt:  #3db82a;
      --white:     #f5f0e8;
      --muted:     #97a395;
      --border:    rgba(201,168,76,0.18);
      --card-bg:   rgba(255,255,255,0.028);
      --focus-ring: rgba(201,168,76,0.5);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
    }

    /* ────────────── SKIP LINK (A11y) ────────────── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      z-index: 100000;
      padding: 12px 24px;
      background: var(--gold);
      color: var(--bg);
      font-weight: 700;
      font-size: 14px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 16px;
    }

    /* ────────────── FOCUS STYLES (A11y) ────────────── */
    :focus-visible {
      outline: 2px solid var(--focus-ring);
      outline-offset: 3px;
    }
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* ────────────── BRAND PRELOADER ────────────── */
    body.preloader-active {
      overflow: hidden !important;
    }

    .brand-preloader {
      position: fixed;
      inset: 0;
      z-index: 999999;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      overflow: hidden;
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
      opacity: 1;
      visibility: visible;
    }

    .brand-preloader.fade-out {
      opacity: 0;
      transform: scale(1.04);
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-bg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(140px);
      pointer-events: none;
      opacity: 0.6;
    }

    .preloader-bg-glow.glow-1 {
      width: 500px;
      height: 500px;
      background: rgba(201, 168, 76, 0.15);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: preloaderPulse 4s ease-in-out infinite alternate;
    }

    .preloader-bg-glow.glow-2 {
      width: 400px;
      height: 400px;
      background: rgba(61, 184, 42, 0.12);
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: preloaderPulse 3s ease-in-out infinite alternate-reverse;
    }

    @keyframes preloaderPulse {
      0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.4; }
      100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
    }

    .preloader-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .preloader-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 440px;
      width: 90%;
      padding: 20px;
    }

    .preloader-logo-wrapper {
      position: relative;
      width: 110px;
      height: 110px;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preloader-ring {
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 0%, var(--gold-lt) 50%, transparent 100%);
      animation: spinPreloader 2.5s linear infinite;
      mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
    }

    .preloader-ring-outer {
      position: absolute;
      inset: -16px;
      border-radius: 50%;
      border: 1px dashed rgba(201, 168, 76, 0.25);
      animation: spinPreloaderReverse 12s linear infinite;
    }

    @keyframes spinPreloader {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes spinPreloaderReverse {
      0% { transform: rotate(360deg); }
      100% { transform: rotate(0deg); }
    }

    .preloader-logo-card {
      width: 96px;
      height: 96px;
      border-radius: 24px;
      background: rgba(13, 19, 13, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 168, 76, 0.2);
      position: relative;
      z-index: 2;
      overflow: hidden;
      animation: preloaderFloat 3s ease-in-out infinite alternate;
    }

    @keyframes preloaderFloat {
      0% { transform: translateY(0px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 168, 76, 0.2); }
      100% { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7), 0 0 45px rgba(201, 168, 76, 0.35); }
    }

    .preloader-logo-img {
      width: 68px;
      height: 68px;
      object-fit: cover;
      border-radius: 14px;
    }

    .preloader-sparkle {
      position: absolute;
      color: var(--gold-lt);
      font-size: 12px;
      pointer-events: none;
      animation: sparkleBounce 2s ease-in-out infinite alternate;
      text-shadow: 0 0 8px var(--gold);
    }

    .preloader-sparkle.s1 { top: -10px; right: 0px; animation-delay: 0s; }
    .preloader-sparkle.s2 { bottom: -5px; left: -10px; animation-delay: 0.6s; font-size: 14px; }
    .preloader-sparkle.s3 { top: 40%; right: -22px; animation-delay: 1.2s; font-size: 10px; }

    @keyframes sparkleBounce {
      0% { transform: scale(0.7) rotate(0deg); opacity: 0.4; }
      100% { transform: scale(1.2) rotate(20deg); opacity: 1; }
    }

    .preloader-brand-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 6px;
    }

    .preloader-title-main {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      background: linear-gradient(135deg, var(--white), var(--gold-lt), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-transform: uppercase;
    }

    .preloader-title-sinhala {
      font-family: 'Noto Sans Sinhala', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gold);
      opacity: 0.95;
    }

    .preloader-tagline {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 30px;
    }

    .preloader-progress-box {
      width: 100%;
    }

    .preloader-bar-bg {
      width: 100%;
      height: 6px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(201, 168, 76, 0.15);
      margin-bottom: 12px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
    }

    .preloader-bar-fill {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
      border-radius: 10px;
      transition: width 0.15s linear;
      position: relative;
      box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
    }

    .preloader-bar-fill::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      animation: barShimmer 1.5s infinite;
    }

    @keyframes barShimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .preloader-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
    }

    .preloader-status {
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: opacity 0.2s ease;
    }

    .preloader-counter {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      color: var(--gold-lt);
      letter-spacing: 0.05em;
      min-width: 40px;
      text-align: right;
    }

    /* ────────────── CLEAN BACKGROUND ────────────── */
    body::before {
      display: none;
    }

    /* ────────────── SCROLLBAR ────────────── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 10px; }

    /* ────────────── NAVBAR ────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(7,11,7,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 12px 60px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    }
    .nav-logo {
      height: 52px; width: 52px; border-radius: 14px;
      object-fit: cover; box-shadow: 0 4px 20px rgba(201,168,76,0.3);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .nav-logo:hover { transform: scale(1.06); box-shadow: 0 6px 28px rgba(201,168,76,0.5); }
    .nav-brand {
      display: flex; align-items: center; gap: 14px; text-decoration: none;
    }
    .nav-wordmark {
      font-family: 'Montserrat', 'Noto Sans Sinhala', sans-serif;
      font-size: 1.35rem; font-weight: 600;
      letter-spacing: 0.05em; text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links {
      display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0;
    }
    .nav-links a {
      text-decoration: none; font-weight: 500; font-size: 14px;
      color: rgba(245,240,232,0.75); padding: 8px 18px; border-radius: 6px;
      letter-spacing: 0.03em;
      transition: color 0.25s, background 0.25s;
    }
    .nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
    .nav-links a:active { transform: scale(0.97); }

    .nav-whatsapp {
      display: inline-flex !important;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, #128C7E, #25D366) !important;
      color: #ffffff !important;
      font-weight: 700 !important;
      font-size: 13px !important;
      border-radius: 6px !important;
      padding: 9px 18px !important;
      letter-spacing: 0.04em !important;
      box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35) !important;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease !important;
      margin-right: 6px;
    }
    .nav-whatsapp svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      flex-shrink: 0;
    }
    .nav-whatsapp:hover {
      box-shadow: 0 6px 26px rgba(37, 211, 102, 0.55) !important;
      transform: translateY(-1px);
      color: #ffffff !important;
    }
    .nav-whatsapp:active {
      transform: translateY(0) scale(0.98) !important;
    }
    .nav-fb {
      display: inline-flex !important;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, #0e448b, #1877F2) !important;
      color: #ffffff !important;
      font-weight: 700 !important;
      font-size: 13px !important;
      border-radius: 6px !important;
      padding: 9px 18px !important;
      letter-spacing: 0.04em !important;
      box-shadow: 0 4px 18px rgba(24, 119, 242, 0.35) !important;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    }
    .nav-fb svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      flex-shrink: 0;
    }
    .nav-fb:hover {
      box-shadow: 0 6px 26px rgba(24, 119, 242, 0.55) !important;
      transform: translateY(-1px);
      color: #ffffff !important;
    }
    .nav-fb:active {
      transform: translateY(0) scale(0.98) !important;
    }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }

    /* ────────────── GOLD LINE ────────────── */
    .gold-line {
      display: block; width: 60px; height: 2px; margin-bottom: 20px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .gold-line.center { margin: 0 auto 20px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

    /* ────────────── SECTION LABEL ────────────── */
    .label {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 12px;
    }

    /* ────────────── HERO ────────────── */
    #hero {
      min-height: 100vh; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-glow {
      position: absolute; border-radius: 50%; filter: blur(140px);
      pointer-events: none;
    }
    .hg1 { width: 700px; height: 700px; background: rgba(42,124,26,0.12); top: -200px; left: -200px; }
    .hg2 { width: 600px; height: 600px; background: rgba(201,168,76,0.1); top: -100px; right: -150px; }
    .hg3 { width: 500px; height: 500px; background: rgba(240,96,0,0.08); bottom: -100px; left: 30%; }

    /* Gold particle dots */
    .particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .particle {
      position: absolute; border-radius: 50%;
      background: radial-gradient(circle, var(--gold-lt), transparent);
      animation: particleFloat linear infinite;
      opacity: 0;
    }

    @keyframes particleFloat {
      0%   { transform: translateY(110vh) scale(0); opacity: 0; }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.3; }
      100% { transform: translateY(-10vh) scale(1); opacity: 0; }
    }

    .hero-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      max-width: 1200px; margin: 0 auto; padding: 130px 60px 80px;
    }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
    }
    .hero-eyebrow-line {
      width: 36px; height: 1px; background: var(--gold);
    }
    .hero-eyebrow span {
      font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold);
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 900; line-height: 1.1;
      color: var(--white); margin-bottom: 24px;
      letter-spacing: -0.01em;
    }
    .hero-title em {
      font-style: italic;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.05rem; color: var(--muted); line-height: 1.8;
      margin-bottom: 44px; max-width: 480px; font-weight: 400;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 15px 34px; border-radius: 6px;
      font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
      text-decoration: none; text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
      color: var(--bg); transition: all 0.3s;
      box-shadow: 0 8px 32px rgba(201,168,76,0.4);
      position: relative; overflow: hidden;
    }
    .btn-gold::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
      opacity: 0; transition: opacity 0.3s;
    }
    .btn-gold:hover::before { opacity: 1; }
    .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(201,168,76,0.55); }
    .btn-gold:active { transform: translateY(-1px) scale(0.98); }
    .btn-gold span { position: relative; z-index: 1; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 32px; border-radius: 6px;
      font-weight: 600; font-size: 14px; letter-spacing: 0.05em;
      text-decoration: none; text-transform: uppercase;
      border: 1px solid var(--border);
      color: var(--gold); transition: all 0.3s;
      background: transparent;
    }
    .btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-2px); }
    .btn-outline:active { transform: translateY(0) scale(0.98); }

    .hero-right { display: flex; justify-content: center; align-items: center; }
    .logo-frame {
      position: relative; width: 380px; height: 380px;
    }
    .logo-ring {
      position: absolute; inset: 0; border-radius: 50%;
      border: 1px solid var(--border);
      animation: ringRotate 20s linear infinite;
    }
    .logo-ring::after {
      content: ''; position: absolute;
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--gold); top: 10px; left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 12px var(--gold);
    }
    .logo-ring-2 {
      position: absolute; inset: 20px; border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.08);
      animation: ringRotate 30s linear infinite reverse;
    }
    @keyframes ringRotate { to { transform: rotate(360deg); } }
    .logo-inner {
      position: absolute; inset: 36px; border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, rgba(7,11,7,0.6) 70%);
      display: flex; align-items: center; justify-content: center;
      box-shadow:
        0 0 60px rgba(201,168,76,0.1),
        inset 0 0 60px rgba(7,11,7,0.6);
    }
    .hero-logo {
      width: 240px;
      height: auto;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      border-radius: 24px;
      box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(201,168,76,0.2);
      animation: logoPulse 5s ease-in-out infinite;
    }
    @keyframes logoPulse {
      0%,100% { transform: scale(1) translateY(0); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.2); }
      50% { transform: scale(1.025) translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(201,168,76,0.35); }
    }
    .hero-badge {
      position: absolute; border-radius: 12px; padding: 10px 16px;
      display: flex; align-items: center; gap: 8px; font-size: 12px;
      font-weight: 700; letter-spacing: 0.05em;
      backdrop-filter: blur(12px); border: 1px solid var(--border);
      animation: badgeFloat 4s ease-in-out infinite;
    }
    .hb1 {
      background: rgba(13,19,13,0.9); color: var(--gold);
      top: 10%; right: -20px; animation-delay: 0s;
    }
    .hb2 {
      background: rgba(13,19,13,0.9); color: var(--green-lt);
      bottom: 15%; left: -30px; animation-delay: 2s;
    }
    @keyframes badgeFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .hero-scroll {
      position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--muted); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .scroll-arrow { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent); }
    @keyframes scrollBounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ────────────── DIVIDER ────────────── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0;
    }

    /* ────────────── SECTIONS ────────────── */
    section { padding: 110px 60px; position: relative; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-header { margin-bottom: 70px; }
    .section-header.center { text-align: center; }
    .section-header.center .gold-line { margin: 0 auto 20px; }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700; line-height: 1.2;
      color: var(--white); margin-bottom: 16px;
    }
    .section-title em {
      font-style: italic;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-desc { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 540px; }
    .section-desc.center { margin: 0 auto; text-align: center; max-width: 600px; }

    /* ────────────── SERVICES ────────────── */
    #services { background: var(--bg2); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
    }
    .svc-card {
      background: var(--bg2);
      padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: all 0.4s ease;
      cursor: default;
    }
    .svc-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0); transition: transform 0.4s ease;
    }
    .svc-card::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
      opacity: 0; transition: opacity 0.4s;
    }
    .svc-card:hover { background: var(--bg3); }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-card:hover::after { opacity: 1; }
    .svc-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 900; line-height: 1;
      color: rgba(201,168,76,0.1); margin-bottom: 20px;
      display: block; letter-spacing: -0.02em;
      transition: color 0.4s;
    }
    .svc-card:hover .svc-num { color: rgba(201,168,76,0.2); }
    .svc-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
    .svc-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700;
      color: var(--white); margin-bottom: 12px; line-height: 1.3;
    }
    .svc-text {
      font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 400;
    }
    .svc-tag {
      display: inline-block; margin-top: 16px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
      padding: 4px 12px; border: 1px solid rgba(201,168,76,0.25);
      border-radius: 4px;
    }


    /* ────────────── PLATFORMS ────────────── */
    #platforms { background: var(--bg); }
    .platforms-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .platform-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
    .platform-item {
      display: flex; align-items: center; gap: 20px;
      padding: 20px 28px; border-radius: 12px;
      background: var(--card-bg); border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .platform-item:hover { border-color: rgba(201,168,76,0.4); transform: translateX(6px); background: rgba(201,168,76,0.04); }
    .platform-icon { font-size: 1.8rem; flex-shrink: 0; }
    .platform-name { font-weight: 700; font-size: 15px; color: var(--white); }
    .platform-desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .platform-badge {
      margin-left: auto; font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); padding: 4px 10px;
      background: rgba(201,168,76,0.1); border-radius: 4px;
    }
    .why-visual {
      position: relative; display: flex; justify-content: center;
    }
    .why-logo-wrap {
      width: 320px; height: 320px; border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(201,168,76,0.15);
      position: relative;
    }
    .why-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .why-logo-wrap::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(201,168,76,0.15) 0%, transparent 50%);
      z-index: 1;
    }
    .metric-cards {
      position: absolute; right: -36px; top: 50%;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 12px;
    }
    .metric {
      background: rgba(13,19,13,0.95);
      backdrop-filter: blur(16px); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px 20px;
      text-align: right; white-space: nowrap;
    }
    .metric-val {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 900;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .metric-lbl { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }

    /* ────────────── CONTACT ────────────── */
    #contact { background: var(--bg2); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 70px; align-items: start;
    }

    .contact-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-style: italic; color: var(--muted);
      margin: 24px 0 40px; line-height: 1.7;
    }
    .contact-methods { display: flex; flex-direction: column; gap: 14px; }
    .contact-btn {
      display: flex; align-items: center; gap: 16px;
      padding: 18px 24px; border-radius: 12px;
      text-decoration: none; transition: all 0.3s;
      border: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .contact-btn::before {
      content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
    }
    .cb-whatsapp { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.2); }
    .cb-whatsapp::before { background: rgba(37,211,102,0.08); }
    .cb-whatsapp:hover { border-color: rgba(37,211,102,0.5); transform: translateX(4px); }
    .cb-whatsapp:hover::before { opacity: 1; }
    .cb-call { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.2); }
    .cb-call::before { background: rgba(201,168,76,0.08); }
    .cb-call:hover { border-color: rgba(201,168,76,0.5); transform: translateX(4px); }
    .cb-call:hover::before { opacity: 1; }
    .cb-fb { background: rgba(24,119,242,0.06); border-color: rgba(24,119,242,0.2); }
    .cb-fb::before { background: rgba(24,119,242,0.08); }
    .cb-fb:hover { border-color: rgba(24,119,242,0.5); transform: translateX(4px); }
    .cb-fb:hover::before { opacity: 1; }
    .cb-email { background: rgba(234,67,53,0.06); border-color: rgba(234,67,53,0.2); }
    .cb-email::before { background: rgba(234,67,53,0.08); }
    .cb-email:hover { border-color: rgba(234,67,53,0.5); transform: translateX(4px); }
    .cb-email:hover::before { opacity: 1; }
    .cb-icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0; position: relative; z-index: 1;
    }
    .cb-whatsapp .cb-icon { background: rgba(37,211,102,0.15); }
    .cb-call .cb-icon { background: rgba(201,168,76,0.15); }
    .cb-fb .cb-icon { background: rgba(24,119,242,0.15); }
    .cb-email .cb-icon { background: rgba(234,67,53,0.15); }
    .cb-text { position: relative; z-index: 1; }
    .cb-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
    .cb-value { font-size: 15px; font-weight: 700; color: var(--white); margin-top: 2px; }
    .cb-arrow { margin-left: auto; color: var(--muted); font-size: 1.1rem; position: relative; z-index: 1; transition: transform 0.3s; }
    .contact-btn:hover .cb-arrow { transform: translateX(4px); }

    /* FORM */
    .contact-form {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 20px; padding: 44px 40px;
      position: relative; overflow: hidden;
    }
    .contact-form::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700; color: var(--white);
      margin-bottom: 8px;
    }
    .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 30px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: 11px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 13px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 8px; color: var(--white);
      font-family: 'DM Sans', sans-serif; font-size: 14px;
      transition: border-color 0.3s, box-shadow 0.3s;
      outline: none; appearance: none;
    }
    .form-group select option { background: #1a231a; color: var(--white); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(138,144,136,0.6); }
    .form-group textarea { min-height: 110px; resize: vertical; }
    .form-submit {
      width: 100%; padding: 15px; border-radius: 8px; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 0.08em; text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold));
      color: var(--bg);
      box-shadow: 0 6px 28px rgba(201,168,76,0.4);
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.55); }
    .form-submit:active { transform: translateY(0) scale(0.98); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
    .form-submit.loading { pointer-events: none; opacity: 0.7; }
    .form-submit.loading::after {
      content: ''; display: inline-block; width: 16px; height: 16px;
      border: 2px solid transparent; border-top-color: var(--bg); border-radius: 50%;
      animation: spinBtn 0.6s linear infinite; margin-left: 8px; vertical-align: middle;
    }
    @keyframes spinBtn { to { transform: rotate(360deg); } }
    .form-msg {
      margin-top: 16px; padding: 13px 18px;
      border-radius: 8px; font-size: 13px; font-weight: 600;
      display: none;
    }
    .form-msg.success { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); color: #4ade80; display: block; }
    .form-msg.error { background: rgba(240,80,80,0.12); border: 1px solid rgba(240,80,80,0.3); color: #f87171; display: block; }
    .form-note { font-size: 11px; color: var(--muted); margin-top: 12px; text-align: center; }

    /* ────────────── TESTIMONIALS ────────────── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .testimonial-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 32px 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .testimonial-card::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .testimonial-card:hover {
      border-color: rgba(201,168,76,0.35);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.08);
    }
    .testimonial-card:hover::before { transform: scaleX(1); }
    .testimonial-card:hover::after { opacity: 1; }
    .testimonial-quote-icon {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 16px;
      opacity: 0.6;
      position: relative;
      z-index: 1;
    }
    .testimonial-stars {
      font-size: 14px;
      color: var(--gold-lt);
      letter-spacing: 3px;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .testimonial-text {
      font-size: 14.5px;
      color: rgba(245,240,232,0.85);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .testimonial-author {
      position: relative;
      z-index: 1;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }
    .testimonial-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .testimonial-role {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    /* ────────────── FOOTER ────────────── */
    footer {
      background: var(--bg); border-top: 1px solid var(--border);
      padding: 70px 60px 40px; position: relative;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.3fr;
      gap: 40px; margin-bottom: 60px;
    }

    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .footer-logo img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
    .footer-logo span {
      font-family: 'Montserrat', 'Noto Sans Sinhala', sans-serif; font-size: 1.2rem; font-weight: 600;
      letter-spacing: 0.05em; text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }
    .footer-desc { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
    .footer-col h4 {
      font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 13.5px; color: var(--muted); text-decoration: none;
      transition: color 0.2s, text-decoration-color 0.2s; font-weight: 400;
      text-underline-offset: 3px;
    }
    .footer-col ul li a:hover { color: var(--white); text-decoration: underline; text-decoration-color: rgba(201,168,76,0.4); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: center;
      border-top: 1px solid var(--border); padding-top: 30px;
      gap: 8px; text-align: center;
    }
    .footer-copy { font-size: 12.5px; color: var(--muted); }
    .footer-sinhala {
      font-family: 'Noto Sans Sinhala', sans-serif;
      font-size: 12px; color: rgba(201,168,76,0.6);
    }
    .footer-payment-btn {
      padding: 10px 20px; font-size: 13px; margin-bottom: 16px;
      display: inline-flex; width: auto; font-weight: 700;
      border-radius: 8px; text-decoration: none;
    }
    /* ────────────── PAYMENT BADGES & TRUST ────────────── */
    .payment-logos {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 5px;
      align-items: center;
      margin-top: 12px;
      margin-bottom: 10px;
    }
    .pay-badge {
      background: #ffffff;
      border-radius: 5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 26px;
      padding: 3px 6px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      flex-shrink: 0;
      overflow: hidden;
    }
    .pay-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(201,168,76,0.4);
    }
    /* All footer badges share the same size */
    .pay-badge img {
      height: 18px;
      width: auto;
      max-width: 50px;
      object-fit: contain;
      display: block;
    }
    .pay-badge-helapay {
      background: none;
      box-shadow: none;
      padding: 0;
      height: auto;
    }
    .pay-badge-helapay:hover {
      box-shadow: none;
    }
    .pay-badge-helapay img {
      height: 30px;
      width: 30px;
      max-width: none;
      object-fit: contain;
      border-radius: 5px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }
    .secured-by-payhere {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.04em;
      margin-top: 4px;
    }
    .secured-by-payhere svg {
      color: var(--gold);
      flex-shrink: 0;
    }
    .secured-by-payhere strong {
      color: var(--white);
      font-weight: 700;
    }

    /* ────────────── SCROLL BUTTONS ────────────── */
    .scroll-btns {
      position: fixed; right: 24px; bottom: 28px;
      display: flex; flex-direction: column; gap: 10px;
      z-index: 999;
    }
    .scroll-btn {
      width: 46px; height: 46px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: rgba(7,11,7,0.75);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      color: var(--gold);
      font-size: 20px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0; pointer-events: none;
      transform: translateY(12px);
      transition: opacity 0.35s ease, transform 0.35s ease,
                  background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .scroll-btn.show {
      opacity: 1; pointer-events: auto;
      transform: translateY(0);
    }
    .scroll-btn:hover {
      background: rgba(201,168,76,0.15);
      border-color: var(--gold);
      box-shadow: 0 0 18px rgba(201,168,76,0.25);
    }
    .scroll-btn:active {
      transform: scale(0.92);
    }
    .scroll-btn svg {
      width: 20px; height: 20px;
      fill: none; stroke: currentColor;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
    }
    /* ────────────── FLOATING SOCIAL BUTTONS (WhatsApp & Facebook) ────────────── */
    .floating-socials {
      position: fixed;
      left: 24px;
      bottom: 28px;
      z-index: 999;
      display: flex;
      flex-direction: column-reverse;
      gap: 12px;
      pointer-events: none;
    }
    .floating-social-btn {
      position: relative;
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #ffffff;
      pointer-events: auto;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .floating-social-btn:hover {
      transform: translateY(-3px) scale(1.06);
    }
    .floating-social-btn:active {
      transform: scale(0.94);
    }
    .floating-social-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      position: relative;
      z-index: 2;
    }
    .floating-social-icon.icon-wa {
      background: linear-gradient(135deg, #128C7E, #25D366);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    .floating-social-icon.icon-fb {
      background: linear-gradient(135deg, #0e448b, #1877F2);
      box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4), 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    .floating-social-icon svg {
      width: 26px;
      height: 26px;
      fill: #ffffff;
    }
    .floating-social-pulse {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }
    .floating-social-pulse.pulse-wa {
      background: rgba(37, 211, 102, 0.4);
      animation: waPulse 2.4s infinite;
    }
    .floating-social-pulse.pulse-fb {
      background: rgba(24, 119, 242, 0.4);
      animation: fbPulse 2.4s 1.2s infinite;
    }
    @keyframes waPulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      70% { transform: scale(1.45); opacity: 0; }
      100% { transform: scale(1.45); opacity: 0; }
    }
    @keyframes fbPulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      70% { transform: scale(1.45); opacity: 0; }
      100% { transform: scale(1.45); opacity: 0; }
    }
    .floating-social-tooltip {
      position: absolute;
      left: 62px;
      background: rgba(13, 19, 13, 0.94);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 6px 13px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transform: translateX(-8px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .floating-social-tooltip::before {
      content: '';
      position: absolute;
      right: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-right-color: rgba(13, 19, 13, 0.94);
    }
    .floating-social-btn:hover .floating-social-tooltip {
      opacity: 1;
      transform: translateX(0);
    }
    @media (max-width: 768px) {
      .floating-socials {
        left: 16px;
        bottom: 20px;
        gap: 10px;
      }
      .floating-social-icon {
        width: 42px;
        height: 42px;
      }
      .floating-social-icon svg {
        width: 22px;
        height: 22px;
      }
      .floating-social-tooltip {
        display: none;
      }
      .scroll-btns { right: 16px; bottom: 20px; }
      .scroll-btn { width: 40px; height: 40px; font-size: 17px; }
      .scroll-btn svg { width: 17px; height: 17px; }
    }

    /* ────────────── REVEAL ANIMATION ────────────── */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ────────────── HERO ANIMATIONS ────────────── */
    .hero-left > * { opacity: 0; animation: heroFadeUp 0.9s ease forwards; }
    .hero-eyebrow { animation-delay: 0.1s !important; }
    .hero-title   { animation-delay: 0.25s !important; }
    .hero-sub     { animation-delay: 0.4s !important; }
    .hero-actions { animation-delay: 0.55s !important; }
    .hero-right   { opacity: 0; animation: heroFadeIn 1s 0.4s ease forwards; }
    @keyframes heroFadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
    @keyframes heroFadeIn { from { opacity:0; transform:scale(0.93); } to { opacity:1; transform:scale(1); } }

    /* ────────────── TOUCH-FRIENDLY GLOBAL ────────────── */
    @media (pointer: coarse) {
      .nav-links a,
      .contact-btn,
      .btn-gold,
      .btn-outline,
      .form-submit,
      .platform-item { min-height: 44px; }
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 16px; /* prevents iOS zoom on focus */ }
    }

    /* ────────────── RESPONSIVE ────────────── */

    /* ── Tablet landscape / small desktop ── */
    @media (max-width: 1024px) {
      nav, section, footer { padding-left: 32px; padding-right: 32px; }
      nav.scrolled { padding-left: 32px; padding-right: 32px; }
      .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 130px 32px 80px; text-align: center; }
      .hero-sub { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-right { justify-content: center; }
      .hero-eyebrow { justify-content: center; flex-direction: column; text-align: center; gap: 6px; }
      .hero-eyebrow-line { display: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .platforms-inner, .contact-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 36px 30px; }
      .footer-brand { grid-column: 1 / -1; max-width: 540px; }
      .metric-cards { right: -20px; }
      .section-desc { max-width: 100%; }
    }

    /* ── Tablet portrait / large phone ── */
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      nav.scrolled { padding: 10px 20px; }
      section { padding: 70px 20px; }
      footer { padding: 50px 24px 100px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
      .footer-brand { grid-column: auto; max-width: 100%; margin-bottom: 8px; }
      .footer-col:last-child { grid-column: auto; }
      .footer-logo span { font-size: 1.1rem; }
      .footer-desc { max-width: 100%; font-size: 13px; line-height: 1.65; }

      /* Mobile navigation overlay */
      .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; height: 100vh;
        background: rgba(7,11,7,0.97); backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center; gap: 8px;
        z-index: 250;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; text-align: center; }
      .nav-links a {
        display: block; font-size: 18px; padding: 14px 28px; width: 100%;
      }
      .nav-whatsapp { display: inline-flex !important; font-size: 15px !important; padding: 14px 28px !important; width: auto !important; margin-top: 10px; margin-right: 0 !important; justify-content: center; }
      .nav-fb { display: inline-flex !important; font-size: 15px !important; padding: 14px 28px !important; width: auto !important; margin-top: 10px; justify-content: center; }
      .hamburger { display: flex; z-index: 300; padding: 8px; }
      .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .hamburger.active span:nth-child(2) { opacity: 0; }
      .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      /* Hero */
      .hero-inner { padding: 120px 20px 60px; gap: 40px; }
      .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
      .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }
      .hero-actions { gap: 12px; }
      .btn-gold { padding: 14px 28px; font-size: 13px; width: 100%; justify-content: center; }
      .btn-outline { padding: 13px 24px; font-size: 13px; width: 100%; justify-content: center; }
      .logo-frame { width: 260px; height: 260px; margin: 0 auto; }
      .logo-inner { inset: 24px; }
      .hero-logo { width: 160px; height: auto; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 20px; }
      .hero-badge { font-size: 11px; padding: 8px 12px; }
      .hb1 { right: -10px; top: 8%; }
      .hb2 { left: -10px; bottom: 12%; }
      .hero-scroll { bottom: 20px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; }
      .svc-card { padding: 32px 24px; }
      .section-header { margin-bottom: 44px; text-align: center; }
      .section-header .gold-line { margin: 0 auto 20px; }
      .section-desc { margin: 0 auto; text-align: center; }
      .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

      /* Pricing Section Tablet / Mobile */
      .pricing-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
      .pricing-card { padding: 28px 20px; }
      .pricing-name { font-size: 18px; }
      .pricing-sub { min-height: auto; margin-bottom: 8px; }
      .pricing-amount { font-size: 28px; }
      .pricing-features li { font-size: 13.5px; margin-bottom: 10px; }

      /* Payment Box & Display Box Mobile */
      .payment-box { padding: 28px 20px; border-radius: 14px; }
      .pay-amount-display-box { padding: 14px 16px; margin-bottom: 18px; }
      .pay-amount-value { font-size: 24px; }
      .pay-amount-label { font-size: 11px; }

      /* Testimonials */
      .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
      .testimonial-card { padding: 32px 24px 28px; border-radius: 16px; }
      .testimonial-text { font-size: 14px; }

      /* Platforms */
      .platform-item { padding: 16px 20px; gap: 14px; }
      .platform-badge { display: none; }
      .metric-cards { display: flex; position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 20px; gap: 10px; pointer-events: auto; }
      .metric { position: static; padding: 12px 16px; text-align: center; animation: none; transform: none; }
      .why-visual { flex-direction: column; }
      .why-logo-wrap { width: 220px; height: 220px; margin: 0 auto; }

      /* Contact */
      .contact-form { padding: 28px 20px; border-radius: 16px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .form-title { font-size: 1.3rem; }
      .contact-btn { padding: 14px 18px; }
      .cb-icon { width: 42px; height: 42px; }
      .cb-value { font-size: 14px; }
    }

    /* ── Phone ── */
    @media (max-width: 480px) {
      nav { padding: 12px 16px; }
      nav.scrolled { padding: 10px 16px; }
      section { padding: 56px 16px; }
      footer { padding: 44px 16px 24px; }
      .nav-logo { height: 42px; width: 42px; border-radius: 10px; }
      .nav-wordmark { font-size: 1.05rem; }

      /* Hero */
      .hero-inner { padding: 110px 16px 48px; gap: 32px; }
      .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); margin-bottom: 16px; }
      .hero-sub { font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }
      .hero-eyebrow span { font-size: 10px; }
      .hero-eyebrow-line { width: 28px; }
      .hero-actions { flex-direction: column; width: 100%; }
      .btn-gold, .btn-outline { width: 100%; justify-content: center; }
      .logo-frame { width: 220px; height: 220px; margin: 0 auto; }
      .logo-inner { inset: 20px; }
      .hero-logo { width: 135px; height: auto; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 16px; }
      .hero-badge { font-size: 10px; padding: 6px 10px; }
      .hb1 { right: -5px; top: 4%; }
      .hb2 { left: -5px; bottom: 8%; }
      .hero-scroll { display: none; }

      /* Glows — shrink for perf */
      .hg1 { width: 350px; height: 350px; }
      .hg2 { width: 300px; height: 300px; }
      .hg3 { width: 250px; height: 250px; }

      /* Services */
      .svc-card { padding: 28px 20px; }
      .svc-num { font-size: 2.2rem; margin-bottom: 14px; }
      .svc-name { font-size: 1.05rem; }
      .svc-text { font-size: 13px; }
      .gold-line { width: 44px; }

      /* Pricing Small Phone */
      .pricing-card { padding: 24px 16px; border-radius: 14px; }
      .pricing-badge-popular { top: -12px; right: 16px; font-size: 10px; padding: 3px 10px; }
      .pricing-amount { font-size: 26px; }
      .pricing-features { margin-bottom: 20px; }
      .pricing-features li { font-size: 13px; margin-bottom: 8px; }
      .pricing-btn { padding: 11px 16px; font-size: 13.5px; }

      /* Payment Box Small Phone */
      .payment-box { padding: 22px 14px; border-radius: 12px; }
      .pay-amount-display-box { padding: 12px 14px; }
      .pay-amount-value { font-size: 22px; }
      .pay-form-group select { font-size: 13px; padding: 10px 10px; }

      /* Platforms */
      .platform-list { gap: 10px; margin-top: 28px; }
      .platform-item { padding: 14px 16px; border-radius: 10px; gap: 12px; }
      .platform-icon { font-size: 1.5rem; }
      .platform-name { font-size: 14px; }
      .platform-desc { font-size: 12px; }
      .why-logo-wrap { width: 180px; height: 180px; border-radius: 18px; }
      .metric { padding: 10px 14px; border-radius: 10px; }
      .metric-val { font-size: 1.3rem; }
      .metric-lbl { font-size: 10px; }

      /* Contact */
      .contact-tagline { font-size: 1rem; margin: 18px 0 28px; }
      .contact-methods { gap: 10px; }
      .contact-btn { padding: 12px 14px; border-radius: 10px; }
      .cb-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 1.2rem; }
      .cb-label { font-size: 10px; }
      .cb-value { font-size: 13px; }
      .contact-form { padding: 24px 16px; border-radius: 14px; }
      .form-title { font-size: 1.2rem; }
      .form-sub { font-size: 12px; margin-bottom: 24px; }
      .form-group { margin-bottom: 14px; }
      .form-group label { font-size: 10px; margin-bottom: 6px; }
      .form-group input,
      .form-group select,
      .form-group textarea { padding: 12px 14px; font-size: 14px; border-radius: 6px; }
      .form-submit { padding: 14px; font-size: 13px; }
      .form-note { font-size: 10px; }
      .form-msg { font-size: 12px; padding: 10px 14px; }

      /* Footer */
      footer { padding-bottom: 80px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
      .footer-brand { grid-column: auto; margin-bottom: 4px; }
      .footer-col { grid-column: auto; }
      .footer-col:last-child { grid-column: auto; }
      .footer-logo img { width: 38px; height: 38px; }
      .footer-logo span { font-size: 1rem; }
      .footer-desc { font-size: 12.5px; }
      .footer-col h4 { font-size: 10px; margin-bottom: 14px; }
      .footer-col ul { gap: 8px; }
      .footer-col ul li a { font-size: 12.5px; }
      .payment-logos { justify-content: flex-start; }
      .footer-copy { font-size: 11px; }
      .footer-sinhala { font-size: 11px; }
      .footer-bottom { padding-top: 20px; gap: 6px; }

      /* Label */
      .label { font-size: 10px; letter-spacing: 0.16em; }

      /* Reduce particles count visually */
      .particle:nth-child(n+16) { display: none; }
    }

    /* ── Small phone ── */
    @media (max-width: 360px) {
      section { padding: 48px 14px; }
      footer { padding: 36px 14px 70px; }
      nav { padding: 10px 14px; }
      .hero-inner { padding: 100px 14px 40px; }
      .hero-title { font-size: 1.55rem; }
      .hero-sub { font-size: 0.85rem; }
      .logo-frame { width: 190px; height: 190px; }
      .hero-logo { width: 120px; }
      .section-title { font-size: 1.4rem; }
      .svc-card { padding: 24px 16px; }
      .pricing-card { padding: 20px 14px; }
      .pricing-amount { font-size: 24px; }
      .pay-amount-value { font-size: 20px; }
      .contact-form { padding: 20px 14px; }
      .form-group input,
      .form-group select,
      .form-group textarea { padding: 11px 12px; }
    }

    /* ── Safe area for notched devices ── */
    @supports (padding: env(safe-area-inset-bottom)) {
      footer { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
      nav { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
    }

    /* ── Reduce motion preference ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .particles { display: none; }
    }

    /* ── Landscape phone ── */
    @media (max-height: 500px) and (orientation: landscape) {
      #hero { min-height: auto; padding-top: 80px; padding-bottom: 40px; }
      .hero-inner { padding-top: 80px; gap: 24px; }
      .hero-right { display: none; }
      .hero-scroll { display: none; }
    }

    /* ── PERFORMANCE: Skip rendering off-screen sections until needed ── */
    #services, #pricing, #platforms, #testimonials, #contact {
      content-visibility: auto;
      contain-intrinsic-size: auto 600px;
    }

    /* ────────────── PAYMENT FORM ────────────── */
    .payment-box {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 35px 30px;
      width: 100%;
      max-width: 540px;
      box-sizing: border-box;
      margin: 0 auto;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }
    .payment-box h3 {
      color: var(--white);
      margin: 0;
      font-size: 1.35rem;
    }
    .pay-form-group {
      margin-bottom: 16px;
    }
    .pay-form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 6px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .pay-form-group input,
    .pay-form-group select {
      width: 100%;
      padding: 12px 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 6px;
      color: var(--white);
      font-family: inherit;
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .pay-form-group input:focus,
    .pay-form-group select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }
    .pay-form-group input::placeholder {
      color: rgba(138,144,136,0.6);
    }
    .pay-form-group select option {
      background: var(--bg2);
      color: var(--white);
    }
    .pay-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 16px;
    }
    .pay-submit-btn {
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
      border: none;
      border-radius: 6px;
      color: var(--bg);
      font-family: inherit;
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 6px 25px rgba(201,168,76,0.35);
      transition: all 0.3s;
    }
    .pay-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(201,168,76,0.55);
    }
    .pay-submit-btn:active {
      transform: translateY(0) scale(0.98);
    }
    .pay-channels {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(201,168,76,0.15);
      text-align: center;
    }
    .pay-channels-title {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 12px;
      letter-spacing: 0.04em;
      font-weight: 600;
    }
    .pay-channels-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .pay-channel-badge {
      background: #ffffff;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 6px 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      overflow: hidden;
      flex-shrink: 0;
    }
    .pay-channel-badge:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(201,168,76,0.4);
    }
    /* All channel badges share the same image sizing */
    .pay-channel-badge img {
      height: 28px;
      width: auto;
      max-width: 80px;
      object-fit: contain;
      display: block;
    }
    .pay-channel-badge-helapay {
      background: none;
      box-shadow: none;
      padding: 0;
      height: auto;
    }
    .pay-channel-badge-helapay:hover {
      box-shadow: none;
    }
    .pay-channel-badge-helapay img {
      height: 50px;
      width: 50px;
      max-width: none;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
    .pay-channels .secured-by-payhere {
      justify-content: center;
      margin-top: 16px;
      display: flex;
      font-size: 13px;
    }
    @media (max-width: 480px) {
      .pay-form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .pay-form-row .pay-form-group {
        margin-bottom: 16px;
      }
      .payment-box {
        padding: 24px 18px;
      }
    }

    /* ────────────── PRICING SECTION ────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
    .pricing-card {
      position: relative;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pricing-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
      box-shadow: 0 12px 35px rgba(201, 168, 76, 0.15);
    }
    .pricing-card.featured {
      background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--bg2) 100%);
      border: 2px solid var(--gold);
      box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
    }
    .pricing-badge-popular {
      position: absolute;
      top: -14px;
      right: 24px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--bg);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 14px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
    }
    .pricing-header {
      margin-bottom: 16px;
    }
    .pricing-name {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .pricing-sub {
      font-size: 13px;
      color: var(--muted);
      min-height: 38px;
    }
    .pricing-price-box {
      margin: 16px 0;
      padding: 14px 0;
      border-top: 1px dashed rgba(201, 168, 76, 0.2);
      border-bottom: 1px dashed rgba(201, 168, 76, 0.2);
    }
    .pricing-currency {
      font-size: 15px;
      font-weight: 700;
      color: var(--gold-lt);
    }
    .pricing-amount {
      font-size: 32px;
      font-weight: 900;
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      margin: 0 4px;
    }
    .pricing-period {
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
    }
    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
      flex-grow: 1;
    }
    .pricing-features li {
      font-size: 14px;
      color: rgba(245, 240, 232, 0.85);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-features li::before {
      content: "✓";
      color: var(--gold);
      font-weight: bold;
    }
    .pricing-btn {
      width: 100%;
      text-align: center;
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.25s ease;
      display: inline-block;
      box-sizing: border-box;
    }
    .pricing-btn-gold {
      background: var(--gold);
      color: var(--bg);
      border: 1px solid var(--gold);
    }
    .pricing-btn-gold:hover {
      background: var(--gold-lt);
      box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
      transform: translateY(-2px);
    }
    .pricing-btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1px solid var(--gold);
    }
    .pricing-btn-outline:hover {
      background: rgba(201, 168, 76, 0.1);
      color: var(--gold-lt);
      transform: translateY(-2px);
    }

    /* ────────────── FIXED PAYMENT AMOUNT BOX ────────────── */
    .pay-amount-display-box {
      background: rgba(201, 168, 76, 0.08);
      border: 1.5px solid var(--gold);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      margin-bottom: 20px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    .pay-amount-label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }
    .pay-amount-value {
      display: block;
      font-size: 28px;
      font-weight: 900;
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
    }

    /* ────────────── COOKIE CONSENT ────────────── */
    .cookie-consent {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--bg2);
      padding: 20px;
      box-sizing: border-box;
      z-index: 9999;
      border-top: 1px solid var(--gold);
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .cookie-consent.show {
      display: flex;
    }
    .cookie-consent p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      text-align: center;
      line-height: 1.6;
    }
    .cookie-consent a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .cookie-consent button {
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 10px 28px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .cookie-consent button:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(201,168,76,0.4);
    }
    .cookie-consent button:active {
      transform: scale(0.97);
    }
    @media (max-width: 480px) {
      .cookie-consent {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
      }
      .cookie-consent p {
        font-size: 13px;
      }
      .cookie-consent button {
        width: 100%;
      }
    }

    /* ────────────── PROMO BANNER POPUP ────────────── */
    .banner-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
      padding: 20px;
    }
    .banner-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .banner-popup {
      position: relative;
      max-width: 560px;
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(201, 168, 76, 0.15),
        0 0 0 1px rgba(201, 168, 76, 0.2);
      transform: scale(0.92) translateY(20px);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      animation: bannerGlow 3s ease-in-out infinite;
    }
    .banner-overlay.active .banner-popup {
      transform: scale(1) translateY(0);
    }
    @keyframes bannerGlow {
      0%, 100% { box-shadow: 0 30px 100px rgba(0,0,0,0.7), 0 0 60px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.2); }
      50% { box-shadow: 0 30px 100px rgba(0,0,0,0.7), 0 0 80px rgba(201,168,76,0.25), 0 0 0 1px rgba(201,168,76,0.35); }
    }
    .banner-popup img {
      display: block;
      width: 100%;
      height: auto;
    }
    .banner-close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      z-index: 10;
      line-height: 1;
      padding: 0;
    }
    .banner-close-btn:hover {
      background: rgba(201, 168, 76, 0.8);
      border-color: var(--gold);
      color: var(--bg);
      transform: rotate(90deg) scale(1.1);
      box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
    }
    .banner-close-btn:active {
      transform: rotate(90deg) scale(0.95);
    }
    @media (max-width: 480px) {
      .banner-popup {
        max-width: 92vw;
        border-radius: 14px;
      }
      .banner-close-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
        top: 8px;
        right: 8px;
      }
    }
