:root{
  --bg:#ffffff;
  --ink:#0b0b0f;
  --muted:#6b7280;
  --line: #e5e7eb;
  --accent:#111827;
  --pill:#f5f5f5;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06), 0 2px 12px rgba(0,0,0,.04);
}


*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#f8fafc;   /* base */
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  position:relative;     /* enable ::before layering */
  overflow-x:hidden;
}

/* Fixed gradient canvas (stays put when scrolling) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(85% 75% at 70% 20%, rgba(16,185,129,.32), rgba(16,185,129,0) 70%), /* dominant green top-right */
    radial-gradient(90% 70% at 20% 80%, rgba(253,186,116,.25), rgba(253,186,116,0) 70%), /* orange bottom-left */
    radial-gradient(75% 60% at 15% 25%, rgba(16,185,129,.18), rgba(16,185,129,0) 70%),   /* extra green spread */
    linear-gradient(180deg,#ffffff 0%, #f8fafc 45%, #ffffff 100%);
  filter:saturate(1.05) brightness(1);
}




.container{max-width:1120px;margin:0 auto;padding:0 20px}

.site-header{
  position:fixed; inset:0 0 auto 0; height:64px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 20px;
  background:rgba(255,255,255,.58);
  backdrop-filter:saturate(1.6) blur(12px);
  -webkit-backdrop-filter:saturate(1.6) blur(12px);
  border-bottom:1px solid rgba(17,17,27,.08);
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  z-index:20;
}

.site-header img{display:block; height:30px; width:auto}

