/* =========================================================
   Infonotics — Modern Product Site
   Brand green: #21c87a
   ========================================================= */

:root {
  --green: #21c87a;
  --green-dark: #16a862;
  --green-deep: #0e7a47;
  --green-soft: #e7fbf1;
  --green-glow: rgba(33, 200, 122, 0.35);

  --ink: #0a1712;
  --ink-2: #14261d;
  --slate: #4a5a52;
  --muted: #6b7c73;
  --line: #e6ece9;

  --bg: #ffffff;
  --bg-soft: #f4faf7;
  --bg-mint: #eefaf3;

  --white: #ffffff;

  --grad: linear-gradient(135deg, #21c87a 0%, #0e9f6e 100%);
  --grad-deep: linear-gradient(135deg, #0e7a47 0%, #063d24 100%);

  --shadow-sm: 0 2px 10px rgba(10, 23, 18, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 23, 18, 0.08);
  --shadow-lg: 0 30px 70px rgba(10, 23, 18, 0.14);
  --shadow-green: 0 18px 45px rgba(33, 200, 122, 0.35);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;

  --ff: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-display: "Space Grotesk", var(--ff);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 7px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section-pad { padding: 110px 0; }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }
.lead { font-size: 19px; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff); font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s cubic-bezier(.2,.7,.3,1); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 55px rgba(33,200,122,.45); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); background: var(--green-soft); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 12px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 22px; color: var(--ink); }
.brand .mark {
  width: 40px; height: 40px; border-radius: 11px; overflow: hidden;
  box-shadow: var(--shadow-green); background: #12a150; flex-shrink: 0;
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 15.5px; font-weight: 500; color: var(--ink-2); padding: 9px 16px; border-radius: 100px;
  transition: all .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); background: var(--green-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav .nav-cta .btn { display: none; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100vh;
    background: #fff; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
    padding: 90px 26px 40px; display: flex; flex-direction: column; gap: 6px; z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav-menu .nav-links a { padding: 14px 18px; font-size: 17px; }
  .nav-menu .btn { display: inline-flex; margin-top: 16px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,23,18,.4); opacity: 0; pointer-events: none; transition: .3s; z-index: 998; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (min-width: 941px) {
  .nav-menu { display: contents; }
  .nav-menu > .btn { display: none; } /* avoid duplicate Follow button; nav-cta shows it */
  .nav-backdrop { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 170px 0 110px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
}
.hero-bg .b1 { width: 520px; height: 520px; background: radial-gradient(circle, #7ff0bb, transparent 70%); top: -160px; right: -120px; }
.hero-bg .b2 { width: 460px; height: 460px; background: radial-gradient(circle, #b7f7d6, transparent 70%); top: 120px; left: -160px; opacity: .45; }
.hero-grid { position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px; opacity: .35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.6vw, 68px); margin-bottom: 22px; }
.hero p.lead { max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--ff-display); font-size: 30px; color: var(--ink); }
.hero-stats .stat span { font-size: 14px; color: var(--muted); }

/* Hero visual card */
.hero-visual { position: relative; }
.orb-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative; overflow: hidden;
}
.orb-card::before { content: ""; position: absolute; top: -40%; right: -30%; width: 320px; height: 320px; background: radial-gradient(circle, var(--green-glow), transparent 65%); }
.orb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; position: relative; }
.orb-head .dot3 { display: flex; gap: 6px; }
.orb-head .dot3 i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.orb-head .dot3 i:nth-child(1){ background:#ff5f57;} .orb-head .dot3 i:nth-child(2){ background:#febc2e;} .orb-head .dot3 i:nth-child(3){ background:#28c840;}
.orb-head small { color: var(--muted); font-size: 13px; margin-left: auto; }
.orb-row { display: flex; align-items: center; gap: 14px; padding: 15px; border-radius: 14px; background: var(--bg-soft); margin-bottom: 12px; position: relative; }
.orb-row .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #fff; flex-shrink: 0; font-size: 19px; }
.orb-row .ic.alt { background: var(--ink); }
.orb-row .ic.alt2 { background: linear-gradient(135deg,#7c3aed,#4f46e5); }
.orb-row h5 { font-family: var(--ff-display); font-size: 15px; }
.orb-row p { font-size: 13px; color: var(--muted); margin: 0; }
.orb-row .bar { margin-left: auto; font-size: 13px; font-weight: 700; color: var(--green-deep); }
.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
}
.float-badge .fdot { width: 30px; height: 30px; border-radius: 9px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; }
.float-badge.fb1 { top: -22px; right: 20px; animation: floaty 4s ease-in-out infinite; }
.float-badge.fb2 { bottom: -20px; left: -20px; animation: floaty 5s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* ---------- Trust / marquee ---------- */
.trust { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust p { text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; align-items: center; }
.trust-row span { font-family: var(--ff-display); font-weight: 700; font-size: 19px; color: #5b6f66; display: inline-flex; align-items: center; gap: 10px; }
.trust-row span img { width: 26px; height: 26px; object-fit: contain; }

/* Brand logo tile (real product-stack logos) */
.brand-tile { width: 60px; height: 60px; border-radius: 15px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 20px; }
.brand-tile img { width: 34px; height: 34px; object-fit: contain; }
.chip img { width: 15px; height: 15px; object-fit: contain; flex-shrink: 0; }

/* Store button */
.btn-store { background: var(--ink); color: #fff; padding: 12px 20px; font-size: 14.5px; }
.btn-store:hover { background: var(--ink-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-store i { font-size: 18px; }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: all .3s cubic-bezier(.2,.7,.3,1); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .card-ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep); font-size: 24px; margin-bottom: 20px;
  transition: .3s;
}
.card:hover .card-ic { background: var(--grad); color: #fff; box-shadow: var(--shadow-green); }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* ---------- Values / mission split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.split p { color: var(--slate); margin-bottom: 16px; }
.check-list { list-style: none; margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.check-list .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; flex-shrink: 0; font-size: 14px; font-weight: 700; }

.stat-panel { background: var(--grad-deep); border-radius: var(--radius-lg); padding: 44px; color: #fff; position: relative; overflow: hidden; }
.stat-panel::before { content: ""; position: absolute; top: -60px; right: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(33,200,122,.5), transparent 70%); }
.stat-panel .sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; position: relative; }
.stat-panel .sp b { font-family: var(--ff-display); font-size: 40px; display: block; }
.stat-panel .sp span { color: rgba(255,255,255,.75); font-size: 15px; }

/* ---------- Products ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .35s cubic-bezier(.2,.7,.3,1); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-top { padding: 30px 30px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.product-logo { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-size: 26px; box-shadow: var(--shadow-md); overflow: hidden; }
.product-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orb-row .ic { overflow: hidden; }
.orb-row .ic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: var(--green-soft); color: var(--green-deep); }
.product-tag.beta { background: #fff4e0; color: #b7791f; }
.product-tag.live { background: var(--green-soft); color: var(--green-deep); }
.product-body { padding: 22px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 24px; margin-bottom: 6px; }
.product-body .cat { font-size: 13px; color: var(--green-deep); font-weight: 600; margin-bottom: 14px; }
.product-body p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; flex: 1; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--bg-soft); color: var(--slate); border: 1px solid var(--line); }
.product-links { display: flex; gap: 10px; flex-wrap: wrap; }
.plink { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; color: var(--green-deep); }
.plink:hover { gap: 11px; }
.plink svg { width: 16px; height: 16px; }

/* ---------- Future / AI ---------- */
.dark-section { background: var(--ink); color: #fff; }
.dark-section h2, .dark-section h3, .dark-section h4 { color: #fff; }
.dark-section .section-head p { color: rgba(255,255,255,.65); }
.dark-section .eyebrow { background: rgba(33,200,122,.16); color: #8fefc0; }
.future-hero { padding: 170px 0 90px; overflow: hidden; position: relative; }
.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; }
.aurora .a1 { width: 500px; height: 500px; background: #21c87a; top: -140px; left: -80px; }
.aurora .a2 { width: 460px; height: 460px; background: #6d28d9; bottom: -160px; right: -60px; opacity: .3; }
.aurora .a3 { width: 380px; height: 380px; background: #0e9f6e; top: 40%; left: 45%; opacity: .25; }
.future-hero .container { position: relative; z-index: 1; }

.ai-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 30px; transition: .3s; backdrop-filter: blur(8px);
}
.ai-card:hover { border-color: rgba(33,200,122,.5); transform: translateY(-6px); background: rgba(33,200,122,.06); }
.ai-card .card-ic { background: rgba(33,200,122,.16); color: #8fefc0; }
.ai-card:hover .card-ic { background: var(--grad); color: #fff; }
.ai-card h3 { font-size: 20px; margin-bottom: 10px; }
.ai-card p { color: rgba(255,255,255,.62); font-size: 15px; }

.flagship {
  background: linear-gradient(135deg, rgba(33,200,122,.14), rgba(109,40,217,.12));
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 50px; position: relative; overflow: hidden;
}
.flagship .badge-soon { display: inline-block; background: rgba(33,200,122,.2); color: #8fefc0; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.flagship h2 { font-size: clamp(28px,4vw,44px); margin-bottom: 16px; }
.flagship p { color: rgba(255,255,255,.72); max-width: 620px; }

.timeline { display: grid; gap: 0; margin-top: 20px; }
.tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); }
.tl-item .tl-when { font-family: var(--ff-display); font-weight: 700; color: #8fefc0; font-size: 15px; }
.tl-item h4 { font-size: 18px; margin-bottom: 6px; }
.tl-item p { color: rgba(255,255,255,.6); font-size: 15px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { padding: 90px 0; }
.cta-inner {
  background: var(--grad); border-radius: var(--radius-lg); padding: 64px; text-align: center;
  color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-green);
}
.cta-inner::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 40%); }
.cta-inner h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; position: relative; }
.cta-inner p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; font-size: 18px; position: relative; }
.cta-inner .btn-white { position: relative; }

/* LinkedIn follow banner */
.li-banner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 40px; box-shadow: var(--shadow-sm); }
.li-banner .li-left { display: flex; align-items: center; gap: 20px; }
.li-banner .li-ic { width: 60px; height: 60px; border-radius: 15px; background: #0a66c2; color: #fff; display: grid; place-items: center; font-size: 30px; flex-shrink: 0; }
.li-banner h3 { font-size: 22px; margin-bottom: 4px; }
.li-banner p { color: var(--muted); font-size: 15px; }
.btn-linkedin { background: #0a66c2; color: #fff; }
.btn-linkedin:hover { background: #08579f; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(10,102,194,.35); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { padding: 160px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-banner h1 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 16px; }
.page-banner p { color: var(--muted); font-size: 19px; max-width: 620px; margin: 0 auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; margin-bottom: 16px; transition: .3s; }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.info-card h4 { font-size: 17px; margin-bottom: 3px; }
.info-card p { color: var(--muted); font-size: 15px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--ff);
  font-size: 15.5px; color: var(--ink); background: var(--bg-soft); transition: .2s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px var(--green-glow); }
.alert-success { display: none; background: var(--green-soft); color: var(--green-deep); border: 1px solid var(--green); padding: 14px 18px; border-radius: 12px; font-weight: 600; margin-top: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer h4 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .fdesc { font-size: 15px; max-width: 300px; margin-bottom: 22px; }
.footer .fcol h4 { font-size: 15px; margin-bottom: 18px; letter-spacing: .02em; }
.footer .fcol ul { list-style: none; display: grid; gap: 11px; }
.footer .fcol a { font-size: 15px; color: rgba(255,255,255,.62); transition: .2s; }
.footer .fcol a:hover { color: var(--green); }
.social { display: flex; gap: 12px; }
.social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; font-size: 18px; transition: .3s; }
.social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; color: rgba(255,255,255,.5); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.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; }

/* Scroll to top */
.to-top { position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-green); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .3s; z-index: 900; border: none; cursor: pointer; font-size: 20px; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section-pad { padding: 74px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-panel .sp-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner, .flagship { padding: 40px 26px; }
  .li-banner { padding: 26px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .hero-stats { gap: 26px; }
}
