/* ============================================================
   SMART CARE L.L.C. — Corporate Website
   Brand: orange (Smart/Care) · blue (figure) · red (swoosh)
   Type: Plus Jakarta Sans (display) · Manrope (body)
   ============================================================ */

:root{
  --orange:        #E8841C;
  --orange-dark:   #CC7113;
  --orange-soft:   #FCEFDD;
  --blue:          #1F7AB8;
  --blue-deep:     #12537F;
  --blue-darker:   #0D3F62;
  --blue-night:    #0A3350;
  --blue-soft:     #E9F2F9;
  --red:           #CE3526;
  --red-soft:      #FBE7E4;

  --ink:           #163749;   /* darkest text */
  --body:          #475a64;   /* paragraph */
  --muted:         #7d8c95;   /* secondary */
  --line:          #e3eaee;
  --line-soft:     #eef3f6;

  --bg:            #ffffff;
  --bg-soft:       #f4f8fa;
  --bg-soft2:      #eef4f8;

  --shadow-sm: 0 2px 8px rgba(18,83,127,.06);
  --shadow:    0 14px 40px -18px rgba(18,83,127,.28);
  --shadow-lg: 0 30px 70px -30px rgba(13,63,98,.40);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --maxw: 1200px;

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:96px; }
body{
  font-family:var(--font-body);
  color:var(--body);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); line-height:1.12; font-weight:700; letter-spacing:-.01em; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ list-style:none; }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.center{ text-align:center; }