.brand{display:flex; align-items:center; gap:.6rem; color:inherit; text-decoration:none}
.logo{color:#111827}
.wordmark{font-weight:700; letter-spacing:.2px}

.nav a{
  color:var(--ink); opacity:.7; text-decoration:none; margin-left:18px; font-weight:500;
}
.nav a:hover{opacity:1}

/* desktop nav tweaks */
.nav { display:flex; align-items:center; gap:18px }
.nav-link { color:var(--ink); opacity:.7; text-decoration:none; font-weight:500 }
.nav-link:hover { opacity:1 }
.language-switcher { display:flex; align-items:center; }
.site-header .language-switcher { margin-left:auto; }

.language-switcher{ position:relative; }
.language-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 12px 8px 36px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 40px;
  min-width: 120px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.language-switcher select:hover {
  border-color: rgba(17, 24, 39, 0.2);
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.language-switcher select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* menu button (hidden on desktop) */
.menu-btn{
  display:none; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:10px; border:1px solid var(--line);
  background:#fff; color:#111827; box-shadow:0 4px 12px rgba(0,0,0,.06);
  position:relative; overflow:hidden;
  transition:transform .15s ease;
}
.menu-btn:active{ transform:translateY(1px) }

.menu-btn .bar{
  position:absolute; left:8px; right:8px; height:2px; border-radius:2px;
  background:#111827; transition:transform .22s ease, opacity .18s ease;
}
.menu-btn .bar:nth-child(1){ top:11px }
.menu-btn .bar:nth-child(2){ top:17px }
.menu-btn .bar:nth-child(3){ top:23px }

/* morph to X when open */
.menu-btn.is-open .bar:nth-child(1){ transform:translateY(6px) rotate(45deg) }
.menu-btn.is-open .bar:nth-child(2){ opacity:0 }
.menu-btn.is-open .bar:nth-child(3){ transform:translateY(-6px) rotate(-45deg) }

/* show hamburger, hide links on small screens */
@media (max-width: 760px){
  .nav-link{ display:none }
  .menu-btn{ display:inline-flex }
  .site-header .language-switcher{ display:none }
}

/* Sleek popover sheet */
.mobile-menu{
  position:fixed; top:64px; right:12px; width:min(86vw, 320px);
  background:#fff; border:1px solid var(--line); border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  padding:10px; z-index:25;
  opacity:0; transform:translateY(-8px) scale(.98); filter:blur(6px);
  transition:
    opacity .22s cubic-bezier(.2,.7,.2,1),
    transform .22s cubic-bezier(.2,.7,.2,1),
    filter .22s cubic-bezier(.2,.7,.2,1);
  pointer-events:none;
}
.mobile-menu.is-open{
  opacity:1; transform:translateY(0) scale(1); filter:blur(0);
  pointer-events:auto;
}

.m-link{
  display:block; padding:12px 12px; border-radius:10px; color:#0b0b0f; text-decoration:none; font-weight:700;
}
.m-link:hover{ background:#f5f5f5 }

/* Backdrop (for outside-click) with gentle fade */
.menu-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,0);
  transition:background .22s cubic-bezier(.2,.7,.2,1);
  z-index:24;
}
.menu-backdrop.is-open{ background:rgba(0,0,0,.06) }

/* Prevent scroll when open */
html.menu-open, body.menu-open{ overflow:hidden }

/* Reduced motion: simpler open */
@media (prefers-reduced-motion: reduce){
  .mobile-menu{ transition:none; filter:none; transform:none }
  .menu-backdrop{ transition:none }
}

.hero{
  display:block; padding-top:64px;
}

.qr-hero{
  min-height:calc(100dvh - 64px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  position:relative; text-align:center; gap:2rem; padding:40px 20px 72px;
}

.qr-headline h1{
  font-size:clamp(28px, 3.2vw, 44px);
  line-height:1.05; margin:0 0 .5rem; letter-spacing:-.02em;
}
.qr-headline p{
  margin:0; color:var(--muted); font-size:clamp(16px,1.8vw,18px)
}

/* Sleeker hero card */
.qr-card{
  display:flex; flex-direction:column; align-items:center; gap:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(248,250,252,.62));
  border:1px solid rgba(17,17,27,.08);
  border-radius:28px; padding:34px; max-width:760px; width:100%;
  position:relative; overflow:hidden;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow:
    0 24px 60px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.qr-card::after{
  content:""; position:absolute; inset:-2px; border-radius:28px; pointer-events:none; z-index:0;
  background:
    radial-gradient(420px 220px at 80% 15%, rgba(16,185,129,.18), transparent 60%),
    radial-gradient(380px 220px at 20% 85%, rgba(59,130,246,.12), transparent 60%);
  filter: blur(22px);
  opacity:.7;
}


/* QR stack with animated ring */
.qr-stack{position:relative; z-index:1; display:grid; place-items:center}
.qr-ring{
  position:absolute; width:380px; height:380px; border-radius:999px; z-index:-1;
  background: radial-gradient(circle, rgba(16,185,129,.15) 0%, rgba(16,185,129,0) 70%),
  radial-gradient(ellipse at 55% 45%, rgba(16,185,129,.16), rgba(16,185,129,0) 62%),
  radial-gradient(ellipse at 45% 55%, rgba(59,130,246,.08), rgba(59,130,246,0) 58%);

  animation:pulse 3.6s ease-in-out infinite;
  filter:saturate(1.1);
}

/* QR card itself */
.qr-media{
  display:inline-block; border-radius:20px; border:1px solid #e5e7eb; padding:10px;
  transition:transform .2s ease, box-shadow .2s ease;
  background:#fff; box-shadow:0 10px 28px rgba(0,0,0,.06);
  transform:perspective(800px) rotateX(0) rotateY(0);
}
.qr-media:hover{transform:perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-2px)}
.qr-media img{display:block; width:min(64vw,320px); height:auto; border-radius:12px}

.agent-pill {
  position: absolute;
  right: -6px;
  bottom: -10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px) saturate(1.4);
  border: 1px solid rgba(17,17,27,0.08);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
  color: #111827;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
  transform: translate(-6px,-18px);
  animation: floatY 4.8s ease-in-out infinite;
  z-index: 2;
}

.agent-pill img {
  display: block;
  border-radius: 4px;
}

.agent-label {
  font-weight: 600;
  margin-left: -4px;
}

/* Online dot */
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  position: relative;
}

.agent-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(34,197,94,.5);
  animation: pulseDot 1.8s ease-out infinite;
}



.qr-cta{display:flex; flex-direction:column; align-items:center; gap:.6rem; z-index:1}

/* Keyframes */
@keyframes pulse{
  0%,100%{transform:scale(1); opacity:.7}
  50%{transform:scale(1.06); opacity:1}
}
@keyframes floatY{
  0%,100%{transform:translate(-6px,-18px)}
  50%{transform:translate(-6px,-26px)}
}
@keyframes pulseDot{
  0%{transform:scale(.6); opacity:.9}
  100%{transform:scale(1.5); opacity:0}
}

/* Reveal on scroll */
.reveal{opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease}
.reveal.is-visible{opacity:1; transform:translateY(0)}


.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px; padding:0 16px; border-radius:12px; border:1px solid var(--accent);
  background:var(--accent); color:#fff; font-weight:600; text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
  box-shadow:0 6px 18px rgba(17,24,39,.18);
}
.btn:hover{transform:translateY(-1px)}
.hint{margin:0; color:var(--muted); font-size:14px}

