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

    :root {
      --blue-deep:    #0a1a3a;
      --blue-mid:     #0d3280;
      --blue-bright:  #1a56db;
      --blue-glow:    #3b82f6;
      --blue-light:   #bfdbfe;
      --white:        #ffffff;
      --off-white:    #f0f6ff;
      --grey:         #94a3b8;
      --font-head:    'Syne', sans-serif;
      --font-body:    'DM Sans', sans-serif;
      --radius:       14px;
      --nav-h:        72px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--blue-deep);
      color: var(--white);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--blue-deep); }
    ::-webkit-scrollbar-thumb { background: var(--blue-bright); border-radius: 99px; }

    nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6vw;
      background: rgba(10,26,58,0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(59,130,246,0.15);
      z-index: 1000;
    }

    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .nav-logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--white); letter-spacing: 0.02em; }
    .nav-logo-text span { color: var(--blue-glow); }

    .nav-links { display: flex; gap: 30px; list-style: none; }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
      color: var(--blue-light); text-decoration: none; position: relative; transition: color 0.25s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
      background: var(--blue-glow); transition: width 0.3s ease; border-radius: 2px;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--blue-bright); color: var(--white) !important; padding: 8px 22px; border-radius: 8px;
      font-weight: 600 !important; transition: background 0.25s, transform 0.2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--blue-glow) !important; transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: rgba(10,26,58,0.97); backdrop-filter: blur(20px);
      padding: 24px 6vw 32px; flex-direction: column; gap: 18px; z-index: 999;
      border-bottom: 1px solid rgba(59,130,246,0.2); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
      color: var(--blue-light); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--white); }

    #home { display: flex; align-items: center; padding: calc(var(--nav-h) + 44px) 6vw 60px; position: relative; overflow: hidden; }
    #home::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,86,219,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(59,130,246,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(13,50,128,0.4) 0%, transparent 60%);
      pointer-events: none;
    }
    #home::after {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(rgba(59,130,246,0.18) 1px, transparent 1px);
      background-size: 36px 36px; pointer-events: none;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    .hero-inner { position: relative; z-index: 2; max-width: 720px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px; background: rgba(26,86,219,0.2);
      border: 1px solid rgba(59,130,246,0.35); border-radius: 99px; padding: 6px 16px;
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--blue-light); margin-bottom: 18px; animation: fadeUp 0.8s ease both;
    }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-glow); animation: pulse 1.8s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

    .hero-h1 {
      font-family: var(--font-head); font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 18px; animation: fadeUp 0.8s 0.15s ease both;
    }
    .hero-h1 .accent { color: var(--blue-glow); }
    .hero-sub {
      font-size: clamp(0.98rem, 1.5vw, 1.1rem); font-weight: 300; color: var(--blue-light); line-height: 1.65;
      max-width: 560px; margin-bottom: 30px; animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp 0.8s 0.45s ease both; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px; background: var(--blue-bright); color: var(--white);
      padding: 14px 30px; border-radius: 10px; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
      letter-spacing: 0.02em; text-decoration: none; transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      box-shadow: 0 4px 24px rgba(26,86,219,0.4); border: none; cursor: pointer;
    }
    .btn-primary:hover { background: var(--blue-glow); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.5); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white);
      padding: 14px 30px; border-radius: 10px; border: 1.5px solid rgba(59,130,246,0.45);
      font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
      text-decoration: none; transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .btn-outline:hover { border-color: var(--blue-glow); background: rgba(59,130,246,0.1); transform: translateY(-2px); }

    .hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 38px; animation: fadeUp 0.8s 0.6s ease both; }
    .stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--white); }
    .stat-num span { color: var(--blue-glow); }
    .stat-label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); margin-top: 2px; }

    .hero-logo-float {
      position: absolute; right: 8vw; top: 50%; transform: translateY(-50%);
      width: clamp(170px, 18vw, 280px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
      animation: floatY 5s ease-in-out infinite, fadeIn 1.2s 0.4s ease both; z-index: 2;
    }
    .hero-logo-float::before {
      content: ''; position: absolute; inset: -20%; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,86,219,0.25) 0%, transparent 70%); animation: rotateSlow 12s linear infinite;
    }
    .hero-logo-float img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 40px rgba(59,130,246,0.5)); }

    @keyframes floatY { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 18px)); } }
    @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    section { padding: 84px 6vw; }
    .section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-glow); margin-bottom: 12px; }
    .section-h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
    .section-lead { font-size: 1.02rem; font-weight: 300; color: var(--blue-light); line-height: 1.7; max-width: 620px; margin-bottom: 44px; }

    #services { background: linear-gradient(180deg, var(--blue-deep) 0%, #061228 100%); position: relative; }
    #services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .service-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
      padding: 36px 32px; position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s, background 0.3s;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue-bright), var(--blue-glow)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
    }
    .service-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); background: rgba(26,86,219,0.08); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 56px; height: 56px; background: rgba(26,86,219,0.2); border: 1px solid rgba(59,130,246,0.3);
      border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.6rem;
    }
    .service-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
    .service-card p { font-size: 0.93rem; font-weight: 300; color: var(--blue-light); line-height: 1.7; margin-bottom: 20px; }
    .service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .service-features li { font-size: 0.85rem; color: var(--grey); display: flex; align-items: flex-start; gap: 8px; }
    .service-features li::before { content: ''; width: 6px; height: 6px; margin-top: 6px; border-radius: 50%; background: var(--blue-glow); flex-shrink: 0; }

    /* Products */
    #products { background: #061228; position: relative; }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
    .product-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
      overflow: hidden; transition: transform 0.3s, border-color 0.3s;
      display: flex; flex-direction: column;
    }
    .product-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); }
    .product-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: rgba(26,86,219,0.15); }
    .product-img-placeholder {
      width: 100%; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(26,86,219,0.25), rgba(13,50,128,0.35)); font-size: 2.4rem;
    }
    .product-body { padding: 24px 26px; }
    .product-body h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
    .product-body p { font-size: 0.88rem; font-weight: 300; color: var(--blue-light); line-height: 1.6; margin-bottom: 16px; }
    .product-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .product-features li { font-size: 0.82rem; color: var(--grey); display: flex; align-items: flex-start; gap: 8px; }
    .product-features li::before { content: '✓'; color: var(--blue-glow); font-weight: 700; flex-shrink: 0; }

    #about { background: #061228; position: relative; overflow: hidden; }
    #about::after {
      content: ''; position: absolute; right: -10%; top: 50%; transform: translateY(-50%); width: 500px; height: 500px;
      border-radius: 50%; background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%); pointer-events: none;
    }
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-image-wrap { position: relative; }
    .about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(59,130,246,0.2); filter: brightness(0.85) saturate(0.9); }
    .about-img-badge {
      position: absolute; bottom: -20px; right: -20px; background: var(--blue-bright); border-radius: var(--radius);
      padding: 18px 24px; text-align: center; box-shadow: 0 8px 32px rgba(26,86,219,0.5);
    }
    .about-img-badge .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
    .about-img-badge .lbl { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; display: block; }
    .about-content .section-lead { margin-bottom: 32px; }
    .about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
    .about-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.93rem; color: var(--blue-light); line-height: 1.6; }
    .about-list li .check {
      width: 22px; height: 22px; border-radius: 6px; background: rgba(26,86,219,0.25); border: 1px solid rgba(59,130,246,0.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; color: var(--blue-glow); margin-top: 1px;
    }

    /* Clients / Partners */
    #clients { background: var(--blue-deep); position: relative; }
    #clients::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.35), transparent); }
    .client-category { margin-bottom: 48px; }
    .client-category:last-child { margin-bottom: 0; }
    .client-category h3 {
      font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--blue-light);
      margin-bottom: 22px; letter-spacing: 0.02em;
    }
    .client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
    .client-tile {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(59,130,246,0.15); border-radius: 12px;
      padding: 18px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; text-align: center; text-decoration: none; transition: transform 0.25s, border-color 0.25s, background 0.25s;
      min-height: 132px;
    }
    .client-tile:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.45); background: rgba(26,86,219,0.08); }
    .client-logo-frame {
      width: 100%; height: 58px; background: #ffffff; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; padding: 8px 14px;
    }
    .client-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .client-tile .initials {
      width: 46px; height: 46px; border-radius: 50%; background: rgba(26,86,219,0.3); border: 1px solid rgba(59,130,246,0.4);
      display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--blue-glow);
    }
    .client-tile .name { font-size: 0.78rem; color: var(--grey); line-height: 1.3; }

    #why { background: #061228; position: relative; }
    #why::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.35), transparent); }
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px;
      background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius); overflow: hidden;
    }
    .why-item { background: #061228; padding: 36px 28px; transition: background 0.3s; }
    .why-item:hover { background: rgba(26,86,219,0.1); }
    .why-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: rgba(59,130,246,0.25); line-height: 1; margin-bottom: 16px; }
    .why-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .why-item p { font-size: 0.87rem; color: var(--grey); line-height: 1.65; }

    #contact { background: var(--blue-deep); position: relative; overflow: hidden; }
    #contact::before {
      content: ''; position: absolute; left: -5%; top: 50%; transform: translateY(-50%); width: 600px; height: 600px;
      border-radius: 50%; background: radial-gradient(circle, rgba(26,86,219,0.1) 0%, transparent 70%); pointer-events: none;
    }
    .contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
    .contact-info .section-lead { margin-bottom: 40px; }
    .contact-items { display: flex; flex-direction: column; gap: 24px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; }
    .contact-item-icon {
      width: 46px; height: 46px; border-radius: 12px; background: rgba(26,86,219,0.2); border: 1px solid rgba(59,130,246,0.3);
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-item-text .lbl { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 3px; }
    .contact-item-text a, .contact-item-text span { font-size: 0.97rem; font-weight: 500; color: var(--white); text-decoration: none; transition: color 0.2s; }
    .contact-item-text a:hover { color: var(--blue-glow); }

    .contact-form { background: rgba(255,255,255,0.03); border: 1px solid rgba(59,130,246,0.18); border-radius: var(--radius); padding: 40px 36px; }
    .form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
    .form-group label { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--grey); font-weight: 500; }
    .form-group input, .form-group select, .form-group textarea {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(59,130,246,0.2); border-radius: 8px; padding: 12px 16px;
      color: var(--white); font-family: var(--font-body); font-size: 0.92rem; outline: none; transition: border-color 0.25s, background 0.25s; width: 100%;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-glow); background: rgba(59,130,246,0.07); }
    .form-group select option { background: #0a1a3a; }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .hp-field { position: absolute; left: -9999px; top: -9999px; }

    .btn-submit {
      width: 100%; padding: 14px; background: var(--blue-bright); color: var(--white); border: none; border-radius: 10px;
      font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s; box-shadow: 0 4px 20px rgba(26,86,219,0.35);
    }
    .btn-submit:hover { background: var(--blue-glow); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.45); }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    footer { background: #040e1e; border-top: 1px solid rgba(59,130,246,0.12); padding: 48px 6vw 32px; }
    .footer-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
    .footer-brand { max-width: 300px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .footer-logo img { height: 34px; width: auto; max-width: 150px; object-fit: contain; }
    .footer-brand p { font-size: 0.87rem; color: var(--grey); line-height: 1.65; }
    .footer-social { display: flex; gap: 10px; margin-top: 16px; }
    .footer-social a {
      width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(59,130,246,0.3); display: flex;
      align-items: center; justify-content: center; color: var(--blue-light); text-decoration: none; font-size: 0.9rem; transition: background 0.2s, color 0.2s;
    }
    .footer-social a:hover { background: var(--blue-bright); color: var(--white); }
    .footer-links-group h5 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-glow); margin-bottom: 16px; }
    .footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links-group ul li a { font-size: 0.88rem; color: var(--grey); text-decoration: none; transition: color 0.2s; }
    .footer-links-group ul li a:hover { color: var(--white); }
    .footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(59,130,246,0.1); }
    .footer-bottom p { font-size: 0.82rem; color: var(--grey); }
    .footer-bottom a { color: var(--blue-glow); text-decoration: none; }

    .toast {
      position: fixed; bottom: 28px; left: 28px; background: rgba(26,86,219,0.95); border: 1px solid rgba(59,130,246,0.5);
      border-radius: 12px; padding: 14px 22px; font-size: 0.9rem; font-weight: 500; backdrop-filter: blur(12px); z-index: 9999;
      opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; max-width: 320px;
    }
    .toast.show { opacity: 1; transform: translateY(0); }
    .toast.error { background: rgba(220,38,38,0.95); border-color: rgba(248,113,113,0.6); }

    /* WhatsApp floating button */
    .wa-float {
      position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.35);
      z-index: 9998; transition: transform 0.2s;
    }
    .wa-float:hover { transform: scale(1.08); }
    .wa-float svg { width: 30px; height: 30px; }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-logo-float { display: none; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      section { padding: 60px 5vw; }
      #home { padding: calc(var(--nav-h) + 28px) 5vw 48px; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 24px; margin-top: 30px; }
      .contact-form { padding: 28px 22px; }
      .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
      .toast { left: 14px; right: 14px; max-width: none; }
    }
    @media (max-width: 420px) {
      .why-grid { grid-template-columns: 1fr; }
    }

    /* ══ News & Media ══ */
    #news { background: linear-gradient(180deg, #061228 0%, var(--blue-deep) 100%); position: relative; }
    #news::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent); }
    .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
    .news-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius);
      overflow: hidden; transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column;
      text-decoration: none; color: inherit; position: relative;
    }
    .news-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); }
    .news-card.featured { border-color: rgba(59,130,246,0.5); box-shadow: 0 0 0 1px rgba(59,130,246,0.25); }

    .news-media { position: relative; width: 100%; aspect-ratio: 16/10; background: rgba(26,86,219,0.15); overflow: hidden; }
    .news-media img, .news-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .news-media-placeholder {
      width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(26,86,219,0.25), rgba(13,50,128,0.35)); font-size: 2.4rem;
    }

    .news-type-badge {
      position: absolute; top: 12px; left: 12px; background: rgba(10,26,58,0.75); backdrop-filter: blur(6px);
      border: 1px solid rgba(59,130,246,0.35); border-radius: 99px; padding: 4px 12px; font-size: 0.7rem;
      font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue-light); z-index: 2;
    }
    .news-featured-badge {
      position: absolute; top: 12px; right: 12px; background: var(--blue-bright); border-radius: 99px;
      padding: 4px 12px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; z-index: 2;
    }
    .news-play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 1; transition: opacity 0.3s; }
    .news-play-icon svg { width: 54px; height: 54px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45)); }
    .news-card:hover .news-play-icon { opacity: 0; }

    .news-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
    .news-meta { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
    .news-meta .cat { color: var(--blue-glow); font-weight: 700; }
    .news-body h3 { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
    .news-body p { font-size: 0.88rem; font-weight: 300; color: var(--blue-light); line-height: 1.6; margin-bottom: 14px; flex: 1; }
    .news-readmore { font-size: 0.83rem; font-weight: 700; color: var(--blue-glow); display: inline-flex; align-items: center; gap: 6px; }

    .news-embed-wrap { padding: 16px 16px 4px; background: rgba(0,0,0,0.15); display: flex; justify-content: center; overflow: hidden; }
    .news-embed-wrap blockquote { margin: 0 auto !important; max-width: 100% !important; }

    .news-cta-row { text-align: center; margin-top: 44px; }

    /* Homepage teaser: always exactly 3 per row on desktop, regardless of post count */
    #news .news-grid { grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 900px) {
      #news .news-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .news-grid { grid-template-columns: 1fr; }
    }

    /* ══ Inner page header (news.php / news_post.php) ══ */
    .page-header { padding: calc(var(--nav-h) + 56px) 6vw 50px; position: relative; overflow: hidden; text-align: center; }
    .page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26,86,219,0.25) 0%, transparent 65%); pointer-events: none; }
    .page-header .section-tag, .page-header .section-h2, .page-header .section-lead { position: relative; z-index: 1; }
    .page-header .section-lead { margin-left: auto; margin-right: auto; }

    .news-filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 6vw 40px; position: relative; z-index: 1; }
    .news-filter-row a {
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--blue-light);
      text-decoration: none; padding: 8px 18px; border-radius: 99px; border: 1px solid rgba(59,130,246,0.25); transition: all 0.2s;
    }
    .news-filter-row a:hover, .news-filter-row a.active { background: var(--blue-bright); color: #fff; border-color: var(--blue-bright); }

    .news-archive { padding: 0 6vw 90px; }
    .news-empty { text-align: center; color: var(--grey); padding: 60px 0; }

    /* Single post detail */
    .post-detail { max-width: 820px; margin: 0 auto; padding: 0 6vw 90px; }
    .post-back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-glow); text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-bottom: 28px; }
    .post-detail-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 18px; font-size: 0.82rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; }
    .post-detail-meta .cat { color: var(--blue-glow); font-weight: 700; }
    .post-detail h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 26px; }
    .post-detail-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; border: 1px solid rgba(59,130,246,0.2); background: rgba(26,86,219,0.1); }
    .post-detail-media img, .post-detail-media video { width: 100%; display: block; max-height: 560px; object-fit: cover; }
    .post-detail-embed { display: flex; justify-content: center; margin-bottom: 32px; }
    .post-detail-body { font-size: 1rem; font-weight: 300; color: var(--blue-light); line-height: 1.85; white-space: pre-line; }