/* --- buttons --- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-display); font-weight:600; font-size:15px;
  padding:13px 26px; border-radius:999px; border:1.5px solid transparent;
  cursor:pointer; transition:.22s ease; white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--orange); color:#fff; box-shadow:0 10px 24px -10px rgba(232,132,28,.7); }
.btn-primary:hover{ background:var(--orange-dark); transform:translateY(-2px); }
.btn-blue{ background:var(--blue); color:#fff; }
.btn-blue:hover{ background:var(--blue-deep); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }
.btn-ghost:hover{ background:#fff; color:var(--blue-deep); border-color:#fff; }
.btn-outline{ background:#fff; color:var(--blue-deep); border-color:var(--line); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }

/* --- section header --- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:700; font-size:12.5px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--orange);
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--orange); border-radius:2px; }
.eyebrow.c::before, .eyebrow.c::after{ content:""; width:26px; height:2px; background:var(--orange); border-radius:2px; }
.eyebrow.c{ justify-content:center; }
.sec-title{ font-size:clamp(28px,3.4vw,42px); margin:14px 0 0; }
.sec-sub{ font-size:17px; color:var(--body); max-width:620px; margin:16px auto 0; }
.sec-head{ margin-bottom:52px; }

.section{ padding:96px 0; }
.section.soft{ background:var(--bg-soft); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar{
  background:var(--blue-darker); color:#cfe0ec;
  font-size:13.5px;
}
.topbar .wrap{ display:flex; align-items:center; justify-content:space-between; height:44px; }
.topbar-info{ display:flex; gap:26px; align-items:center; }
.topbar-info span.hide-sm{ display:inline-flex; align-items:center; gap:7px; }
.topbar-info a{ display:inline-flex; align-items:center; gap:7px; transition:.2s; white-space:nowrap; }
.topbar-info > span{ white-space:nowrap; }
.topbar-info a:hover{ color:#fff; }
.topbar-info svg{ width:14px; height:14px; color:var(--orange); }
.topbar-social{ display:flex; gap:8px; }
.topbar-social a{
  width:26px; height:26px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.1); transition:.2s;
}
.topbar-social a:hover{ background:var(--orange); }
.topbar-social svg{ width:13px; height:13px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header{
  position:sticky; top:0; z-index:100; background:#fff;
  border-bottom:1px solid var(--line-soft);
  transition:box-shadow .25s, padding .25s;
}
.header.scrolled{ box-shadow:0 8px 30px -16px rgba(18,83,127,.28); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:80px; transition:height .25s; }
.header.scrolled .nav{ height:68px; }
.brand img{ height:46px; transition:height .25s; }
.header.scrolled .brand img{ height:40px; }
.nav-menu{ display:flex; align-items:center; gap:4px; }
.nav-menu a{
  font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--ink);
  padding:9px 15px; border-radius:8px; transition:.18s; position:relative;
}
.nav-menu a:hover{ color:var(--blue); }
.nav-menu a.active{ color:var(--blue); }
.menu-cta{ display:none; }
.nav-right{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:9px; font-family:var(--font-display); font-weight:700; color:var(--ink); font-size:15px; }
.nav-phone .ic{ width:38px; height:38px; border-radius:50%; background:var(--orange-soft); color:var(--orange-dark); display:grid; place-items:center; }
.nav-phone .ic svg{ width:18px; height:18px; }
.nav-phone > span{ white-space:nowrap; }
.nav-phone small{ display:block; font-family:var(--font-body); font-weight:600; font-size:11px; color:var(--muted); letter-spacing:.04em; text-transform:uppercase; }
.hamburger{ display:none; width:44px; height:44px; border-radius:10px; border:1px solid var(--line); background:#fff; cursor:pointer; }
.hamburger span{ display:block; width:20px; height:2px; background:var(--ink); margin:4px auto; border-radius:2px; transition:.25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; color:#fff; overflow:hidden;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(31,122,184,.55), transparent 60%),
    linear-gradient(135deg, #12537F 0%, #0D3F62 55%, #0A3350 100%);
}
.hero-deco{ position:absolute; inset:0; pointer-events:none; opacity:.5; }
.hero-deco .blob{ position:absolute; border-radius:50%; filter:blur(2px); }
.hero-grid-lines{
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:56px 56px; mask-image:radial-gradient(circle at 70% 30%,#000,transparent 75%);
}
.hero .wrap{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center; padding-top:74px; padding-bottom:96px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:9px; padding:7px 15px 7px 8px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.16);
  border-radius:999px; font-size:13.5px; font-weight:600; margin-bottom:26px;
}
.hero-badge b{ background:var(--orange); color:#fff; padding:3px 10px; border-radius:999px; font-size:12px; font-family:var(--font-display); }
.hero h1{ color:#fff; font-size:clamp(34px,4.4vw,56px); line-height:1.07; }
.hero h1 .hl{ color:var(--orange); }
.hero p.lead{ color:#cddeec; font-size:18.5px; margin:22px 0 32px; max-width:540px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.hero-trust{ display:flex; align-items:center; gap:20px; margin-top:34px; color:#bcd2e2; font-size:14px; }
.hero-trust .ck{ display:flex; align-items:center; gap:8px; }
.hero-trust svg{ width:18px; height:18px; color:#5fd0a0; }

/* hero visual */
.hero-visual{ position:relative; }
.hero-photo{
  position:relative; border-radius:22px; overflow:hidden;
  aspect-ratio:4/4.4; box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.12);
}
.hero-float{
  position:absolute; background:#fff; color:var(--ink); border-radius:14px;
  padding:14px 16px; box-shadow:0 20px 50px -20px rgba(10,51,80,.6); display:flex; gap:12px; align-items:center;
}
.hero-float .fic{ width:42px; height:42px; border-radius:11px; display:grid; place-items:center; flex:0 0 auto; }
.hero-float .fic svg{ width:22px; height:22px; }
.hero-float b{ font-family:var(--font-display); font-size:17px; display:block; color:var(--ink); }
.hero-float small{ font-size:12px; color:var(--muted); }
.hero-float.f1{ left:-26px; top:38px; }
.hero-float.f2{ right:-22px; bottom:90px; }