.arrow-down{
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
  width:40px; height:40px; border-radius:999px; border:1px solid var(--line);
  background:#fff; color:#111827; display:grid; place-items:center; opacity:.7;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}
.arrow-down:hover{opacity:1}

.pill-row{
  list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
}
.highlights{
  padding:30px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.pill-row li{
  border-radius:999px; padding:10px 14px; font-weight:700; font-size:14px; color:#0f172a;
  border:1px solid rgba(17,17,27,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(248,250,252,.7));
  backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: 0 6px 16px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.7);
}
.pill-row li:nth-child(1),
.pill-row li:nth-child(3){
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(248,250,252,.76)),
    radial-gradient(60% 120% at 100% 0%, rgba(16,185,129,.14), transparent 60%);
}

.features{padding:80px 0}
.features h2{font-size:28px; letter-spacing:-.02em; margin:0 0 28px; text-align:center}
.features .grid{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px;
}
@media (max-width:900px){.features .grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){.features .grid{grid-template-columns:1fr}}

.card{
  position:relative; min-height:140px; padding:22px; border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,252,.72));
  border:1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow:0 12px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
}
.card::after{
  content:""; position:absolute; top:-1px; right:-1px; width:44px; height:44px; border-bottom-left-radius:14px; border-top-right-radius:18px;
  background:radial-gradient(60% 60% at 40% 40%, rgba(16,185,129,.18), transparent 70%);
  filter:blur(8px);
}

.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}

/* --- Testimonial Strip (marquee) --- */
.t-strip{
  padding:80px 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.9), rgba(255,255,255,0.95));
  border-top:1px solid var(--line);
}
.t-strip h2{
  margin:0 0 48px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing:-0.03em;
  text-align:center;
  color: #0f172a;
}
.testimonials{
  background: transparent;
  padding: 80px 0;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

.marquee{
  overflow:hidden; position:relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.track{
  display:flex; gap:24px; align-items:stretch;
  width:max-content;
  animation:strip-scroll 32s linear infinite;
}
.marquee:hover .track{ animation-play-state: paused; }

.t-chip{
  flex:0 0 auto;
  width: 400px;
  max-width: 85vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  border: 1px solid rgba(17,17,27,.06);
  box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
}

.t-chip:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.04);
}

