  :root {
    --bg:       #080810;
    --surface:  #0f0f1a;
    --surface2: #16162a;
    --border:   rgba(255,255,255,0.07);
    --accent:   #ff5c1a;
    --accent2:  #00cfff;
    --text:     #dde0f0;
    --muted:    #6b6e88;
    --font-h:   'Exo 2', sans-serif;
    --font-b:   'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

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

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8,8,16,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 36px;
    filter: brightness(1.1);
  }

  .nav-logo-text {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    letter-spacing: .02em;
    line-height: 1.1;
  }

  .nav-logo-text span {
    display: block;
    font-size: .65rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 6px 14px;
    font-family: var(--font-h);
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: color .2s, background .2s;
    position: relative;
  }

  .nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.05);
  }

  .nav-links a.active { color: var(--accent); }

  .nav-cta {
    background: var(--accent) !important;
    color: white !important;
    border-radius: 8px !important;
  }

  .nav-cta:hover { background: #ff7a40 !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,207,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,207,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-glow-a {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,92,26,.18) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
    animation: floatA 8s ease-in-out infinite;
  }

  .hero-glow-b {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,207,255,.12) 0%, transparent 70%);
    bottom: -100px; left: 10%;
    pointer-events: none;
    animation: floatB 10s ease-in-out infinite;
  }

  @keyframes floatA {
    0%,100% { transform: translate(0,0); }
    50%      { transform: translate(-30px, 40px); }
  }
  @keyframes floatB {
    0%,100% { transform: translate(0,0); }
    50%      { transform: translate(20px,-30px); }
  }

  .hero-content { position: relative; z-index: 2; max-width: 820px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,92,26,.1);
    border: 1px solid rgba(255,92,26,.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .78rem;
    font-family: var(--font-h);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp .6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.5); }
  }

  h1 {
    font-family: var(--font-h);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    color: white;
    animation: fadeUp .7s .1s ease both;
  }

  h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp .7s .2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 4px 24px rgba(255,92,26,.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,92,26,.45);
    background: #ff7a40;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: var(--font-h);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
  }

  .btn-secondary:hover {
    border-color: rgba(255,255,255,.2);
    color: white;
    background: rgba(255,255,255,.04);
  }


  /* ── SECTION GLOBALS ── */
  section { padding: 96px 5vw; }

  .section-label {
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
  }

  h2 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 20px;
  }

  .section-intro {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.75;
  }

  /* ── ABOUT ── */
  #about {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .about-card::after {
    content: '';
    position: absolute;
    top: -1px; left: 30px; right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }

  .about-logo-big {
    width: 100%;
    max-width: 220px;
    display: block;
    margin: 0 auto 28px;
    filter: drop-shadow(0 0 40px rgba(255,92,26,.3));
  }

  .about-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--muted);
    justify-content: center;
    margin-top: 16px;
  }

  .about-location svg { color: var(--accent); flex-shrink: 0; }

  .about-text h2 { margin-bottom: 16px; }

  .about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
  }

  .pill {
    background: rgba(255,92,26,.1);
    border: 1px solid rgba(255,92,26,.2);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .78rem;
    font-family: var(--font-h);
    font-weight: 600;
    letter-spacing: .04em;
  }

  .pill.blue {
    background: rgba(0,207,255,.08);
    border-color: rgba(0,207,255,.2);
    color: var(--accent2);
  }

  /* ── SERVICES ── */
  #services { max-width: 1200px; margin: 0 auto; }
  #services > * { max-width: none; }
  
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }

  .service-card:hover {
    border-color: rgba(255,92,26,.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
  }

  .service-card:hover .service-icon {
    background: rgba(255,92,26,.15);
    color: var(--accent);
  }

  .service-card.featured {
    background: linear-gradient(135deg, rgba(255,92,26,.08), rgba(255,92,26,.03));
    border-color: rgba(255,92,26,.25);
  }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--surface2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    transition: background .3s, color .3s;
    color: var(--muted);
  }

  .service-card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -.01em;
  }

  .service-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── PRODUCTS ── */
  #products {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .products-inner { max-width: 1200px; margin: 0 auto; }

  .products-header { margin-bottom: 52px; }

  .products-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .product-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
    border-color: rgba(255,255,255,.12);
  }

  .product-card.hero-product {
    grid-row: span 2;
  }

  .product-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a0a2e, #0a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-product .product-thumb {
    aspect-ratio: 4/3;
    font-size: 6rem;
  }

  .product-thumb .thumb-glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,92,26,.3), transparent 70%);
    pointer-events: none;
  }

  .product-thumb-cyan .thumb-glow {
    background: radial-gradient(circle, rgba(0,207,255,.3), transparent 70%);
  }

  .product-thumb-purple .thumb-glow {
    background: radial-gradient(circle, rgba(140,82,255,.3), transparent 70%);
    background-color: #0d0a1f;
  }

  .product-thumb-green .thumb-glow {
    background: radial-gradient(circle, rgba(0,255,130,.25), transparent 70%);
    background-color: #0a1a0f;
  }

  .product-thumb-pink .thumb-glow {
    background: radial-gradient(circle, rgba(255,82,160,.25), transparent 70%);
    background-color: #1a0a18;
  }

  .product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-tag {
    font-family: var(--font-h);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .product-card h3 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: -.01em;
    margin-bottom: 8px;
  }

  .hero-product h3 { font-size: 1.5rem; }

  .product-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
  }

  .product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-h);
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: auto;
  }

  .product-link.blue { color: var(--accent2); }

  /* ── APPWATCH HIGHLIGHT ── */
  #appwatch {
    max-width: 1200px;
    margin: 0 auto;
  }

  .appwatch-banner {
    background: linear-gradient(135deg, var(--surface2) 0%, rgba(0,207,255,.04) 100%);
    border: 1px solid rgba(0,207,255,.2);
    border-radius: 24px;
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .appwatch-banner::before {
    content: '';
    position: absolute;
    top: -1px; left: 60px; right: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  }

  .appwatch-banner-glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,207,255,.08), transparent 70%);
    right: -100px; top: -100px;
    pointer-events: none;
  }

  .appwatch-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 12px;
  }

  .appwatch-text h2 em {
    font-style: normal;
    color: var(--accent2);
  }

  .appwatch-text p { color: var(--muted); max-width: 480px; }

  .appwatch-features {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .aw-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text);
  }

  .aw-feat::before {
    content: '✓';
    width: 20px; height: 20px;
    background: rgba(0,207,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--accent2);
    flex-shrink: 0;
  }

  .appwatch-cta { text-align: center; flex-shrink: 0; position: relative; z-index: 1; }

  .appwatch-price {
    font-family: var(--font-h);
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
  }

  .appwatch-price-note { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }

  .btn-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent2);
    color: #060610;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(0,207,255,.25);
  }

  .btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,207,255,.4);
  }

  /* ── PRODUCT IMG THUMBS ── */
  .product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
  }
  .product-card:hover .product-thumb img { transform: scale(1.04); }

  .product-thumb.img-contain img {
    object-fit: contain;
    padding: 20px;
    background: #0a0a14;
  }

  /* ── APPS SECTION ── */
  .apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 52px;
  }

  .app-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 140px 1fr;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    text-decoration: none;
    color: inherit;
  }

  .app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
    border-color: rgba(255,255,255,.12);
  }

  .app-splash {
    overflow: hidden;
    min-height: 220px;
    position: relative;
  }

  .app-splash img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .app-body {
    padding: 28px 28px 28px 24px;
    display: flex;
    flex-direction: column;
  }

  .app-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 2px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }

  .app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .app-card h3 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: -.01em;
    margin-bottom: 6px;
  }

  .app-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
  }

  .app-tag {
    font-family: var(--font-h);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .app-stores { display: flex; gap: 8px; flex-wrap: wrap; }

  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: var(--font-h);
    font-size: .75rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: border-color .2s, color .2s, background .2s;
  }

  .store-btn:hover {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
    color: white;
  }

  .store-btn.cta-orange {
    background: rgba(255,92,26,.1);
    border-color: rgba(255,92,26,.3);
    color: var(--accent);
  }

  .store-btn.cta-orange:hover { background: rgba(255,92,26,.18); }

  @media (max-width: 900px) {
    .apps-grid { grid-template-columns: 1fr; }
    .app-card { grid-template-columns: 110px 1fr; }
  }
  @media (max-width: 600px) {
    .app-card { grid-template-columns: 1fr; }
    .app-splash { min-height: 160px; max-height: 200px; }
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--surface);
    border-top: 1px solid var(--border);
  }

  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info h2 { margin-bottom: 16px; }
  .contact-info p { color: var(--muted); margin-bottom: 36px; }

  .contact-items { display: flex; flex-direction: column; gap: 16px; }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .contact-item-icon {
    width: 40px; height: 40px;
    background: rgba(255,92,26,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-item-label {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: var(--font-h);
    font-weight: 600;
  }

  .contact-item-val {
    font-size: .9rem;
    color: var(--text);
    margin-top: 2px;
  }

  .contact-form { display: flex; flex-direction: column; gap: 14px; }

  .form-group { display: flex; flex-direction: column; gap: 6px; }

  .form-group label {
    font-size: .78rem;
    font-family: var(--font-h);
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font-b);
    font-size: .9rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: rgba(255,92,26,.4);
    box-shadow: 0 0 0 3px rgba(255,92,26,.08);
  }

  .form-group textarea { min-height: 120px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 5vw 32px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
  }

  .footer-brand img { height: 40px; margin-bottom: 14px; filter: brightness(1.1); }

  .footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.65; max-width: 260px; }

  .footer-col h4 {
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 700;
    color: white;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

  .footer-col a {
    font-size: .85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
  }

  .footer-col a:hover { color: var(--text); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: var(--muted);
  }

  .footer-bottom a { color: var(--muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--text); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .about-grid,
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }

    .services-grid { grid-template-columns: 1fr 1fr; }

    .products-grid {
      grid-template-columns: 1fr 1fr;
    }
    .product-card.hero-product { grid-column: span 2; grid-row: span 1; }

    .footer-top { grid-template-columns: 1fr 1fr; }

    .appwatch-banner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 40px 32px;
    }
    .appwatch-features { justify-content: center; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .services-grid,
    .products-grid { grid-template-columns: 1fr; }
    .product-card.hero-product { grid-column: span 1; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    h1 { font-size: 2.4rem; }
  }

/* ── MOBILE NAV HAMBURGER ─────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(8,8,16,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 5vw 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  nav { position: fixed; }
}

/* ── WP PAGINATION ───────────────────────────────────────────────────── */
.nav-links a, .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: .2s;
}
.nav-links a:hover { color: white; border-color: rgba(255,255,255,.15); }
.nav-links .current {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ── ENTRY CONTENT (Gutenberg/classic editor) ────────────────────────── */
.entry-content > * + * { margin-top: 16px; }
.entry-content h2 { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: white; margin-top: 40px; }
.entry-content h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-top: 28px; }
.entry-content p  { color: var(--muted); }
.entry-content a  { color: var(--accent); }
.entry-content ul, .entry-content ol { color: var(--muted); padding-left: 24px; }
.entry-content code {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: .88em;
  color: var(--accent2);
}
.entry-content pre {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
}
.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
}
.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  color: var(--muted);
  font-style: italic;
}
.entry-content img {
  max-width: 100%;
  border-radius: 10px;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.entry-content th, .entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text);
}
.entry-content th {
  background: var(--surface2);
  font-family: var(--font-h);
  font-weight: 700;
  color: white;
}

