/* ============ aroras.biz — Emerald design system ============ */
:root{
  --emerald:#0E9F6E;
  --forest:#046C4E;
  --mint:#F4F9F6;
  --mint-deep:#DCEEE4;
  --line:#DCEAE2;
  --ink:#1F2E2B;
  --ink-soft:#4A5B55;
  --ink-mute:#5B6E67;
  --white:#FFFFFF;
  --radius:12px;
  --shadow:0 2px 12px rgba(31,46,43,.06);
  --font-head:'Poppins',sans-serif;
  --font-body:'Inter',sans-serif;
  --wrap:1140px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--ink-soft);background:var(--white);font-size:16px;line-height:1.7;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--ink);line-height:1.25;font-weight:600}
h1{font-size:clamp(1.9rem,4.5vw,3rem)}
h2{font-size:clamp(1.5rem,3vw,2.1rem)}
h3{font-size:clamp(1.15rem,2vw,1.35rem)}
p{margin-bottom:1rem}
a{color:var(--forest);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}
section{padding:72px 0}
.section-mint{background:var(--mint)}
.eyebrow{display:inline-block;font-size:.75rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--forest);margin-bottom:.75rem}
.center{text-align:center}
.lead{font-size:1.1rem;max-width:680px}
.center .lead{margin-left:auto;margin-right:auto}

/* Buttons */
.btn{display:inline-block;padding:13px 26px;border-radius:9px;font-family:var(--font-head);font-weight:500;font-size:.95rem;transition:all .2s ease;cursor:pointer;border:1px solid transparent}
.btn:hover{text-decoration:none;transform:translateY(-1px)}
.btn-primary{background:var(--emerald);color:var(--white)}
.btn-primary:hover{background:var(--forest);color:var(--white)}
.btn-ghost{background:var(--white);color:var(--forest);border-color:#B5D6C6}
.btn-ghost:hover{background:var(--mint)}
.btn-invert{background:var(--white);color:var(--forest)}
.btn-invert:hover{background:var(--mint-deep)}

/* ============ Header ============ */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.94);backdrop-filter:blur(8px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:68px}
.brand{font-family:var(--font-head);font-weight:600;font-size:1.15rem;color:var(--ink)}
.brand:hover{text-decoration:none}
.brand span{color:var(--emerald)}
.nav-links{display:flex;align-items:center;gap:26px;list-style:none}
.nav-links a{font-size:.92rem;color:var(--ink-soft);font-weight:500}
.nav-links a:hover{color:var(--forest);text-decoration:none}
.nav-links a.active{color:var(--forest)}
.nav-links .btn{padding:9px 18px;font-size:.88rem}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.nav-toggle span{display:block;width:22px;height:2px;background:var(--ink);margin:5px 0;transition:.3s}

/* ============ Hero ============ */
.hero{background:var(--mint);padding:80px 0}
.hero-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:56px;align-items:center}
.hero h1{margin:.5rem 0 1.1rem}
.hero .lead{margin-bottom:1.75rem}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-photo{position:relative;justify-self:center}
.hero-photo img{width:min(320px,80vw);border-radius:20px;box-shadow:var(--shadow)}
.hero-photo::before{content:"";position:absolute;inset:18px -18px -18px 18px;background:var(--mint-deep);border-radius:20px;z-index:-1}
.hero-badge{position:absolute;bottom:-14px;left:50%;transform:translateX(-50%);background:var(--white);border:1px solid #B5D6C6;border-radius:24px;padding:7px 18px;font-size:.8rem;font-weight:600;color:var(--forest);white-space:nowrap;box-shadow:var(--shadow)}
.hero-badge svg{vertical-align:-2px;margin-right:5px}

/* Trust bar */
.trust{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--white);padding:20px 0}
.trust-row{display:flex;justify-content:center;align-items:center;gap:14px 40px;flex-wrap:wrap;font-size:.9rem;color:var(--ink-mute)}
.trust-row .logos{display:flex;align-items:center;gap:22px}
.trust-row .logos img{height:26px;width:auto}
.trust-row strong{color:var(--ink)}