/* stats band */
.stats{ position:relative; z-index:3; margin-top:-46px; }
.stats-inner{
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--shadow);
  display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden;
}
.stat{ padding:30px 28px; text-align:center; border-right:1px solid var(--line-soft); position:relative; }
.stat:last-child{ border-right:none; }
.stat .num{ font-family:var(--font-display); font-weight:800; font-size:42px; color:var(--blue-deep); line-height:1; letter-spacing:-.02em; }
.stat .num .suf{ color:var(--orange); }
.stat .lbl{ margin-top:8px; font-size:14.5px; color:var(--muted); font-weight:600; }
.stat .lbl .sub{ display:block; font-size:11.5px; font-weight:600; color:#9fb1bb; margin-top:3px; letter-spacing:.01em; }

/* ============================================================
   PLACEHOLDER IMAGES
   ============================================================ */
.ph{
  position:relative; background:
    repeating-linear-gradient(135deg, rgba(31,122,184,.10) 0 10px, rgba(31,122,184,.04) 10px 20px),
    var(--bg-soft2);
  display:grid; place-items:center; color:var(--blue-deep); overflow:hidden;
}
.ph::after{
  content:attr(data-label); font-family:"Manrope",monospace; font-size:12px; letter-spacing:.06em;
  text-transform:uppercase; color:#7ea6c4; font-weight:700;
  background:rgba(255,255,255,.72); padding:6px 12px; border-radius:7px; border:1px dashed #b6cfe0;
}
.ph.dark{ background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 10px, rgba(255,255,255,.01) 10px 20px),
    rgba(255,255,255,.04); }
.ph.dark::after{ background:rgba(255,255,255,.1); color:#bcd6ea; border-color:rgba(255,255,255,.25); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.svc-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r);
  padding:32px 28px; transition:.25s; position:relative; overflow:hidden;
}
.svc-card::before{ content:""; position:absolute; left:0; top:0; height:4px; width:0; background:var(--orange); transition:.3s; }
.svc-card:hover{ box-shadow:var(--shadow); transform:translateY(-6px); border-color:transparent; }
.svc-card:hover::before{ width:100%; }
.svc-ic{ width:60px; height:60px; border-radius:16px; display:grid; place-items:center; background:var(--blue-soft); color:var(--blue-deep); margin-bottom:20px; transition:.25s; }
.svc-card:hover .svc-ic{ background:var(--blue-deep); color:#fff; }
.svc-ic svg{ width:28px; height:28px; }
.svc-card h3{ font-size:20px; margin-bottom:10px; }
.svc-card p{ font-size:15px; }
.svc-num{ position:absolute; right:22px; top:18px; font-family:var(--font-display); font-weight:800; font-size:46px; color:var(--line-soft); }

/* ============================================================
   PRODUCTS (filter + grid)
   ============================================================ */
.prod-layout{ display:grid; grid-template-columns:280px 1fr; gap:34px; align-items:start; }
.prod-side{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:10px; position:sticky; top:100px; }
.prod-side h4{ font-size:13px; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); padding:16px 16px 10px; }
.cat-btn{
  width:100%; text-align:left; display:flex; align-items:center; justify-content:space-between;
  padding:13px 16px; border:none; background:none; cursor:pointer; border-radius:10px;
  font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--ink); transition:.18s;
}
.cat-btn .cnt{ font-size:12px; font-weight:700; color:var(--muted); background:var(--bg-soft); padding:2px 9px; border-radius:999px; }
.cat-btn:hover{ background:var(--bg-soft); color:var(--blue); }
.cat-btn.active{ background:var(--blue-deep); color:#fff; }
.cat-btn.active .cnt{ background:rgba(255,255,255,.2); color:#fff; }
.prod-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.prod-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; transition:.25s;
}
.prod-card:hover{ box-shadow:var(--shadow); transform:translateY(-5px); }
.prod-card .pimg{ aspect-ratio:4/3; }
.prod-card .pbody{ padding:18px 20px 22px; }
.prod-card .ptag{ font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--orange); }
.prod-card h3{ font-size:17px; margin:7px 0 8px; }
.prod-card p{ font-size:13.5px; color:var(--muted); }
.prod-card.hide{ display:none; }