.t-chip img{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.t-quote{
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-meta{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.t-name{
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}

.t-meta span:not(.t-name) {
  font-size: 13px;
  color: #64748b;
  opacity: 0.9;
}

/* marquee keyframes */
@keyframes strip-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* because we duplicated items */
}


/* Mobile: slower + easier touch scroll */
@media (max-width:640px){
  .track{ gap:12px; animation-duration: 40s; }
  .t-chip{ width:88vw; }
}

.site-footer{
  padding:32px 0;
  background:rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top:1px solid rgba(17,17,27,.10);
}
.footer-grid{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.f-right{display:flex; align-items:center; flex-wrap:wrap; gap:8px 16px}
.f-right .footer-language{margin-left:8px}
.footer-language select{min-width:100px}
@media (max-width:640px){
  .f-right{gap:8px 12px}
  .f-right .footer-language{margin-left:0; margin-top:8px; width:100%}
}
.f-right a{color:var(--muted); text-decoration:none; margin-left:16px}
.f-right a:hover{color:var(--ink)}
.subtle{color:var(--muted); margin:.25rem 0 0}

/* Reduced motion: kill non-essential animations */
@media (prefers-reduced-motion: reduce){
  .qr-ring,
  .agent-pill,
  .agent-online::after { animation: none !important; }
  .track { animation: none !important; }
}

/* ==================== Login Dropdown Styles ==================== */
.login-dropdown {
  position: relative;
  margin-left: 8px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  color: #0b0b0f;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.login-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0.08));
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
  transform: translateY(-1px);
}

.login-btn:active {
  transform: translateY(0);
}

.login-btn .login-icon {
  stroke-width: 2;
  color: #10b981;
}

.login-btn.is-authenticated {
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.login-btn.is-authenticated:hover {
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.login-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.login-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.login-meta-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.login-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: #0b0b0f;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.login-chevron {
  margin-left: auto;
  color: #9ca3af;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.login-btn.panel-open .login-chevron {
  transform: rotate(180deg);
}

.login-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 18px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 24px;
  z-index: 100;
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transition: 
    opacity 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.login-panel:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.login-panel.account-mode {
  width: 300px;
  padding: 22px;
  border-color: rgba(17, 24, 39, 0.1);
}

.login-panel.account-mode .account-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.account-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.account-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}

.account-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.account-email {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  word-break: break-word;
}

.account-helper {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.account-action.primary {
  border: none;
  color: #ffffff;
  margin-left: 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.account-action.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.account-action.secondary {
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: #1f2937;
}

.account-action.secondary:hover {
  border-color: rgba(15, 23, 42, 0.3);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 4px;
  background: rgba(243, 244, 246, 0.6);
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab:hover {
  color: #374151;
}

.auth-tab.active {
  background: #ffffff;
  color: #10b981;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.auth-form-content {
  display: none;
}

.auth-form-content.active {
  display: block;
}

.login-form h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0b0b0f;
  letter-spacing: -0.01em;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(229, 231, 235, 0.8);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 14px;
  color: #0b0b0f;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.6);
  background: #ffffff;
  box-shadow: 
    0 0 0 3px rgba(16, 185, 129, 0.1),
    0 4px 12px rgba(16, 185, 129, 0.06);
}

.form-group input::placeholder {
  color: #9ca3af;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 
    0 4px 12px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 
    0 6px 16px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.error-msg {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .login-dropdown {
    position: static;
  }

  html.login-panel-open,
  body.login-panel-open {
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .login-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 98;
  }

  .login-panel-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .login-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    padding: 24px;
    margin: 0;
    box-shadow:
      0 -12px 32px rgba(15, 23, 42, 0.18),
      0 -4px 12px rgba(15, 118, 110, 0.16),
      inset 0 1px 0 rgba(255,255,255,0.25);
    transform: translateY(100%);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 99;
  }

  .login-panel:not([hidden]) {
    opacity: 1;
    transform: translateY(100%);
    pointer-events: auto;
  }

  .login-panel.is-open {
    transform: translateY(0);
  }

  .login-panel.account-mode {
    padding: 22px;
    border-radius: 20px 20px 0 0;
  }
}
/* ==================== End Login Dropdown Styles ==================== */

/* ==================== Value Proposition Section ==================== */
.value-prop {
  padding: 80px 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.value-prop h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.2;
}

.value-prop-intro {
  text-align: center;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.value-prop-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  gap: 14px;
}

.value-prop-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,252,.72));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
  font-weight: 600;
  color: #0f172a;
}

/* Removed .value-prop-list li::before as we now use inline SVGs */

/* ==================== Use Cases Section ==================== */
.use-cases {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.use-cases h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  text-align: center;
}

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

@media (max-width: 900px) {
  .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .use-case-grid { grid-template-columns: 1fr; }
}

.use-case-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,252,.72));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
}

.use-case-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(16,185,129,.06));
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #10b981;
}

.use-case-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* ==================== How It Works Section ==================== */
.how-it-works {
  padding: 80px 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.how-it-works h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 44px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,252,.72));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
}

.step-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(16,185,129,.35);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ==================== Integrations Section ==================== */
.integrations {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.integrations h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}

.integrations-subtext {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 36px;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.integration-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,252,.72));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 120px;
  min-height: 140px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  max-width: 200px;
}

.integration-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
}

.integration-logo span {
  font-weight: 600;
  font-size: 13px;
  color: #374151;
  text-align: center;
}

.integration-logo small {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}

.integration-logo.integration-custom {
  max-width: 240px;
  gap: 6px;
  flex: 2;
}

.integration-logo.integration-custom span {
  font-size: 14px;
}

.integration-logo.integration-custom small {
  font-size: 12px;
}

/* ==================== CTA Bottom Section ==================== */
.cta-bottom {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(16,185,129,.06), rgba(16,185,129,.02));
  border-top: 1px solid rgba(16,185,129,.15);
}

.cta-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-bottom h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta-bottom p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 28px;
  line-height: 1.5;
}

.btn-large {
  height: 52px;
  padding: 0 28px;
  font-size: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(17,24,39,.22);
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #059669;
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 14px 36px rgba(16,185,129,.28);
}

/* ==================== FAQ Section ==================== */
.faq {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.8), rgba(255,255,255,0.9));
  backdrop-filter: blur(12px);
}

.faq h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-align: center;
  color: #0f172a;
}