/* ============ Cards & grids ============ */
.grid{display:grid;gap:20px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-5{grid-template-columns:repeat(5,1fr)}
.card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:26px;transition:box-shadow .2s ease,transform .2s ease}
.card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.card h3{margin:.9rem 0 .5rem;font-size:1.05rem}
.card p{font-size:.92rem;margin:0;color:var(--ink-mute)}
.icon-chip{width:46px;height:46px;border-radius:11px;background:var(--mint-deep);display:flex;align-items:center;justify-content:center;color:var(--emerald)}
.icon-chip svg{width:24px;height:24px}

/* Highlight band (white-label / on-premise) */
.highlight{background:linear-gradient(135deg,var(--forest),var(--emerald));border-radius:18px;padding:48px;color:#E7F6EE}
.highlight .eyebrow{color:#A9E3C8}
.highlight h2{color:var(--white)}
.highlight p{color:#D9F2E6}
.highlight-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:40px;align-items:center}
.highlight ul{list-style:none;margin-top:6px}
.highlight ul li{padding:7px 0 7px 30px;position:relative;font-size:.95rem;color:#E7F6EE}
.highlight ul li::before{content:"";position:absolute;left:0;top:12px;width:18px;height:18px;background:rgba(255,255,255,.18);border-radius:50%}
.highlight ul li::after{content:"";position:absolute;left:5px;top:17px;width:8px;height:5px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg)}
.highlight .btn{margin-top:20px}

/* Products */
.product-card{display:flex;flex-direction:column}
.product-card .logo-row{height:40px;display:flex;align-items:center;margin-bottom:14px}
.product-card .logo-row img{max-height:34px;width:auto}
.product-card ul{list-style:none;margin:14px 0 20px}
.product-card ul li{padding:6px 0 6px 28px;position:relative;font-size:.92rem}
.product-card ul li::before{content:"";position:absolute;left:0;top:11px;width:16px;height:16px;background:var(--mint-deep);border-radius:50%}
.product-card ul li::after{content:"";position:absolute;left:4px;top:15px;width:8px;height:5px;border-left:2px solid var(--forest);border-bottom:2px solid var(--forest);transform:rotate(-45deg)}
.product-card .btn{margin-top:auto;align-self:flex-start}
.shot{background:var(--mint);border:1px solid var(--line);border-radius:9px;padding:14px;text-align:center;font-size:.8rem;color:var(--forest);margin:6px 0 16px}

/* Blog cards */
.badge{display:inline-block;font-size:.72rem;font-weight:600;background:var(--mint-deep);color:var(--forest);padding:4px 12px;border-radius:14px;letter-spacing:.02em}
.post-card h3{font-size:1rem;margin:.8rem 0 .45rem;line-height:1.4}
.post-card .meta{font-size:.8rem;color:var(--ink-mute)}
.post-card a{color:inherit}
.post-card a:hover{color:var(--forest);text-decoration:none}

/* Timeline (About) */
.timeline{position:relative;max-width:760px;margin:0 auto;padding-left:34px}
.timeline::before{content:"";position:absolute;left:9px;top:6px;bottom:6px;width:2px;background:var(--mint-deep)}
.tl-item{position:relative;padding-bottom:44px}
.tl-item:last-child{padding-bottom:0}
.tl-item::before{content:"";position:absolute;left:-32px;top:6px;width:16px;height:16px;border-radius:50%;background:var(--emerald);border:3px solid var(--mint)}
.tl-item .year{font-family:var(--font-head);font-weight:600;color:var(--emerald);font-size:.9rem;letter-spacing:.04em}
.tl-item h3{margin:.3rem 0 .5rem}
.tl-item p{margin:0}

/* Services */
.service{display:grid;grid-template-columns:56px 1fr;gap:22px;background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:30px}
.service + .service{margin-top:20px}
.service p{margin-bottom:.6rem}
.service .fit{font-size:.86rem;color:var(--forest);font-style:italic;margin:0}
.service .price{font-size:.82rem;color:var(--ink-mute);margin:.35rem 0 0}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;counter-reset:step}
.step{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:22px;counter-increment:step}
.step::before{content:counter(step,decimal-leading-zero);font-family:var(--font-head);font-weight:600;color:var(--emerald);font-size:1.3rem;display:block;margin-bottom:8px}
.step h4{font-size:.98rem;margin-bottom:.35rem}
.step p{font-size:.86rem;margin:0}

/* CTA band */
.cta-band{background:var(--emerald);padding:56px 0}
.cta-band .inner{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.cta-band h2{color:var(--white);margin-bottom:.4rem}
.cta-band p{color:#D9F2E6;margin:0}

/* Glossary + resources */
.glossary{columns:2;column-gap:36px}
.g-term{break-inside:avoid;margin-bottom:22px}
.g-term dt{font-family:var(--font-head);font-weight:600;color:var(--ink);font-size:.98rem}
.g-term dd{font-size:.9rem;margin-top:.25rem}

/* Forms */
.form{max-width:560px}
.form label{display:block;font-size:.88rem;font-weight:500;color:var(--ink);margin:18px 0 6px}
.form input,.form textarea{width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:9px;font-family:var(--font-body);font-size:.95rem;color:var(--ink);background:var(--white)}
.form input:focus,.form textarea:focus{outline:2px solid var(--emerald);outline-offset:1px;border-color:var(--emerald)}
.form textarea{min-height:140px;resize:vertical}
.form .btn{margin-top:22px}
.form-note{font-size:.82rem;color:var(--ink-mute);margin-top:14px}

/* Article */
.article{max-width:720px;margin:0 auto}
.article .author{display:flex;align-items:center;gap:14px;margin:22px 0 34px;padding-bottom:24px;border-bottom:1px solid var(--line)}
.article .author img{width:52px;height:52px;border-radius:50%;object-fit:cover}
.article .author .name{font-weight:600;color:var(--ink);font-size:.94rem}
.article .author .meta{font-size:.82rem;color:var(--ink-mute)}
.article h2{margin:2.2rem 0 .8rem;font-size:1.45rem}
.article ul,.article ol{margin:0 0 1rem 1.4rem}
.article li{margin-bottom:.4rem}
.inline-cta{background:var(--mint);border:1px solid var(--line);border-radius:var(--radius);padding:24px;margin:2.2rem 0}
.inline-cta h3{margin-bottom:.4rem}
.inline-cta p{margin-bottom:1rem;font-size:.92rem}

/* Footer */
.site-footer{background:var(--mint);border-top:1px solid var(--line);padding:52px 0 30px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;margin-bottom:36px}
.footer-grid h4{font-size:.92rem;margin-bottom:.9rem}
.footer-grid ul{list-style:none}
.footer-grid li{margin-bottom:.55rem}
.footer-grid a{font-size:.88rem;color:var(--ink-mute)}
.footer-grid a:hover{color:var(--forest)}
.footer-brand p{font-size:.88rem;max-width:280px}
.footer-logos{display:flex;gap:18px;align-items:center;margin-top:14px;flex-wrap:wrap}
.footer-logos img{height:24px;width:auto;opacity:.85}
.footer-bottom{border-top:1px solid var(--line);padding-top:22px;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;font-size:.8rem;color:var(--ink-mute)}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
  .btn:hover,.card:hover{transform:none}
}

/* ============ Responsive ============ */
@media (max-width:1024px){
  .grid-5{grid-template-columns:repeat(3,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .highlight{padding:36px}
  .highlight-grid{grid-template-columns:1fr;gap:24px}
  section{padding:60px 0}
}
@media (max-width:768px){
  .hero{padding:56px 0}
  .hero-grid{grid-template-columns:1fr;gap:44px;text-align:center}
  .hero-actions{justify-content:center}
  .hero .lead{margin-left:auto;margin-right:auto}
  .grid-5,.grid-3,.grid-2{grid-template-columns:1fr}
  .glossary{columns:1}
  .service{grid-template-columns:1fr;gap:14px}
  .cta-band .inner{flex-direction:column;text-align:center}
  .nav-links{position:fixed;inset:68px 0 auto 0;background:var(--white);flex-direction:column;align-items:stretch;padding:18px 24px 26px;gap:4px;border-bottom:1px solid var(--line);transform:translateY(-130%);transition:transform .3s ease;box-shadow:var(--shadow)}
  .nav-links.open{transform:none}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:13px 6px;font-size:1rem}
  .nav-links .btn{text-align:center;margin-top:8px}
  .nav-toggle{display:block}
  .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 (max-width:480px){
  section{padding:48px 0}
  .steps{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .btn{width:100%;text-align:center}
  .hero-actions{flex-direction:column}
  .trust-row{gap:10px 20px;font-size:.82rem}
  .highlight{padding:28px 22px}
}