/* ============================================================
   ABOUT / VISION / MISSION
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:56px; align-items:center; }
.about-visual{ position:relative; }
.about-img{ border-radius:20px; aspect-ratio:5/5.4; box-shadow:var(--shadow); }
.about-badge{
  position:absolute; right:-20px; bottom:-22px; background:var(--orange); color:#fff;
  border-radius:18px; padding:22px 26px; text-align:center; box-shadow:0 24px 50px -20px rgba(232,132,28,.7);
}
.about-badge b{ font-family:var(--font-display); font-weight:800; font-size:40px; display:block; line-height:1; }
.about-badge span{ font-size:13px; font-weight:600; }
.about-img-2{ position:absolute; left:-26px; top:-26px; width:150px; height:150px; border-radius:16px; border:5px solid #fff; box-shadow:var(--shadow); }
.about-body p{ font-size:16.5px; margin-bottom:18px; }
.vm-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:28px; }
.vm-card{ border:1px solid var(--line); border-radius:var(--r); padding:24px; background:var(--bg-soft); }
.vm-card .vic{ width:48px; height:48px; border-radius:12px; display:grid; place-items:center; margin-bottom:14px; }
.vm-card.vision .vic{ background:var(--blue-soft); color:var(--blue-deep); }
.vm-card.mission .vic{ background:var(--red-soft); color:var(--red); }
.vm-card .vic svg{ width:24px; height:24px; }
.vm-card h4{ font-size:18px; margin-bottom:8px; }
.vm-card p{ font-size:14px; }

/* ============================================================
   NETWORK / QUALITY (dark feature)
   ============================================================ */