.faq-subtitle {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(17,17,27,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(16,185,129,.2);
  box-shadow: 0 8px 24px rgba(16,185,129,.08);
}

.faq-item[open] {
  background: rgba(255,255,255,1);
  border-color: rgba(16,185,129,.25);
  box-shadow: 0 12px 32px rgba(16,185,129,.1);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #0f172a;
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(16,185,129,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item[open] summary::after {
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  animation: faqFadeIn 0.25s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ==================== End New Sections ==================== */

/* ==================== Value Prop List with Icons ==================== */
.value-prop-list .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #0daf70);
  box-shadow: 0 4px 12px rgba(16,185,129,.25);
}

.value-prop-list .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
/* ==================== End Value Prop List ==================== */

/* ==================== Use Cases Intro ==================== */
.use-cases-intro {
  text-align: center;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
/* ==================== End Use Cases Intro ==================== */

/* ==================== Product Demo Preview Section ==================== */
.demo-preview {
  padding: 80px 0;
  background: rgba(248,250,252,.75);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.demo-preview h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-align: center;
}

.demo-preview .intro {
  text-align: center;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.demo-placeholder {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,250,252,.8));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  padding: 24px;
}

.demo-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: var(--accent);
  opacity: 0.7;
}

.demo-placeholder img,
.demo-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
/* ==================== End Demo Preview ==================== */

/* ==================== Trust Badges Section ==================== */
.trust-badges {
  padding: 80px 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.trust-badges h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,250,252,.72));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
}

.trust-badge .badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #0daf70);
  box-shadow: 0 4px 12px rgba(16,185,129,.25);
}

.trust-badge .badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.trust-badge strong {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.trust-badge span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
/* ==================== End Trust Badges ==================== */

/* ==================== Pricing Section ==================== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(16,185,129,.06), rgba(248,250,252,.75));
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.pricing-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.pricing-section .intro {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.pricing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pricing-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-section .btn-primary {
  background: linear-gradient(180deg, #25D366, #20bd5a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}

.pricing-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

.pricing-section .btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,250,252,.8));
  color: #0f172a;
  border: 1px solid rgba(17,17,27,.1);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.pricing-section .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.pricing-section .btn svg {
  width: 20px;
  height: 20px;
}
/* ==================== End Pricing Section ==================== */

/* ==================== Contact Page Styles ==================== */
.page-content {
  min-height: calc(100vh - 200px);
  padding-top: 80px;
}

.contact-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #0f172a, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-intro {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-main {
  padding: 40px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-form-wrapper h2,
.contact-info h2 {
  font-size: 20px;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(17,17,27,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.9));
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}

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

.contact-form .btn-primary {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, var(--accent), #0daf70);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-method {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(248,250,252,.75));
  border: 1px solid rgba(17,17,27,.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.6);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16,185,129,.1);
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--accent);
}

.contact-method strong {
  font-size: 15px;
  color: #0f172a;
  display: block;
  margin-bottom: 4px;
}

.contact-method p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #0daf70;
}

.contact-cta {
  margin-top: auto;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(16,185,129,.04));
  border: 1px solid rgba(16,185,129,.15);
  text-align: center;
}

.contact-cta p {
  margin: 0 0 16px;
  font-size: 15px;
  color: #0f172a;
}

.contact-cta .btn-secondary {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,250,252,.85));
  color: #0f172a;
  border: 1px solid rgba(17,17,27,.1);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-cta .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
/* ==================== End Contact Page ==================== */

/* ==================== Blog Carousel Section ==================== */
.blog-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.blog-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  text-align: center;
}

.blog-carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 20px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.blog-carousel {
  display: flex;
  gap: 24px;
  padding: 4px; /* space for shadow */
}

.blog-carousel .blog-card {
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,250,252,.85));
  border: 1px solid rgba(17,17,27,.08);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-carousel .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.blog-carousel .blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(16,185,129,.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-carousel .blog-card-image svg {
  width: 48px;
  height: 48px;
  stroke: #10b981;
  opacity: 0.6;
}

.blog-carousel .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-carousel .blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-carousel .blog-card-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.blog-carousel .blog-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.blog-carousel .blog-card h3 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-carousel .blog-card h3 a:hover {
  color: #10b981;
}

.blog-carousel .blog-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-carousel .blog-card .read-more {
  font-size: 14px;
  font-weight: 500;
  color: #10b981;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-carousel .blog-card .read-more:hover {
  color: #0daf70;
}

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

.blog-cta .btn-secondary {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,250,252,.85));
  color: #0f172a;
  border: 1px solid rgba(17,17,27,.1);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.integration-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(16,185,129,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0  2px 4px -1px rgba(0, 0, 0, 0.03);
}

.integration-custom:hover {
  background: #ffffff;
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1), 0 4px 6px -2px rgba(16, 185, 129, 0.05);
}

.integration-custom svg {
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
  transition: transform 0.3s ease;
}

.integration-custom:hover svg {
  transform: scale(1.1);
}

.integration-custom span {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.integration-custom small {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

