:root {
      /* TEXT */
      --ink: #0f1e3d;
      --gray: #3d5a80;
      /* BACKGROUNDS */
      --paper: #e8f2ff;
      --cream: #d0e8ff;
      --dark-bg: #0a1628;
      /* ACCENT */
      --gold: #1d6fd8;
      --gold-light: #56a0f5;
      --red: #0ea5e9;
      --border: rgba(29,111,216,0.22);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* NOISE TEXTURE */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1000; opacity: 0.5;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 5vw;
      background: rgba(232,242,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 32px rgba(15,30,61,.12); }

    .nav-logo {
      display: flex; align-items: center; gap: .7rem;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 44px; height: 44px;
      aspect-ratio: 1/1;
      background: transparent;
      border-radius: 50%;
      overflow: hidden;
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(15,30,61,.15);
    }
    .nav-logo-img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 50%;
    }
    
    .nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
    .nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--ink); line-height: 1.1; }
    .nav-logo-sub { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--gray); font-size: .88rem; font-weight: 500; letter-spacing: .03em; transition: color .2s; }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: #1d6fd8; color: white;
      border: none; padding: .55rem 1.3rem; border-radius: 4px;
      font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600;
      letter-spacing: .04em; cursor: pointer; text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: #0f56c0; color: white; transform: translateY(-1px); }
    .nav-auth { display: flex; align-items: center; gap: 1.1rem; }
    .nav-link-plain { text-decoration: none; color: var(--gray); font-size: .88rem; font-weight: 600; letter-spacing: .03em; transition: color .2s; }
    .nav-link-plain:hover { color: var(--gold); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 7rem 5vw 5rem;
      position: relative; overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(29,111,216,.16) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(14,165,233,.10) 0%, transparent 60%);
    }

    /* Decorative lines */
    .hero-lines {
      position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
      z-index: 0; overflow: hidden;
    }
    .hero-lines::before {
      content: '';
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        rgba(29,111,216,.14) 39px,
        rgba(29,111,216,.14) 40px
      );
    }

    .hero-content { position: relative; z-index: 2; max-width: 640px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1px solid var(--border); border-radius: 100px;
      padding: .35rem .9rem; font-size: .78rem; letter-spacing: .1em;
      text-transform: uppercase; color: var(--gold); font-weight: 600;
      margin-bottom: 1.8rem;
      background: rgba(29,111,216,.10);
      animation: fadeUp .8s ease both;
    }
    .hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.08;
      font-weight: 900;
      color: var(--ink);
      animation: fadeUp .8s .1s ease both;
    }
    .hero-title em { color: var(--gold); font-style: italic; }
    .hero-title .line-red { color: var(--red); }

    .hero-desc {
      margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.75;
      color: var(--gray); max-width: 520px;
      animation: fadeUp .8s .2s ease both;
    }

    .hero-actions {
      margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp .8s .3s ease both;
    }
    .btn-primary {
      background: #1d6fd8; color: white;
      padding: .85rem 2rem; border-radius: 4px; text-decoration: none;
      font-weight: 600; font-size: .95rem; letter-spacing: .04em;
      transition: all .2s; border: 2px solid #1d6fd8;
    }
    .btn-primary:hover { background: var(--gold); color: white; border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,.35); }
    .btn-outline {
      border: 2px solid #1d6fd8; color: #1d6fd8;
      padding: .85rem 2rem; border-radius: 4px; text-decoration: none;
      font-weight: 600; font-size: .95rem; letter-spacing: .04em;
      transition: all .2s;
    }
    .btn-outline:hover { background: #1d6fd8; color: white; }

    .hero-stats {
      margin-top: 4rem; display: flex; gap: 3rem; flex-wrap: wrap;
      animation: fadeUp .8s .4s ease both;
    }
    .stat-item { }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 900; color: var(--ink); line-height: 1;
    }
    .stat-num span { color: var(--gold); }
    .stat-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; margin-top: .2rem; }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 5vw; }
    .section-tag {
      font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); font-weight: 600; margin-bottom: 1rem;
      display: flex; align-items: center; gap: .6rem;
    }
    .section-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 900; line-height: 1.15; color: var(--ink);
    }
    .section-title em { color: var(--gold); font-style: italic; }
    .section-body { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-top: 1rem; }
    .divider { width: 100%; height: 1px; background: rgba(29,111,216,.18); margin: 0; }

    /* ── ABOUT ── */
    #about { background: #d0e8ff; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-visual {
      position: relative;
    }
    .about-img-box {
      background: linear-gradient(135deg, #0a1628 0%, #0e306e 100%);
      border-radius: 8px;
      aspect-ratio: 1/1;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; position: relative;
    }
    .about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-img-box svg { width: 55%; opacity: .15; }
    .about-badge-float {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: #1d6fd8; color: white;
      width: 110px; height: 110px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-weight: 900;
      font-size: 1.6rem; line-height: 1;
      box-shadow: 0 8px 32px rgba(59,130,246,.4);
    }
    .about-badge-float small { font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; font-weight: 600; }

    .about-values { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .value-chip {
      border: 1px solid var(--border); border-radius: 6px; padding: 1rem 1.2rem;
      background: #f5f9ff;
    }
    .value-chip-icon { font-size: 1.4rem; margin-bottom: .4rem; }
    .value-chip-label { font-size: .85rem; font-weight: 600; color: var(--ink); }
    .value-chip-desc { font-size: .78rem; color: var(--gray); margin-top: .15rem; }

    /* ── SERVICES ── */
    #services { background: #d0e8ff; }
    .services-header { max-width: 640px; margin-bottom: 3rem; }

    /* ── SERVICE PRODUCT CARD GRID ── */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }
    .svc-card {
      border-radius: 12px; overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 16px rgba(15,30,61,.08);
      border: 1px solid var(--border);
      display: flex; flex-direction: column;
      transition: transform .25s, box-shadow .25s;
    }
    .svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(29,111,216,.15); }

    /* Image area — square 1:1, semua kartu */
    .svc-img-wrap {
      width: 100%; aspect-ratio: 1/1;
      overflow: hidden; position: relative;
      background: #d0e8ff;
    }
    .svc-img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      transition: transform .4s ease;
      display: block;
    }
    .svc-card:hover .svc-img { transform: scale(1.07); }

    /* Mock visual areas (non-photo cards) */
    .svc-mock {
      display: flex; align-items: center; justify-content: center;
    }
    .svc-mock-blue  { background: linear-gradient(135deg, #1a3a6e 0%, #1d6fd8 100%); }
    .svc-mock-navy  { background: linear-gradient(135deg, #0f1e3d 0%, #1e3a5f 100%); }
    .svc-mock-teal  { background: linear-gradient(135deg, #065f46 0%, #059669 100%); }
    .svc-mock-red   { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%); }
    .svc-mock-purple{ background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
    .svc-mock-inner { width: 80%; }

    /* mock sub-elements */
    .mock-card {
      background: #fff; border-radius: 8px; padding: 14px 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .mock-line { height: 9px; border-radius: 4px; background: #1d6fd8; margin-bottom: 6px; }
    .mock-line.bold { background: #0f1e3d; height: 11px; width: 80%; }
    .mock-line.thin { background: #d0e8ff; width: 60%; }
    .mock-rect { border-radius: 4px; }
    .mock-paper {
      background: #fff; border-radius: 8px; padding: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .mock-box { width: 80px; height: 80px; position: relative; margin: 0 auto; }
    .mock-box-top {
      width: 80px; height: 24px; background: rgba(255,255,255,.3);
      border-radius: 4px 4px 0 0; border: 1px solid rgba(255,255,255,.5);
    }
    .mock-box-body {
      width: 80px; height: 56px; background: rgba(255,255,255,.15);
      border-radius: 0 0 4px 4px; border: 1px solid rgba(255,255,255,.4);
      border-top: none; padding: 8px;
      display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
    }
    .mock-circle { border-radius: 50%; margin: 0 auto; }
    .mock-design { text-align: center; }

    .mock-cal {
      background: #fff; border-radius: 8px; padding: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .mock-cal-header {
      background: #dc2626; color: #fff; text-align: center;
      font-size: 10px; font-weight: 700; border-radius: 4px 4px 0 0;
      padding: 4px; margin: -10px -10px 6px;
    }
    .mock-cal-grid {
      display: grid; grid-template-columns: repeat(7, 1fr);
      gap: 2px; text-align: center; font-size: 8px; color: #374151;
    }
    .mock-cal-grid span { padding: 2px 0; }
    .mock-cal-today {
      background: #dc2626; color: #fff; border-radius: 50%;
      font-weight: 700;
    }

    /* Label hitam di bawah foto */
    .svc-label {
      background: #0f1e3d; color: #fff;
      text-align: center; font-family: 'DM Sans', sans-serif;
      font-size: .8rem; font-weight: 700;
      padding: .55rem .75rem; letter-spacing: .02em;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    /* Tombol WA hijau */
    .svc-btn {
      display: flex; align-items: center; justify-content: center; gap: .4rem;
      background: var(--gold); color: #fff;
      border: 2px solid var(--gold); border-radius: 100px;
      margin: .6rem .75rem .75rem; padding: .48rem .7rem;
      font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700;
      letter-spacing: .03em; text-decoration: none;
      transition: background .2s, color .2s, transform .15s;
    }
    .svc-btn:hover { background: #0f56c0; border-color: #0f56c0; color: #fff; transform: translateY(-1px); }
    .svc-btn svg { flex-shrink: 0; width: 14px; height: 14px; }

    /* ── PROCESS ── */
    #process { background: #0a1628; color: #e0ecff; }
    #process .section-tag { color: var(--gold-light); }
    #process .section-tag::before { background: var(--gold-light); }
    #process .section-title { color: var(--cream); }
    #process .section-body { color: rgba(232,240,251,.6); }
    .process-steps { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1px; background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.15); border-radius: 8px; overflow: hidden; }
    .process-step { padding: 2rem 1.8rem; background: #0a1628; transition: background .25s; }
    .process-step:hover { background: #0f2848; }
    .step-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(96,165,250,.25); line-height: 1; margin-bottom: .8rem; }
    .step-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin-bottom: .5rem; }
    .step-desc { font-size: .83rem; color: rgba(232,240,251,.55); line-height: 1.6; }

    /* ── GALLERY / PORTFOLIO ── */
    #portfolio { background: #d0e8ff; }
    .portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
    .portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
    .p-card { border-radius: 8px; overflow: hidden; background: var(--ink); position: relative; display: flex; align-items: center; justify-content: center; }
    .p-card-1 { grid-column: span 4; aspect-ratio: 1/1; }
    .p-card-2 { grid-column: span 4; aspect-ratio: 1/1; }
    .p-card-3 { grid-column: span 4; aspect-ratio: 1/1; }
    .p-card-4 { grid-column: span 4; aspect-ratio: 1/1; }
    .p-card-5 { grid-column: span 4; aspect-ratio: 1/1; }
    .p-card-6 { grid-column: span 4; aspect-ratio: 1/1; }
    /* ── Portfolio card: image variant ── */
    .p-card-img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
      transition: transform .45s ease;
    }
    .p-card:hover .p-card-img { transform: scale(1.06); }

    .p-card-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: .9rem 1.2rem;
      background: linear-gradient(to top, rgba(10,22,40,.88) 0%, rgba(10,22,40,.0) 100%);
      display: flex; flex-direction: column; gap: .25rem;
      transform: translateY(4px); transition: transform .3s;
    }
    .p-card:hover .p-card-overlay { transform: translateY(0); }
    .p-card-label {
      font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
      color: #fff; line-height: 1.2;
    }
    .p-card-overlay span {
      font-family: 'DM Sans', sans-serif; font-size: .7rem;
      color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; font-weight: 500;
    }

    /* ── Portfolio card: icon/placeholder variant (tetap pakai) ── */
    .p-card-inner {
      width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: .5rem; padding: 1.5rem;
      background: linear-gradient(135deg, #0a1628 0%, #0e306e 100%);
      font-family: 'Playfair Display', serif; color: var(--gold);
      font-size: 1rem; font-weight: 700; text-align: center;
      transition: transform .3s;
    }
    .p-card:hover .p-card-inner { transform: scale(1.03); }
    .p-card-inner span { font-family: 'DM Sans', sans-serif; font-size: .72rem; color: rgba(86,160,245,.6); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
    .p-card-icon { font-size: 2.5rem; margin-bottom: .3rem; opacity: .7; }

    /* ── TESTIMONIAL ── */
    #testimonials { background: #d0e8ff; }
    .testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .testi-card {
      background: #d0e8ff; border: 1px solid var(--border); border-radius: 8px; padding: 2rem;
      position: relative;
    }
    .testi-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); opacity: .15; position: absolute; top: .5rem; left: 1.2rem; line-height: 1; }
    .testi-stars { color: var(--gold); font-size: .95rem; margin-bottom: 1rem; letter-spacing: .1em; }
    .testi-text { font-size: .92rem; color: var(--gray); line-height: 1.75; font-style: italic; }
    .testi-author { margin-top: 1.5rem; display: flex; align-items: center; gap: .8rem; }
    .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: #1d6fd8; display: grid; place-items: center; color: white; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
    .testi-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
    .testi-role { font-size: .75rem; color: var(--gray); }

    /* ── CONTACT ── */
    #contact { background: #0a1628; }
    #contact .section-tag { color: var(--gold-light); }
    #contact .section-tag::before { background: var(--gold-light); }
    #contact .section-title { color: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; align-items: start; }
    .contact-info { }
    .contact-item { display: flex; gap: 1.2rem; margin-bottom: 2rem; align-items: flex-start; }
    .contact-icon { width: 44px; height: 44px; border-radius: 6px; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
    .contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(232,240,251,.4); font-weight: 600; margin-bottom: .3rem; }
    .contact-val { font-size: .97rem; color: var(--cream); font-weight: 500; }
    .contact-form-area { }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(232,240,251,.5); font-weight: 600; margin-bottom: .5rem; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; background: rgba(232,240,251,.06); border: 1px solid rgba(59,130,246,.2);
      border-radius: 4px; padding: .8rem 1rem; color: var(--cream); font-family: 'DM Sans', sans-serif;
      font-size: .92rem; outline: none; transition: border-color .2s;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
    .form-group textarea { height: 120px; resize: vertical; }
    .form-group select option { background: var(--ink); }
    .btn-send {
      width: 100%; background: var(--gold); color: white; border: none;
      padding: .95rem; border-radius: 4px; font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 700; letter-spacing: .04em; cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-send:hover { background: var(--gold-light); color: var(--ink); transform: translateY(-2px); }

    /* ── MAP PLACEHOLDER ── */
    .map-box {
      background: rgba(232,240,251,.05); border: 1px solid rgba(59,130,246,.15);
      border-radius: 8px; padding: 2rem; margin-top: 2.5rem; text-align: center;
    }
    .map-box p { color: rgba(247,242,232,.4); font-size: .85rem; margin-top: .5rem; }

    /* ── FOOTER ── */
    footer { background: #060f1f; padding: 3rem 5vw 2rem; }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--cream); }
    .footer-logo em { color: var(--gold); font-style: italic; }
    .footer-copy { font-size: .8rem; color: rgba(232,240,251,.35); text-align: center; }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: .82rem; color: rgba(232,240,251,.4); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-divider { height: 1px; background: rgba(232,240,251,.07); margin-bottom: 2rem; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE ── */

    /* ========================================
       RESPONSIVE — LARGE DESKTOP (≥1400px)
    ======================================== */
    @media (min-width: 1400px) {
      nav { padding: 1.1rem 8vw; }
      section { padding: 7rem 8vw; }
      #hero { padding: 8rem 8vw 6rem; }
      .hero-title { font-size: 5.5rem; }
      .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
    }

    /* ========================================
       RESPONSIVE — TABLET LANDSCAPE (901–1199px)
    ======================================== */
    @media (max-width: 1199px) {
      .about-grid { gap: 3rem; }
      .contact-grid { gap: 3rem; }
      .hero-title { font-size: clamp(2.5rem, 5vw, 4rem); }
      .about-badge-float { width: 90px; height: 90px; font-size: 1.3rem; right: -1rem; bottom: -1rem; }
      .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
      .portfolio-grid {
        grid-template-columns: repeat(6, 1fr);
      }
      .p-card-1 { grid-column: span 4; aspect-ratio: 1/1; }
      .p-card-2 { grid-column: span 4; aspect-ratio: 1/1; }
      .p-card-3 { grid-column: span 4; aspect-ratio: 1/1; }
      .p-card-4 { grid-column: span 6; aspect-ratio: 1/1; }
      .p-card-5 { grid-column: span 6; aspect-ratio: 1/1; }
    }

    /* ========================================
       RESPONSIVE — TABLET PORTRAIT (601–900px)
    ======================================== */
/* ========================================
       RESPONSIVE — LARGE DESKTOP (≥1400px)
    ======================================== */
    @media (min-width: 1400px) {
      nav { padding: 1.1rem 8vw; }
      section { padding: 7rem 8vw; }
      #hero { padding: 8rem 8vw 6rem; }
      .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
    }

    /* ========================================
       RESPONSIVE — TABLET LANDSCAPE (901–1199px)
    ======================================== */
    @media (max-width: 1199px) {
      .about-grid { gap: 3rem; }
      .contact-grid { gap: 3rem; }
      .about-badge-float { width: 90px; height: 90px; font-size: 1.3rem; right: -1rem; bottom: -1rem; }
      .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
      .portfolio-grid { grid-template-columns: repeat(6, 1fr); }
      .p-card-1 { grid-column: span 4; aspect-ratio: 1/1; }
      .p-card-2 { grid-column: span 4; aspect-ratio: 1/1; }
      .p-card-3 { grid-column: span 4; aspect-ratio: 1/1; }
      .p-card-4 { grid-column: span 6; aspect-ratio: 1/1; }
      .p-card-5 { grid-column: span 6; aspect-ratio: 1/1; }
    }

    /* ========================================
       RESPONSIVE — TABLET PORTRAIT (601–900px)
    ======================================== */
    @media (max-width: 900px) {
      /* NAV */
      .nav-links, .nav-cta, .nav-auth { display: none; }
      .hamburger { display: flex; }
      .mobile-menu {
        display: none; flex-direction: column; gap: 1rem;
        position: fixed; top: 68px; left: 0; right: 0;
        background: #e8f2ff; padding: 2rem 5vw;
        border-bottom: 1px solid var(--border);
        z-index: 850;
        box-shadow: 0 8px 24px rgba(15,30,61,.12);
      }
      .mobile-menu.open { display: flex; }
      .mobile-menu a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--border); }
      .mobile-menu a.cta { background: #1d6fd8; color: white; text-align: center; padding: .8rem; border-radius: 4px; border: none; margin-top: .5rem; }

      /* SECTIONS */
      section { padding: 4rem 5vw; }

      /* HERO */
      #hero { padding: 6rem 5vw 4rem; }
      .hero-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }
      .hero-desc { font-size: .95rem; }
      .hero-stats { gap: 2rem; }
      .stat-num { font-size: 2rem; }
      .hero-lines { width: 30%; }

      /* ABOUT */
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-img-box { aspect-ratio: 1/1; }
      .about-badge-float { width: 85px; height: 85px; font-size: 1.2rem; right: 1rem; bottom: -1rem; }
      .about-values { grid-template-columns: 1fr 1fr; }

      /* SERVICES */
      .svc-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
      .svc-img-wrap { aspect-ratio: 1/1; }

      /* PROCESS */
      .process-steps { grid-template-columns: repeat(2, 1fr); }

      /* PORTFOLIO */
      .portfolio-grid { display: flex; flex-direction: column; gap: .8rem; }
      .p-card { aspect-ratio: 1/1 !important; width: 100%; }
      .portfolio-header { flex-direction: column; align-items: flex-start; }

      /* TESTIMONIALS */
      .testi-grid { grid-template-columns: 1fr; }

      /* CONTACT */
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ========================================
       RESPONSIVE — MOBILE (≤600px)
    ======================================== */
    @media (max-width: 600px) {
      /* NAV */
      nav { padding: .9rem 4vw; }
      .nav-logo-text { font-size: 1rem; }
      .nav-logo-sub { display: none; }

      /* SECTIONS */
      section { padding: 3rem 4vw; }

      /* HERO */
      #hero { padding: 5.5rem 4vw 3.5rem; min-height: auto; }
      .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
      .hero-badge { font-size: .7rem; padding: .3rem .7rem; }
      .hero-desc { font-size: .9rem; }
      .hero-actions { flex-direction: column; gap: .8rem; }
      .hero-actions a { text-align: center; padding: .8rem 1.5rem; font-size: .9rem; }
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
      .stat-num { font-size: 1.8rem; }
      .stat-label { font-size: .72rem; }
      .hero-lines { display: none; }

      /* SECTION TITLES */
      .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }

      /* ABOUT */
      .about-img-box { aspect-ratio: 1/1; }
      .about-badge-float { width: 72px; height: 72px; font-size: 1rem; right: .5rem; bottom: -.8rem; }
      .about-badge-float small { font-size: .55rem; }
      .about-values { grid-template-columns: 1fr 1fr; gap: .7rem; }
      .value-chip { padding: .8rem; }
      .value-chip-icon { font-size: 1.1rem; }
      .value-chip-label { font-size: .78rem; }
      .value-chip-desc { font-size: .7rem; }

      /* SERVICES */
      .svc-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
      .svc-img-wrap { aspect-ratio: 1/1; }


      /* PROCESS */
      .process-steps { grid-template-columns: 1fr; border-radius: 6px; }
      .process-step { padding: 1.5rem; }
      .step-num { font-size: 2.2rem; }

      /* PORTFOLIO */
      .p-card { aspect-ratio: 1/1 !important; }
      .p-card-icon { font-size: 1.8rem; }

      /* TESTIMONIALS */
      .testi-card { padding: 1.5rem; }

      /* CONTACT */
      .contact-item { gap: .9rem; }
      .contact-icon { width: 38px; height: 38px; font-size: 1rem; }
      .contact-val { font-size: .9rem; }
      .map-box { padding: 1.2rem; }

      /* FOOTER */
      .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
      .footer-links { gap: 1rem; }
    }

    /* ========================================
       RESPONSIVE — SMALL MOBILE (≤380px)
    ======================================== */
    @media (max-width: 380px) {
      .hero-title { font-size: 1.75rem; }
      .hero-stats { gap: 1rem; }
      .stat-num { font-size: 1.5rem; }
      .about-values { grid-template-columns: 1fr; }
      .hero-actions a { font-size: .85rem; padding: .7rem 1rem; }
      .section-title { font-size: 1.5rem; }
      .svc-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
    }

  /* =========================
   FORM TESTIMONI
  ========================= */

#testimoni-form {
  padding: 4rem 5vw;
  background: #d0e8ff;
}

#testimoni-form h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #0f1e3d;
}

#testimoni-form form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#testimoni-form input,
#testimoni-form textarea,
#testimoni-form select {
  padding: 1rem;
  border: 1px solid rgba(29,111,216,.2);
  border-radius: 6px;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
}

#testimoni-form textarea {
  min-height: 120px;
  resize: vertical;
}

#testimoni-form button {
  background: #1d6fd8;
  color: #d0e8ff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

#testimoni-form button:hover {
  background: #0f56c0;
}

#warningTesti{
  background: #fff3cd;
  color: #856404;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

#testimoni-form form{
  transition: 0.3s;
}