.network{ background:linear-gradient(160deg,#0D3F62,#0A3350); color:#fff; position:relative; overflow:hidden; }
.network .hero-grid-lines{ opacity:.6; }
.network .wrap{ position:relative; z-index:2; }
.net-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.network .sec-title{ color:#fff; }
.network .sec-sub{ color:#bcd2e2; margin-left:0; }
.network .eyebrow{ color:#7fc0ee; }
.network .eyebrow::before{ background:#7fc0ee; }
.net-feats{ display:grid; gap:14px; margin-top:30px; }
.net-feat{ display:flex; gap:15px; align-items:flex-start; }
.net-feat .nic{ width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); display:grid; place-items:center; flex:0 0 auto; color:var(--orange); }
.net-feat .nic svg{ width:22px; height:22px; }
.net-feat h4{ color:#fff; font-size:17px; margin-bottom:3px; }
.net-feat p{ color:#aac4d6; font-size:14px; }
.net-visual{ position:relative; }
.net-img{ border-radius:20px; aspect-ratio:5/5.6; border:1px solid rgba(255,255,255,.14); }
.badge-cert{ position:absolute; left:-22px; bottom:30px; background:#fff; color:var(--ink); border-radius:16px; padding:16px 20px; box-shadow:var(--shadow-lg); display:flex; gap:14px; align-items:center; }
.badge-cert .bic{ width:48px; height:48px; border-radius:50%; background:#e8f6ee; color:#1f9d63; display:grid; place-items:center; }
.badge-cert .bic svg{ width:26px; height:26px; }
.badge-cert b{ font-family:var(--font-display); font-size:16px; color:var(--ink); display:block; }
.badge-cert small{ font-size:12px; color:var(--muted); }

/* ============================================================
   SECTORS
   ============================================================ */
.sector-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.sector-card{
  display:flex; gap:16px; align-items:center; background:#fff; border:1px solid var(--line);
  border-radius:var(--r); padding:22px; transition:.22s;
}
.sector-card:hover{ border-color:var(--blue); box-shadow:var(--shadow-sm); transform:translateX(4px); }
.sector-card .sic{ width:54px; height:54px; border-radius:13px; background:var(--orange-soft); color:var(--orange-dark); display:grid; place-items:center; flex:0 0 auto; }
.sector-card .sic svg{ width:26px; height:26px; }
.sector-card h4{ font-size:16.5px; margin-bottom:2px; }
.sector-card p{ font-size:13px; color:var(--muted); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners{ padding:60px 0; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.partners p.kick{ text-align:center; color:var(--muted); font-size:14px; font-weight:600; letter-spacing:.04em; margin-bottom:34px; }
.partner-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:30px 56px; align-items:center; }
.partner-logo{ height:84px; width:200px; display:grid; place-items:center; transition:.25s; filter:saturate(.95); }
.partner-logo img{ max-height:72px; max-width:170px; width:auto; object-fit:contain; opacity:.92; transition:.25s; }
.partner-logo:hover img{ opacity:1; transform:translateY(-3px); }

/* ============================================================
   WHY
   ============================================================ */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.why-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:28px 24px; text-align:center; transition:.25s; }
.why-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.why-ic{ width:64px; height:64px; border-radius:50%; margin:0 auto 18px; display:grid; place-items:center; background:var(--blue-soft); color:var(--blue-deep); }
.why-ic svg{ width:30px; height:30px; }
.why-card:nth-child(4n+2) .why-ic{ background:var(--orange-soft); color:var(--orange-dark); }
.why-card:nth-child(4n+3) .why-ic{ background:var(--red-soft); color:var(--red); }
.why-card h4{ font-size:16.5px; margin-bottom:8px; }
.why-card p{ font-size:13.5px; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact{ background:var(--bg-soft); }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:46px; align-items:stretch; }
.contact-info .eyebrow{ color:var(--orange); }
.contact-info h2{ font-size:clamp(28px,3.2vw,40px); margin:14px 0 16px; }
.contact-info > p{ font-size:16.5px; margin-bottom:30px; max-width:440px; }
.cinfo-list{ display:grid; gap:18px; }
.cinfo{ display:flex; gap:16px; align-items:flex-start; }
.cinfo .cic{ width:52px; height:52px; border-radius:13px; background:#fff; border:1px solid var(--line); color:var(--blue-deep); display:grid; place-items:center; flex:0 0 auto; box-shadow:var(--shadow-sm); }
.cinfo .cic svg{ width:23px; height:23px; }
.cinfo b{ font-family:var(--font-display); color:var(--ink); font-size:16px; display:block; margin-bottom:2px; }
.cinfo span,.cinfo .map-link{ font-size:14.5px; color:var(--body); display:block; }
.cinfo .map-link{ transition:.18s; }
.cinfo .map-link:hover{ color:var(--blue); }
.foot-contact a:hover{ color:var(--orange); }
.contact-form{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:38px; box-shadow:var(--shadow); }
.contact-form h3{ font-size:22px; margin-bottom:6px; }
.contact-form .fsub{ font-size:14px; color:var(--muted); margin-bottom:24px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:13px; font-weight:700; color:var(--ink); margin-bottom:7px; font-family:var(--font-display); }
.field input,.field textarea,.field select{
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:10px;
  font-family:var(--font-body); font-size:15px; color:var(--ink); background:var(--bg-soft); transition:.18s;
}
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--blue); background:#fff; box-shadow:0 0 0 4px rgba(31,122,184,.1); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-ok{ display:none; background:#e8f6ee; color:#1c7a4d; border:1px solid #b8e3cc; border-radius:10px; padding:14px; font-size:14px; font-weight:600; margin-bottom:16px; }
.form-ok.show{ display:block; }

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter{ background:var(--blue-deep); color:#fff; position:relative; overflow:hidden; }
.newsletter .wrap{ position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:30px; padding:46px 28px; flex-wrap:wrap; }
.newsletter h3{ color:#fff; font-size:26px; }
.newsletter p{ color:#bcd2e2; font-size:15px; margin-top:6px; }
.news-form{ display:flex; gap:10px; flex:0 0 auto; }
.news-form input{ width:300px; max-width:60vw; padding:14px 18px; border-radius:999px; border:none; font-family:var(--font-body); font-size:15px; }
.news-form input:focus{ outline:none; box-shadow:0 0 0 4px rgba(232,132,28,.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--blue-night); color:#9fb8c9; padding:70px 0 0; }
.foot-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.3fr; gap:40px; padding-bottom:48px; }
.foot-brand img{ height:54px; margin-bottom:18px; }
.foot-brand p{ font-size:14.5px; line-height:1.7; max-width:300px; }
.foot-soc{ display:flex; gap:10px; margin-top:20px; }
.foot-soc a{ width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.07); display:grid; place-items:center; transition:.2s; }
.foot-soc a:hover{ background:var(--orange); color:#fff; }
.foot-soc svg{ width:17px; height:17px; }
.foot-col h4{ color:#fff; font-size:16px; margin-bottom:20px; }
.foot-col ul{ display:grid; gap:11px; }
.foot-col a{ font-size:14.5px; transition:.18s; }
.foot-col a:hover{ color:var(--orange); padding-left:4px; }
.foot-contact li{ display:flex; gap:11px; font-size:14px; margin-bottom:14px; align-items:flex-start; }
.foot-contact svg{ width:17px; height:17px; color:var(--orange); flex:0 0 auto; margin-top:3px; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.08); padding:22px 0; display:flex; align-items:center; justify-content:space-between; font-size:13.5px; flex-wrap:wrap; gap:10px; }
.foot-bottom a:hover{ color:#fff; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1040px){
  .hero .wrap{ grid-template-columns:1fr; gap:36px; padding-bottom:80px; }
  .hero-visual{ max-width:460px; }
  .hero-float.f1{ left:0; } .hero-float.f2{ right:0; }
  .prod-grid,.svc-grid,.sector-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .about-grid,.net-grid,.contact-grid{ grid-template-columns:1fr; gap:40px; }
  .partner-row{ grid-template-columns:repeat(3,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:34px; }
}
@media (max-width:860px){
  .nav-menu, .nav-phone, .nav-right .btn-primary, .topbar-info span.hide-sm{ display:none; }
  .hamburger{ display:block; }
  .nav-menu.open{
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    background:#fff; padding:14px 20px 22px; gap:2px; box-shadow:var(--shadow); border-top:1px solid var(--line);
  }
  .nav-menu.open a{ padding:13px 14px; border-radius:8px; font-size:16px; }
  .nav-menu.open a:hover{ background:var(--bg-soft); }
  .nav-menu.open .menu-cta{ display:flex; justify-content:center; margin-top:10px; color:#fff; }
  .nav-menu.open .menu-cta:hover{ background:var(--orange-dark); }
  .prod-layout{ grid-template-columns:minmax(0,1fr); }
  .prod-side, .prod-grid{ min-width:0; }
  .prod-side{ position:static; }
  .prod-side .cat-list{ display:flex; gap:8px; overflow-x:auto; padding:6px; min-width:0; }
  .prod-side h4{ display:none; }
  .cat-btn{ white-space:nowrap; }
  .stats-inner{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2){ border-right:none; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid var(--line-soft); }
}
@media (max-width:560px){
  .wrap{ padding:0 18px; }
  .section{ padding:70px 0; }
  .svc-grid,.prod-grid,.sector-grid,.why-grid,.partner-row,.field-row{ grid-template-columns:1fr; }
  .vm-row{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; }
  .topbar{ font-size:12.5px; }
  .topbar .wrap{ height:42px; }
  .topbar-info{ gap:16px; }
  .topbar-info a[href^="mailto"]{ display:none; }
  .news-form{ flex-direction:column; width:100%; } .news-form input{ width:100%; max-width:none; }
  .contact-form{ padding:26px; }
  .hero-float{ display:none; }
  .brand img{ height:38px; }
  .header.scrolled .brand img{ height:34px; }
  .hero-badge{ flex-wrap:wrap; row-gap:6px; font-size:12.5px; }
  .hero .wrap{ padding-top:54px; }
  .stat{ padding:24px 14px; }
  .stat .num{ font-size:34px; }
  .about-img-2{ width:108px; height:108px; left:-12px; top:-14px; }
  .about-badge{ right:8px; padding:18px 20px; }
  .about-badge b{ font-size:32px; }
}
@media (max-width:380px){
  .topbar-social a:nth-child(3){ display:none; }
}