/* ── WP ADMIN BAR OFFSET ─────────────────────────────────────────────────────
   Cuando el admin bar está visible (logged-in), baja la nav fija para
   que no quede tapada. WP añade la clase .admin-bar al <body>.           */
.admin-bar nav#site-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar nav#site-nav {
    top: 46px;
  }
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────────────────────────*/
.lang-switcher {
  position: relative;
  margin-left: 8px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}

.lang-current:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #12121e;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  min-width: 110px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 200;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  display: block;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s, background .15s;
}

.lang-dropdown li a:hover {
  background: rgba(255,255,255,.06);
  color: white;
}

.lang-dropdown li.lang-active a {
  color: var(--accent);
  background: rgba(255,92,26,.08);
}

@media (max-width: 600px) {
  .lang-switcher { margin-left: 0; }
  .lang-dropdown { right: auto; left: 0; }
}

/* ══════════════════════════════════════════════════════════════════════════
   ELEMENTOR COMPATIBILITY
   ══════════════════════════════════════════════════════════════════════════ */

/* 1. Quita el wrapper constraint cuando Elementor renderiza */
.site-main--elementor {
  padding-top: 68px; /* nav height */
}
.admin-bar .site-main--elementor {
  padding-top: calc(68px + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .site-main--elementor {
    padding-top: calc(68px + 46px);
  }
}

/* 2. Elementor full-width sections deben ocupar el 100% del viewport */
.site-main--elementor .elementor {
  width: 100%;
}

.site-main--elementor .elementor-section.elementor-section-full_width,
.site-main--elementor .e-con.e-con--full-width {
  width: 100% !important;
  max-width: 100% !important;
}

/* 3. Stretched sections — Elementor las posiciona con JS,
      aseguramos que el offset del nav sea correcto */
.site-main--elementor .elementor-section-stretched {
  left: 0 !important;
  width: 100vw !important;
}

/* 4. Evita que nuestro background oscuro tape secciones
      de Elementor que tienen su propio fondo definido */
.site-main--elementor .elementor-section[data-settings],
.site-main--elementor .e-con {
  background-color: inherit;
}

/* 5. Reset de tipografía: nuestro h1/h2 global no debe pisar
      los headings que Elementor estiliza por su cuenta */
.site-main--elementor h1,
.site-main--elementor h2,
.site-main--elementor h3,
.site-main--elementor h4,
.site-main--elementor h5,
.site-main--elementor h6 {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
}

/* 6. Párrafos y links dentro de Elementor — no forzar nuestros colores */
.site-main--elementor p,
.site-main--elementor a {
  color: inherit;
}

.site-main--elementor a:hover {
  text-decoration: none;
}

/* 7. Imágenes dentro de Elementor: quitar border-radius global */
.site-main--elementor img {
  border-radius: 0;
  max-width: 100%;
}

/* 8. Listas dentro de Elementor */
.site-main--elementor ul,
.site-main--elementor ol {
  color: inherit;
  padding-left: 0;
  margin-bottom: 0;
}

/* 9. Elementor widget button: nuestros estilos .btn-* no deben afectarle */
.site-main--elementor .elementor-button {
  font-family: inherit !important;
}

/* 10. Elementor Section con fondo oscuro propio — el texto blanco no
       se rompe con nuestro color de texto global */
.site-main--elementor .elementor-widget-text-editor *,
.site-main--elementor .elementor-widget-heading .elementor-heading-title {
  color: inherit;
}

/* 11. Gap / overflow del body en páginas Elementor */
body.page .elementor-section {
  overflow: visible;
}

/* 12. Elementor Flexbox Containers (nuevo layout engine) */
.site-main--elementor .e-con-inner {
  width: 100%;
}

/* ── INNER PAGES site-main padding (non-Elementor) ── */
.site-main:not(.site-main--elementor) {
  padding-top: 68px;
}
.admin-bar .site-main:not(.site-main--elementor) {
  padding-top: calc(68px + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .site-main:not(.site-main--elementor) {
    padding-top: calc(68px + 46px);
  }
}

/* ── ELEMENTOR BLANK SPACE FIX ───────────────────────────────────────────────
   Elementor a veces añade margin-top al primer section/container.
   Lo neutralizamos para que el contenido empiece justo bajo el nav.       */
.site-main--elementor > .elementor > .elementor-inner > .elementor-section:first-child,
.site-main--elementor > .elementor > .e-con:first-child,
.site-main--elementor > .elementor-section:first-child,
.site-main--elementor > .e-con:first-child {
  margin-top: 0 !important;
}

/* Algunas versiones de Elementor añaden padding al body o al wrapper */
body.elementor-page .site-main--elementor {
  padding-top: 68px;
}
body.admin-bar.elementor-page .site-main--elementor {
  padding-top: calc(68px + 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar.elementor-page .site-main--elementor {
    padding-top: calc(68px + 46px);
  }
}

/* Si Elementor usa la clase .elementor-page en body, 
   asegura que nuestro nav fijo no tape el contenido */
body.elementor-page {
  padding-top: 0 !important;
}

/* Elementor a veces añade padding-top al #page o #content del tema anterior */
#page, #content, #primary, #main, .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
