@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root{
  --bg:#0b0f1a;
  --surface:#0f1629;
  --surface-2:#131b32;
  --text:#e6ecff;
  --muted:#a3b1d6;
  --primary:#4f7cff;
  --primary-600:#3b68f0;
  --accent:#4fd1ff;
  --stroke:#1f2a44;
  --radius:20px;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --max:1240px;
  --header-height:84px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth; background:var(--bg);}
body{
  margin:0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  padding-top:var(--header-height);
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
}

body.page-transition{
  position:relative;
}

.cursor-dot{
  position:fixed;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 16px rgba(79,70,229,0.4);
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%, -50%);
  transition:width 0.2s ease, height 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
  opacity:0;
}
.cursor-dot::before{
  content:"";
  position:absolute;
  inset:-10px;
  border:2px solid var(--primary);
  border-radius:50%;
  opacity:0.3;
  animation:cursorPulse 2s ease-out infinite;
}

@keyframes cursorPulse{
  0%{transform:scale(0.8); opacity:1}
  100%{transform:scale(1.5); opacity:0}
}
body.page-transition::before{
  content:"";
  position:fixed;
  inset:0;
  background:var(--bg);
  opacity:1;
  pointer-events:none;
  transition:opacity .5s ease;
  z-index:9999;
}
body.page-transition.is-ready::before{
  opacity:0;
}
body.page-transition.is-exiting::before{
  opacity:1;
}


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

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0; background:transparent}
.section-alt{background:transparent}
.lead{color:var(--muted); font-size:1.05rem}
.muted{color:var(--muted)}
.fineprint{color:var(--muted); font-size:.92rem}
.eyebrow{color:var(--accent); letter-spacing:.18em; text-transform:uppercase; font-size:.75rem; font-weight:700}
.hero-brand{
  font-size:1.65rem;
  letter-spacing:.35em;
  font-weight:800;
  color:var(--text);
  animation:heroFloat 3s ease-in-out infinite;
  text-transform:uppercase;
  display:inline-block;
  position:relative;
}
.hero-brand::after{display:none}

@keyframes heroFloat{
  0%,100%{transform:translateY(0) rotate(0deg); filter:drop-shadow(0 4px 12px rgba(79,70,229,0.25))}
  25%{transform:translateY(-3px) rotate(-1deg); filter:drop-shadow(0 6px 18px rgba(79,70,229,0.35))}
  50%{transform:translateY(0) rotate(0deg); filter:drop-shadow(0 4px 12px rgba(79,70,229,0.25))}
  75%{transform:translateY(-3px) rotate(1deg); filter:drop-shadow(0 6px 18px rgba(20,184,166,0.35))}
}
@keyframes heroLineSlide{
  0%,100%{transform:translateX(0); opacity:0.8}
  50%{transform:translateX(20px); opacity:1}
}
.hero-rotating-service{
  margin:24px 0 28px;
  max-width:820px;
  min-height:90px;
  display:flex;
  align-items:center;
}
.rotating-service-wrapper{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
}
.service-icon{
  color:var(--primary);
  font-size:1.6rem;
  flex-shrink:0;
}
.rotating-service-text{
  font-size:1.75rem;
  font-weight:700;
  line-height:1.4;
  background:linear-gradient(135deg, var(--text) 0%, var(--text) 50%, var(--primary) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  transition:opacity 300ms ease, transform 300ms ease;
  filter:drop-shadow(0 2px 8px rgba(79,70,229,0.15));
}
.rotating-service-text.is-exiting{
  opacity:0;
  transform:translateY(-6px);
}
.rotating-service-text.is-entering{
  opacity:1;
  transform:translateY(0);
}

.load-reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
body.is-loaded .load-reveal{
  opacity:1;
  transform:translateY(0);
}

.timeline{
  position:relative;
  margin:22px 0 24px;
  padding-left:22px;
  display:grid;
  gap:18px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:6px;
  top:6px;
  bottom:6px;
  width:2px;
  background:linear-gradient(180deg, rgba(79,70,229,.35), rgba(20,184,166,.2));
}
.timeline-item{
  position:relative;
  padding-left:18px;
}
.timeline-item .h4{margin:0 0 6px}
.timeline-item .muted{margin:0}
.timeline-dot{
  position:absolute;
  left:-2px;
  top:6px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 6px rgba(79,70,229,.12);
}

.split-sections{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:48px;
  align-items:stretch;
}
.split-sections .intro{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
.split-sections .timeline{margin:16px 0 20px}
.split-sections .btn{margin-top:auto}

@media (max-width: 768px){
  .split-sections{grid-template-columns:1fr; gap:32px}
}
.h3{font-size:1.25rem}
.h4{font-size:1.1rem}

/* ===== HEADER SCROLL STATE (MUST BE LAST) ===== */

.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1100;
  background:transparent;
  backdrop-filter: none;
  border-bottom:none;
  box-shadow:none;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  transition:background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.site-header .container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}
.site-header.is-scrolled{
  background:linear-gradient(180deg, 
    rgba(11,15,26,0.95) 0%, 
    rgba(15,21,38,0.92) 50%, 
    rgba(10,14,24,0.90) 100%
  );
  box-shadow:0 4px 24px rgba(0,0,0,0.4),
             0 1px 0 rgba(79,124,255,0.08);
}

/* Desktop only: enable blur for glassmorphism effect */
@media (min-width: 769px){
  .site-header.is-scrolled{
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  padding:16px 0;
  min-height:var(--header-height);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:transform .25s ease, opacity .25s ease;
}
.brand-logo{
  width:150px;
  height:auto;
  max-height:100%;
  object-fit:contain;
  display:block;
}
.brand-mark{
  color:var(--primary);
  line-height:1;
  font-size:1.45rem;
  transform:translateY(-1px);
}
.brand-name{
  font-family:"Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  letter-spacing:.18em;
  font-size:1.2rem;
  line-height:1;
}
.brand:hover{transform:translateY(-1px); opacity:.92}

.nav{
  display:flex;
  justify-content:flex-end;
  gap:6px;
  align-items:center;
  padding:0;
  margin-left:auto;
  border-radius:0;
  border:none;
  background:transparent;
  box-shadow:none;
}
.nav-item{position:relative; display:flex; align-items:center}
.nav-caret{
  margin-left:6px;
  font-size:.85em;
  opacity:.7;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-link{
  position:relative;
  padding:10px 16px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:color .26s ease, background-color .26s ease, transform .26s ease, border-color .26s ease, box-shadow .26s ease;
  text-align:center;
  line-height:1;
  font-size:1.08rem;
  font-weight:500;
  letter-spacing:.02em;
}
.nav-link::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:rgba(79,70,229,.12);
  opacity:0;
  transform:scale(.98);
  transition:opacity .26s ease, transform .26s ease;
  z-index:-1;
}
.nav-link:hover{
  color:var(--text);
  border-color:rgba(37,48,77,.9);
  transform:translateY(-2px);
  box-shadow:0 10px 18px rgba(15,23,42,.08);
}
.nav-item:hover .nav-caret{transform:translateY(1px); opacity:1}
.nav-item.has-dropdown .nav-link{padding-right:18px}
.nav-item.has-dropdown::after{
  content:"";
  position:absolute;
  left:-6px;
  right:-6px;
  top:100%;
  height:12px;
}
.nav-dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:320px;
  padding:12px;
  border-radius:16px;
  background:var(--surface);
  border:1px solid rgba(37,48,77,.9);
  box-shadow:0 18px 40px rgba(15,23,42,.12);
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:60;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.nav-dropdown-section{
  margin-bottom:8px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(79,124,255,0.1);
}
.nav-dropdown-section:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}
.nav-dropdown-label{
  display:block;
  padding:6px 12px 8px;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--primary);
  opacity:0.8;
}
.nav-dropdown-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:10px;
  font-size:.92rem;
  color:var(--text);
  transition:background-color .2s ease, color .2s ease, transform .2s ease;
}
.nav-dropdown-item:hover{
  background:rgba(79,124,255,.1);
  color:var(--primary);
  transform:translateX(4px);
}
.nav-dropdown-icon{
  font-size:1rem;
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.nav-dropdown-text{
  flex:1;
  line-height:1.35;
}
.nav-link:hover::before{
  opacity:1;
  transform:scale(1);
}
.nav-link.is-active{
  color:var(--primary);
  background:linear-gradient(90deg, rgba(79,70,229,.12), rgba(20,184,166,.12));
  border-color:transparent;
  box-shadow:none;
  font-weight:600;
}
.nav-link:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(79,70,229,.18);
  border-color:rgba(79,70,229,.35);
}

.header-actions{display:flex; gap:12px; align-items:center; justify-content:flex-end}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:999px; border:1px solid var(--stroke);
  background:var(--surface); color:var(--text); font-weight:600; gap:8px;
  font-size:1rem;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow)}
.btn-primary{background:var(--primary); color:#fff; border-color:transparent}
.btn-primary:hover{background:var(--primary-600)}
.btn-secondary{background:rgba(20,184,166,.14); border-color:rgba(20,184,166,.3)}
.btn-outline{background:transparent; border-color:rgba(79,70,229,.3); color:var(--primary)}
.btn-ghost{background:transparent; border-color:transparent; color:var(--muted)}
.w-full{width:100%}

.site-header .btn-primary{
  padding:10px 18px;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  border:1px solid transparent;
  box-shadow:0 10px 24px rgba(79,70,229,.2);
  font-weight:600;
  letter-spacing:.01em;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.site-header .btn-primary:hover{
  transform:translateY(-1px);
  background:var(--primary-600);
  box-shadow:0 12px 26px rgba(79,70,229,.24);
}

.page-bg-animated{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  will-change:transform;
}
.page-bg-animated canvas{
  width:100%;
  height:100%;
  display:block;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}

/* Mobile: Use static CSS gradient instead of canvas to prevent flickering */
@media (max-width: 768px){
  .page-bg-animated{
    background:
      radial-gradient(ellipse 90% 60% at 50% -10%, rgba(79,124,255,0.12) 0%, transparent 50%),
      radial-gradient(ellipse 80% 50% at 20% 80%, rgba(79,209,255,0.08) 0%, transparent 50%),
      linear-gradient(180deg, var(--bg) 0%, #080c18 100%);
  }
  .page-bg-animated canvas{
    display:none;
  }
}

.hero{padding:120px 0 60px; position:relative; z-index:1}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:auto auto;
  gap:48px;
  align-items:stretch;
}
.hero-grid{position:relative; z-index:1}
.hero.hero-solo .hero-grid{grid-template-columns:1fr}
.hero-copy h1{font-size:clamp(2.2rem, 4vw, 3.4rem); margin:.4rem 0 1rem}
.hero-subtitle{color:var(--muted); font-weight:600; margin:0 0 6px}
.hero-actions{display:flex; gap:12px; margin:20px 0 18px; flex-wrap:wrap}
.hero-actions-center{
  grid-column:1;
  grid-row:2;
  justify-content:flex-start;
  margin:0;
  position:relative;
  top:0;
  z-index:3;
}
.hero-actions-center .btn{
  padding:14px 28px;
  font-size:1.12rem;
  font-weight:700;
  box-shadow:0 14px 28px rgba(79,70,229,.22);
}
.hero-actions-center .btn-primary{
  background:linear-gradient(135deg, #4f7cff 0%, #5a66ff 100%);
  background-color:#4f7cff;
  box-shadow:0 18px 36px rgba(79,70,229,.35);
  transition:transform .26s ease, box-shadow .26s ease;
}
.hero-actions-center .btn-primary:hover,
.hero-actions-center .btn-primary:focus,
.hero-actions-center .btn-primary:active{
  background:linear-gradient(135deg, #4f7cff 0%, #5a66ff 100%);
  background-color:#4f7cff;
  color:#fff;
}
.hero-actions-center .btn-outline{
  border-color:rgba(79,70,229,.45);
  background:rgba(12,18,34,0.5);
}
.hero-actions .btn{
  position:relative;
  padding:12px 24px;
  border-radius:999px;
  transition:color .26s ease, background-color .26s ease, transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.hero-actions .btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:rgba(79,70,229,.08);
  opacity:0;
  transform:scale(.98);
  transition:opacity .26s ease, transform .26s ease;
  z-index:-1;
}
.hero-actions .btn-primary::before{
  display:none;
}
.hero-actions .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 18px rgba(15,23,42,.08);
}
.hero-actions .btn:hover::before{
  opacity:1;
  transform:scale(1);
}
.hero-actions .btn-primary:hover{
  background:var(--primary-600);
  box-shadow:0 10px 20px rgba(79,70,229,.25);
}
.hero-actions .btn-outline:hover{
  border-color:rgba(79,70,229,.5);
  color:var(--primary-600);
}
.btn-white{
  color:#fff !important;
  border-color:rgba(255,255,255,0.6) !important;
}
.btn-white:hover{
  color:#fff !important;
  border-color:rgba(255,255,255,0.9) !important;
}

.service-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 16px;
  justify-content:flex-start;
}
.service-tab{
  border:1px solid transparent;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(15,22,41,0.95) 0%, rgba(20,30,55,0.9) 100%);
  color:var(--muted);
  padding:12px 18px;
  font-size:.88rem;
  font-weight:600;
  cursor:pointer;
  transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align:left;
  display:inline-flex;
  align-items:center;
  gap:10px;
  line-height:1.2;
  box-shadow:0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(10px);
}
.service-tab::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:12px;
  padding:1px;
  background:linear-gradient(135deg, rgba(79,124,255,0.3) 0%, rgba(79,209,255,0.1) 50%, rgba(79,124,255,0.2) 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0.6;
  transition:opacity .3s ease;
}
.service-tab-icon{
  font-size:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  background:linear-gradient(135deg, rgba(79,124,255,0.2) 0%, rgba(79,209,255,0.15) 100%);
  border-radius:8px;
  flex-shrink:0;
  transition:all .3s ease;
}
.service-tab-text{
  white-space:nowrap;
}
.service-tab.is-active{
  background:linear-gradient(135deg, rgba(79,124,255,0.15) 0%, rgba(20,30,55,0.95) 100%);
  color:#fff;
}
.service-tab.is-active::before{
  opacity:1;
  background:linear-gradient(135deg, rgba(79,124,255,0.5) 0%, rgba(79,209,255,0.3) 50%, rgba(79,124,255,0.4) 100%);
}
.service-tab.is-active .service-tab-icon{
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.service-tab:hover{
  transform:translateY(-2px);
  color:var(--text);
  box-shadow:0 6px 24px rgba(79,124,255,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-tab:hover::before{
  opacity:0.9;
}
.service-tab:hover .service-tab-icon{
  transform:scale(1.05);
}
.service-tab-panels{
  min-height:72px;
  color:var(--muted);
}
.service-tab-panel{
  opacity:0;
  transform:translateY(8px);
  transition:opacity .3s ease, transform .3s ease;
  position:absolute;
  left:0;
  right:0;
}
.service-tab-panels{position:relative}
.service-tab-panel.is-active{
  opacity:1;
  transform:translateY(0);
  position:relative;
}

.hero-copy{display:contents}
.hero-top{grid-column:1; grid-row:1}
.hero-bottom{grid-column:1; grid-row:2}
.hero-visual{
  position:relative;
  z-index:1;
  grid-column:2;
  grid-row:1 / 3;
  align-self:stretch;
  padding-bottom:0;
}
.team-image-wrapper{
  position:relative;
  width:100%;
  height:100%;
  min-height:0;
  overflow:hidden;
  border-radius:38px;
}
.team-image{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:38px;
  animation:floatSoft 8s ease-in-out infinite;
  box-shadow:0 28px 70px rgba(0,0,0,0.45), 
             0 0 0 1px rgba(79,124,255,0.12),
             inset 0 0 0 1px rgba(255,255,255,0.06);
  transform:translateY(0);
}
.team-image-wrapper::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:38px;
  box-shadow:inset 0 0 12px rgba(0,0,0,0.12);
  filter:blur(0.8px);
  pointer-events:none;
}
@keyframes floatSoft{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.team-image-wrapper::before{
  content:"";
  position:absolute;
  inset:-25px;
  border-radius:38px;
  background:linear-gradient(135deg, rgba(79,124,255,0.16), rgba(79,209,255,0.08));
  animation:floatSoft 8s ease-in-out infinite;
  z-index:-1;
  filter:blur(28px);
}

.split-sections .btn{
  position:relative;
  padding:12px 24px;
  border-radius:999px;
  font-size:1rem;
  transition:color .26s ease, background-color .26s ease, transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.split-sections .btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:rgba(79,70,229,.08);
  opacity:0;
  transform:scale(.98);
  transition:opacity .26s ease, transform .26s ease;
  z-index:-1;
}
.split-sections .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 18px rgba(15,23,42,.08);
}
.split-sections .btn:hover::before{
  opacity:1;
  transform:scale(1);
}
.split-sections .btn-primary:hover{
  background:var(--primary-600);
  box-shadow:0 10px 20px rgba(79,70,229,.25);
}
.split-sections .btn-outline:hover{
  border-color:rgba(79,70,229,.5);
  color:var(--primary-600);
}
.pill-row{display:flex; flex-wrap:wrap; gap:10px}
.pill{padding:8px 12px; border-radius:999px; background:rgba(12,18,34,0.7); backdrop-filter:blur(8px); border:1px solid var(--stroke); color:var(--muted); font-size:.9rem}
.hero-media{position:relative}
.hero-card{
  background:rgba(15,20,35,0.85); backdrop-filter:blur(10px); border:1px solid var(--stroke); border-radius:var(--radius);
  padding:22px; box-shadow:var(--shadow); position:relative; z-index:1;
}
.hero-shape{
  position:absolute; inset:auto -30px -30px auto; width:200px; height:200px;
  background:radial-gradient(circle at 30% 30%, rgba(79,70,229,.25), transparent 70%),
             radial-gradient(circle at 70% 70%, rgba(20,184,166,.25), transparent 70%);
  border-radius:50%; z-index:0;
}

.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:6px 0}

.grid{display:grid; gap:18px}
.cards{grid-template-columns: repeat(3, minmax(0, 1fr))}
.card{
  position:relative;
  border:1px solid var(--stroke); border-radius:var(--radius); background:rgba(15,20,35,0.85);
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow); padding:18px;
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:rgba(79,70,229,.08);
  opacity:0;
  transform:scale(.98);
  transition:opacity .26s ease, transform .26s ease;
  z-index:0;
}
.card > *{position:relative; z-index:1}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(15,23,42,.12);
  border-color:rgba(79,70,229,.25);
}
.card:hover::before{
  opacity:1;
  transform:scale(1);
}
.card-link{
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}
.card-link:hover{
  text-decoration:none;
}

/* Modern Service Cards - Vertical Layout */
.svc-grid{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:center;
}
.svc-card{
  flex:0 1 calc(25% - 18px);
  min-width:260px;
  max-width:320px;
  display:flex;
  flex-direction:column;
  background:rgba(18,22,36,0.95);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  position:relative;
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.svc-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:rgba(79,124,255,.08);
  opacity:0;
  transform:scale(.98);
  transition:opacity .26s ease, transform .26s ease;
  pointer-events:none;
  z-index:0;
}
.svc-card > *{position:relative; z-index:1}
.svc-card:hover{
  transform:translateY(-4px);
  border-color:rgba(79,124,255,.25);
  box-shadow:0 16px 28px rgba(15,23,42,.12);
  text-decoration:none;
}
.svc-card:hover::before{
  opacity:1;
  transform:scale(1);
}
.svc-card-visual{
  position:relative;
  height:180px;
  overflow:hidden;
}
.svc-card-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:filter .4s ease;
  filter:brightness(0.9) saturate(1.05);
}
.svc-card:hover .svc-card-visual img{
  filter:brightness(1) saturate(1.15);
}
.svc-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(10,14,28,0.95) 100%);
  pointer-events:none;
}
.svc-card-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
  position:relative;
  z-index:1;
}
/* Reserve space for badge to ensure consistent vertical alignment */
.svc-card-body::before{
  content:'';
  display:block;
  height:24px; /* Same height as badge */
  margin-bottom:12px;
  flex-shrink:0;
}
.svc-card-body h3{
  font-size:1.1rem;
  font-weight:700;
  margin:0 0 10px;
  line-height:1.35;
  color:#fff;
}
.svc-card-body .service-value{
  font-size:.88rem;
  margin:0 0 14px;
  color:rgba(255,255,255,0.7);
  font-weight:500;
  line-height:1.5;
}
.svc-card-body .service-bullets{
  font-size:.82rem;
  line-height:1.6;
  color:rgba(255,255,255,0.5);
  margin:0;
  margin-top: 14px;
  padding-left: 20px;
  list-style-position:outside;
}
.svc-card-body .service-bullets li{
  margin:5px 0;
  padding-left:0;
}
.svc-card-body .service-badge{
  position:absolute;
  top:24px;
  left:24px;
  margin:0;
  font-size:.7rem;
  width:fit-content;
}

/* Large desktop: 4 per row → 4+3 centered */
@media (max-width: 1300px){
  .svc-card{
    min-width:220px;
    max-width:280px;
  }
}
/* Tablet: maintain 4 per row with smaller cards */
@media (max-width: 1050px){
  .svc-grid{
    gap:18px;
  }
  .svc-card{
    flex:0 1 calc(25% - 14px);
    min-width:180px;
    max-width:240px;
  }
}
/* Small tablet: keep 4 cols but tighter */
@media (max-width: 850px){
  .svc-grid{
    gap:14px;
  }
  .svc-card{
    flex:0 1 calc(25% - 11px);
    min-width:160px;
    max-width:200px;
  }
  .svc-card-body{
    padding:18px;
  }
  .svc-card-body h3{
    font-size:1rem;
  }
  .svc-card-visual{
    height:140px;
  }
}
/* Mobile: single column - skip 2/3 cols to avoid single-card rows */
@media (max-width: 720px){
  .svc-grid{
    gap:16px;
  }
  .svc-card{
    flex:1 1 100%;
    min-width:0;
    max-width:100%;
  }
  .svc-card-body{
    padding:20px;
  }
  .svc-card-body h3{
    font-size:1.05rem;
  }
  .svc-card-visual{
    height:160px;
  }
  .svc-card-arrow{
    opacity:1;
    transform:translateY(0);
  }
}

.service-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--primary);
  background:rgba(79,70,229,.12);
  border:1px solid rgba(79,70,229,.22);
  padding:4px 8px;
  border-radius:999px;
  margin-bottom:10px;
}
.service-badge.is-placeholder{
  visibility:hidden;
}
.service-value{
  color:var(--text);
  font-weight:600;
  margin:6px 0 12px;
}
.service-bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.service-bullets li{margin:6px 0}

.service-page .section,
.service-page .page-hero{
  position:relative;
  z-index:1;
}
.service-hero{
  padding:120px 0 64px;
}
.service-hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:start;
}
.service-hero-card{
  padding:22px;
}
.service-meta{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:22px;
}
.meta-card{
  border:1px solid var(--stroke);
  border-radius:14px;
  background:rgba(12,18,34,0.7);
  backdrop-filter:blur(10px);
  padding:12px 14px;
}
.meta-label{
  display:block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  margin-bottom:6px;
}
.meta-value{
  font-weight:700;
  color:var(--text);
}
.service-detail-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.service-detail-card{
  padding:20px;
}
.service-pricing .pricing-card{min-height:100%}

@media (max-width: 980px){
  .service-hero-grid{grid-template-columns:1fr; gap:28px}
  .service-meta{grid-template-columns:1fr; max-width:420px}
  .service-detail-grid{grid-template-columns:1fr}
}

.service-section{
  padding:72px 0;
  position:relative;
  z-index:1;
}
.service-section.alt{
  background:rgba(10,14,24,0.6);
  border-top:1px solid rgba(37,48,77,0.6);
  border-bottom:1px solid rgba(37,48,77,0.6);
}
.service-two-col{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:32px;
  align-items:start;
}
.service-block{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.feature-card{
  padding:18px;
  border:1px solid var(--stroke);
  border-radius:16px;
  background:rgba(14,20,36,0.75);
  backdrop-filter:blur(10px);
}
.feature-title{margin:0 0 6px}
.feature-desc{margin:0; color:var(--muted)}
.audience-list,
.impact-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px 18px;
}
.audience-list li,
.impact-list li{
  position:relative;
  padding-left:18px;
  color:var(--text);
}
.audience-list li::before,
.impact-list li::before{
  content:"◆";
  position:absolute;
  left:0;
  top:0;
  color:var(--primary);
  font-size:.8rem;
}
.deliverable-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.deliverable-card{
  padding:18px;
  border:1px solid var(--stroke);
  border-radius:16px;
  background:rgba(14,20,36,0.75);
  backdrop-filter:blur(10px);
}
.deliverable-card h3{margin:0 0 8px}
.deliverable-card ul{margin:0; padding-left:18px; color:var(--muted)}
.deliverable-card li{margin:6px 0}

/* Audience Grid - Simplified "Potrivit pentru" section */
.audience-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}
.audience-card{
  padding:20px;
  border:1px solid var(--stroke);
  border-radius:16px;
  background:rgba(14,20,36,0.75);
  backdrop-filter:blur(10px);
  transition:transform .24s ease, box-shadow .24s ease;
}
.audience-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(15,23,42,.12);
}
.audience-card h4{
  margin:0 0 8px;
  font-size:1rem;
  font-weight:600;
  color:var(--text);
}
.audience-card p{
  margin:0;
  font-size:.9rem;
  color:var(--muted);
}

/* Simple Pricing Section */
.service-pricing-simple{
  padding:56px 0;
}
.pricing-simple-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  padding:40px;
  border:1px solid var(--stroke);
  border-radius:20px;
  background:linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(14,20,36,0.9) 100%);
  backdrop-filter:blur(10px);
}
.pricing-simple-content{
  flex:1;
  min-width:280px;
}
.pricing-simple-content .eyebrow{
  margin-bottom:8px;
}
.pricing-simple-content h2{
  margin:0 0 16px;
  font-size:1.5rem;
}
.pricing-simple-amount{
  margin-bottom:12px;
}
.pricing-simple-amount .amount{
  font-size:2.5rem;
  font-weight:700;
  color:var(--primary);
}
.pricing-simple-note{
  margin:0;
  font-size:.9rem;
  color:var(--muted);
}

.pricing-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.plan-desc{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.plan-cta{
  margin-top:auto;
  align-self:flex-start;
}
.plan-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--primary);
  background:rgba(79,70,229,.12);
  border:1px solid rgba(79,70,229,.2);
  padding:4px 8px;
  border-radius:999px;
}
.service-cta{
  padding:72px 0;
}
.service-cta .card{
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .service-two-col,
  .feature-grid,
  .deliverable-grid,
  .audience-grid{
    grid-template-columns:1fr;
  }
  .audience-list,
  .impact-list{
    grid-template-columns:1fr;
  }
  .service-cta .card{
    align-items:flex-start;
  }
  .pricing-simple-card{
    flex-direction:column;
    text-align:center;
    padding:32px 24px;
  }
  .pricing-simple-amount .amount{
    font-size:2rem;
  }
}

/* ==========================================================================
   SERVICE PAGE V2 - Unified Enterprise Design System
   ========================================================================== */

/* Background */
.service-page-v2{
  position:relative;
  min-height:100vh;
}
.service-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79,124,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #080c18 100%);
  pointer-events:none;
}
.service-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(79,124,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,124,255,0.03) 1px, transparent 1px);
  background-size:48px 48px;
  opacity:0.5;
}

/* Label/Eyebrow */
.sp-label{
  display:inline-block;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:16px;
}

/* Hero Section */
.sp-hero{
  padding:96px 0 64px;
  position:relative;
  z-index:1;
}
.sp-hero-inner{
  max-width:720px;
}
.sp-title{
  font-size:clamp(2rem, 5vw, 3rem);
  font-weight:800;
  line-height:1.15;
  margin:0 0 24px;
  color:var(--text);
}
.sp-subtitle{
  font-size:1.125rem;
  line-height:1.6;
  color:var(--muted);
  margin:0 0 32px;
  max-width:560px;
}
.sp-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* Info Bar */
.sp-info-bar{
  padding:0 0 64px;
  position:relative;
  z-index:1;
}
.sp-info-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  max-width:720px;
}
.sp-info-item{
  padding:20px 24px;
  background:rgba(15,21,38,0.6);
  border:1px solid var(--stroke);
  border-radius:12px;
}
.sp-info-label{
  display:block;
  font-size:0.75rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.sp-info-value{
  font-size:1rem;
  font-weight:700;
  color:var(--text);
}

/* Sections */
.sp-section{
  padding:80px 0;
  position:relative;
  z-index:1;
}
.sp-section-alt{
  background:rgba(10,14,26,0.5);
  border-top:1px solid rgba(31,42,68,0.5);
  border-bottom:1px solid rgba(31,42,68,0.5);
}
.sp-section-header{
  margin-bottom:40px;
}
.sp-heading{
  font-size:clamp(1.5rem, 3vw, 2rem);
  font-weight:700;
  line-height:1.25;
  margin:0;
  color:var(--text);
}

/* Service Content Block */
.sp-content{
  padding:64px 0;
}
.sp-content-block{
  max-width:960px;
}
.sp-content-title{
  font-size:clamp(1.5rem, 3vw, 2rem);
  font-weight:700;
  color:var(--text);
  margin:0 0 24px;
}
.sp-content-intro{
  font-size:1.1rem;
  line-height:1.7;
  color:var(--muted);
  margin:0 0 24px;
}
.sp-content-block p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 16px;
}
.sp-content-heading{
  font-size:1.25rem;
  font-weight:700;
  color:var(--text);
  margin:32px 0 12px;
}
.sp-content-columns{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:48px;
  margin:32px 0;
}
.sp-content-column h4{
  font-size:1rem;
  font-weight:700;
  color:var(--text);
  margin:24px 0 12px;
}
.sp-content-column h4:first-child{
  margin-top:0;
}
.sp-content-column ul{
  margin:0;
  padding:0 0 0 20px;
  color:var(--muted);
}
.sp-content-column li{
  margin:0 0 8px;
  line-height:1.5;
}
.sp-content-outro{
  font-size:1rem;
  font-weight:500;
  color:var(--text);
  margin:24px 0 0;
  padding:20px 24px;
  background:rgba(79,124,255,0.08);
  border-left:3px solid var(--primary);
  border-radius:0 8px 8px 0;
}
.sp-content-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin:24px 0 32px;
}
.sp-content-list-item{
  padding:24px;
  background:rgba(15,21,38,0.5);
  border:1px solid var(--stroke);
  border-radius:12px;
}
.sp-content-list-item h4{
  font-size:1rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 8px;
}
.sp-content-list-item p{
  font-size:0.9rem;
  color:var(--muted);
  margin:0;
  line-height:1.6;
}
@media (max-width:768px){
  .sp-content-columns{
    grid-template-columns:1fr;
    gap:0;
  }
  .sp-content-list{
    grid-template-columns:1fr;
  }
}

/* Features Grid */
.sp-features{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.sp-feature{
  padding:24px;
  background:rgba(15,21,38,0.5);
  border:1px solid var(--stroke);
  border-radius:12px;
  transition:border-color 0.2s ease;
}
.sp-feature:hover{
  border-color:rgba(79,124,255,0.3);
}
.sp-feature-title{
  font-size:1rem;
  font-weight:700;
  margin:0 0 8px;
  color:var(--text);
}
.sp-feature-desc{
  font-size:0.9rem;
  line-height:1.5;
  margin:0;
  color:var(--muted);
}

/* Audience Grid */
.sp-audience{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
.sp-audience-item{
  padding:24px;
  background:rgba(15,21,38,0.5);
  border:1px solid var(--stroke);
  border-radius:12px;
  transition:border-color 0.2s ease;
}
.sp-audience-item:hover{
  border-color:rgba(79,124,255,0.3);
}
.sp-audience-title{
  font-size:1rem;
  font-weight:700;
  margin:0 0 8px;
  color:var(--text);
}
.sp-audience-desc{
  font-size:0.9rem;
  line-height:1.5;
  margin:0;
  color:var(--muted);
}

/* Audience Timeline Layout - Horizontal */
.sp-audience-timeline{
  max-width:100%;
}
.sp-audience-header{
  margin-bottom:40px;
  text-align:center;
}
.sp-audience-header .sp-heading{
  margin:0;
}
.sp-audience-timeline .timeline{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  margin:0;
  padding-left:0;
  padding-top:0;
}
.sp-audience-timeline .timeline::before{
  display:none;
}
.sp-audience-timeline .timeline-item{
  position:relative;
  padding:24px 0 0;
  padding-left:0;
  text-align:center;
}
.sp-audience-timeline .timeline-item::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:40px;
  height:2px;
  background:linear-gradient(90deg, rgba(79,70,229,.5), rgba(20,184,166,.5));
}
.sp-audience-timeline .timeline-dot{
  position:absolute;
  left:50%;
  top:-4px;
  transform:translateX(-50%);
  width:10px;
  height:10px;
}
.sp-audience-timeline .h4{
  color:var(--text);
  font-size:1rem;
  margin:8px 0 6px;
}
.sp-audience-timeline .muted{
  font-size:0.875rem;
}
@media (max-width:1024px){
  .sp-audience-timeline .timeline{
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width:640px){
  .sp-audience-timeline .timeline{
    grid-template-columns:1fr;
  }
  .sp-audience-header{
    text-align:left;
  }
  .sp-audience-timeline .timeline-item{
    text-align:left;
    padding:0 0 0 32px;
  }
  .sp-audience-timeline .timeline-item::before{
    left:0;
    top:6px;
    transform:none;
    width:2px;
    height:calc(100% - 6px);
    background:linear-gradient(180deg, rgba(79,70,229,.5), rgba(20,184,166,.3));
  }
  .sp-audience-timeline .timeline-dot{
    left:0;
    top:2px;
    transform:translateX(-50%);
  }
}

/* Pricing Section */
.sp-pricing{
  padding:80px 0;
  position:relative;
  z-index:1;
}
.sp-pricing-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  padding:48px;
  background:rgba(15,21,38,0.6);
  border:1px solid var(--stroke);
  border-radius:16px;
  max-width:800px;
}
.sp-pricing-content{
  flex:1;
  min-width:280px;
}
.sp-pricing-content .sp-heading{
  margin-bottom:16px;
}
.sp-price{
  font-size:2.5rem;
  font-weight:800;
  color:var(--primary);
  margin-bottom:8px;
}
.sp-pricing-note{
  font-size:0.9rem;
  color:var(--muted);
  margin:0;
}

/* New Simplified Pricing Section */
.sp-pricing-v2{
  padding:64px 0 96px;
  position:relative;
  z-index:1;
}
.sp-pricing-simple{
  text-align:center;
  max-width:400px;
  margin:0 auto;
}
.sp-pricing-label{
  font-size:0.875rem;
  font-weight:600;
  letter-spacing:0.04em;
  color:var(--muted);
  margin:0 0 8px;
}
.sp-pricing-value{
  font-size:clamp(2.5rem, 6vw, 3.5rem);
  font-weight:800;
  color:var(--text);
  margin:0 0 24px;
  line-height:1.1;
}
.sp-pricing-simple .btn{
  min-width:200px;
}

/* CTA Section */
.sp-cta{
  padding:80px 0;
  position:relative;
  z-index:1;
}
.sp-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  padding:40px 48px;
  background:rgba(15,21,38,0.6);
  border:1px solid var(--stroke);
  border-radius:16px;
}
.sp-cta-content{
  flex:1;
  min-width:280px;
}
.sp-cta-title{
  font-size:1.5rem;
  font-weight:700;
  margin:0 0 8px;
  color:var(--text);
}
.sp-cta-desc{
  font-size:1rem;
  color:var(--muted);
  margin:0;
}

/* Button Large Variant */
.btn-lg{
  padding:16px 32px;
  font-size:1rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px){
  .sp-features{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px){
  .sp-hero{
    padding:72px 0 48px;
  }
  .sp-title{
    font-size:1.75rem;
  }
  .sp-subtitle{
    font-size:1rem;
  }
  .sp-info-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
  .sp-section{
    padding:56px 0;
  }
  .sp-features,
  .sp-audience{
    grid-template-columns:1fr;
    gap:16px;
  }
  .sp-pricing-card,
  .sp-cta-inner{
    flex-direction:column;
    text-align:center;
    padding:32px 24px;
  }
  .sp-price{
    font-size:2rem;
  }
  .sp-cta-inner{
    align-items:center;
  }
}

/* ==========================================================================
   END SERVICE PAGE V2
   ========================================================================== */

.card h3,.card .h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted)}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}
.link{display:inline-block; margin-top:12px; color:var(--primary)}
.link:hover{text-decoration:underline}

.card,
.stat,
.pricing-card,
.step-card,
.hero-card,
.info-card,
.case-card{
  transition:transform .24s ease, box-shadow .24s ease;
}
.card:hover,
.stat:hover,
.pricing-card:hover,
.step-card:hover,
.hero-card:hover,
.info-card:hover,
.case-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(15,23,42,.12);
}

.section{position:relative; z-index:1}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:24px; flex-wrap:wrap}

.section-intro{padding-top:24px}
.intro{max-width:840px}

.stats-grid{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:16px}
.stat{background:rgba(15,20,35,0.85); backdrop-filter:blur(10px); border:1px solid var(--stroke); border-radius:var(--radius); padding:18px}
.stat-value{font-weight:800; font-size:1.4rem; margin:0 0 6px}

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

/* Enterprise Process Section */
.section-process{
  padding:72px 0;
  position:relative;
}
.section-process .section-head{
  margin-bottom:40px;
}

/* Step Card - Enterprise Design */
.step-card{
  position:relative;
  background:rgba(18,22,36,0.95);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:28px 24px;
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.step-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:rgba(79,124,255,.08);
  opacity:0;
  transform:scale(.98);
  transition:opacity .26s ease, transform .26s ease;
  z-index:0;
}
.step-card > *{position:relative; z-index:1}
.step-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(15,23,42,.12);
  border-color:rgba(79,124,255,.25);
}
.step-card:hover::before{
  opacity:1;
  transform:scale(1);
}

/* Step Number Badge */
.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(79,124,255,0.1);
  border:1px solid rgba(79,124,255,0.2);
  color:var(--primary);
  font-weight:700;
  font-size:0.9rem;
  margin-bottom:18px;
}

.step-card h3{
  margin-bottom:10px;
  font-size:1.1rem;
  font-weight:600;
  color:var(--text);
}
.step-card p{
  color:var(--muted);
  font-size:0.92rem;
  line-height:1.65;
  margin:0;
}

.page-hero{padding:64px 0 48px}

.story-grid{grid-template-columns: 1.2fr .8fr; align-items:start}
.story-card ul{margin:0; padding-left:18px; color:var(--muted)}
.story-card li{margin:6px 0}

.pricing{grid-template-columns: repeat(3, minmax(0, 1fr))}
.pricing-card{
  border:1px solid var(--stroke); border-radius:var(--radius); background:rgba(15,20,35,0.85); backdrop-filter:blur(10px); padding:20px; box-shadow:var(--shadow)
}
.pricing-card.highlight{border-color:rgba(79,70,229,.35); background:rgba(79,70,229,.06)}
.price{display:flex; align-items:baseline; gap:8px; margin:8px 0}
.amount{font-size:1.8rem; font-weight:800}
.period{color:var(--muted); font-size:.92rem}
.pricing-features{margin:12px 0 14px; padding-left:18px; color:var(--muted)}

.case-card{position:relative}
.case-tag{display:inline-flex; padding:6px 10px; border-radius:999px; background:rgba(79,70,229,.1); color:var(--primary); font-size:.8rem; font-weight:600; margin-bottom:10px}

.portfolio-hero .hero-grid{align-items:center}
.portfolio-hero .hero-actions{margin-top:8px}
.portfolio-summary{display:flex; flex-direction:column; gap:12px}
.portfolio-metrics{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:8px;
}
.portfolio-metric{
  padding:12px 14px;
  border-radius:12px;
  background:rgba(12,18,34,0.6);
  border:1px solid var(--stroke);
  color:var(--muted);
}
.portfolio-metric strong{
  display:block;
  color:var(--text);
  font-size:1rem;
  margin-bottom:4px;
}
.portfolio-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
.portfolio-card{display:flex; flex-direction:column; gap:10px; min-height:100%}
.portfolio-card-header{display:flex; align-items:center; justify-content:space-between; gap:12px}
.portfolio-status{
  padding:4px 10px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:600;
  color:var(--primary);
  background:rgba(79,70,229,.1);
  border:1px solid rgba(79,70,229,.25);
}
.portfolio-card .link{margin-top:auto}

@media (max-width: 768px){
  .portfolio-grid{grid-template-columns:1fr}
  .portfolio-metrics{grid-template-columns:1fr}
}

.contact-grid{grid-template-columns:1fr}
.contact-hero{text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px}
.contact-hero .lead{max-width:720px}
.contact-trust{justify-content:center}
.contact-section-top{padding-top:24px}
.contact-form-stack{display:flex; flex-direction:column; gap:18px}
.form label{display:block; margin-bottom:12px; color:var(--muted)}
.form-grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px}
input,textarea,select{
  width:100%; margin-top:6px; border-radius:14px; border:1px solid var(--stroke);
  background:rgba(15,20,35,0.85); backdrop-filter:blur(10px); color:var(--text); padding:12px 14px; outline:none;
}
input:focus,textarea:focus,select:focus{border-color:rgba(79,70,229,.45); box-shadow:0 0 0 4px rgba(79,70,229,.12)}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.form-actions .btn{flex:1; justify-content:center; min-width:220px}
.next-steps{display:flex; flex-direction:column; gap:8px}
.next-steps .muted{margin:0}
.contact-list{margin:0; padding-left:18px; color:var(--muted)}
.info-highlight{margin-top:16px; padding:14px; border-radius:16px; background:rgba(12,18,34,0.6); border:1px dashed var(--stroke)}

.whatsapp-nudge{
  position:fixed;
  right:124px;
  bottom:124px;
  z-index:45;
  pointer-events:none;
  opacity:0.65;
  animation:whatsappNudge 2.8s ease-in-out infinite;
}
.whatsapp-nudge-arrow{
  width:90px;
  height:auto;
  stroke:var(--accent);
  stroke-width:3;
  fill:none;
  filter:drop-shadow(0 6px 16px rgba(79,70,229,0.25));
}
@keyframes whatsappNudge{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(-6px,-6px)}
}

@media (max-width: 768px){
  .form-actions .btn{flex:1 1 100%}
  .whatsapp-nudge{display:none}
}

.about-grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.chip{font-size:.9rem; color:var(--muted); padding:8px 12px; border-radius:999px; border:1px solid var(--stroke); background:rgba(12,18,34,0.7); backdrop-filter:blur(8px)}

.cta{padding:48px 0; background:transparent; position:relative; z-index:1}
.cta-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap}

.site-footer{
  border-top:1px solid rgba(37,48,77,0.5);
  background:rgba(10,14,24,0.95);
  position:relative;
  z-index:1;
  overflow:hidden;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}
.footer-bg-animated{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}
.footer-bg-animated canvas{
  width:100%;
  height:100%;
  display:block;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}

/* Mobile: Use static CSS gradient for footer to prevent flickering */
@media (max-width: 768px){
  .footer-bg-animated{
    background:
      radial-gradient(ellipse 70% 50% at 30% 20%, rgba(79,124,255,0.08) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 70%, rgba(79,209,255,0.06) 0%, transparent 50%),
      rgba(10,14,24,0.98);
  }
  .footer-bg-animated canvas{
    display:none;
  }
}
.site-footer .container{
  position:relative;
  z-index:1;
}
.footer-grid{display:grid; grid-template-columns: 1.2fr 1fr 1.3fr 1fr; gap:48px; padding:72px 0 56px; align-items:start}
.footer-brand{align-self:center}
.footer-desc{margin-top:16px; font-size:0.9rem; line-height:1.6; max-width:320px}
.footer-title{margin:0 0 18px; padding-top:8px; font-size:1.15rem; font-weight:700; color:var(--text); letter-spacing:0.02em}
.footer-links{list-style:none; margin:0; padding:0; color:var(--muted)}
.footer-links li{margin:10px 0}
.footer-links a{font-size:0.9rem; transition:color 0.2s ease}
.footer-links a:hover{color:var(--primary)}
.footer-contact li{display:flex; align-items:flex-start; gap:12px}
.footer-icon{display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; flex-shrink:0; margin-top:2px}
.footer-icon svg{width:18px; height:18px; fill:currentColor; color:var(--primary); opacity:0.85}
.footer-anpc-logos{display:flex; flex-direction:column; gap:12px; margin-top:12px}
.footer-anpc-logos a{display:block; transition:opacity 0.3s ease, transform 0.3s ease}
.footer-anpc-logos a:hover{opacity:0.85; transform:translateY(-2px)}
.footer-anpc-logos img{width:200px; height:auto; border-radius:8px}
.footer-anpc-links{margin-top:16px}
.footer-bottom{
  display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,0.08); padding:20px 0; color:var(--muted); font-size:0.85rem
}
.footer-copyright{
  margin:0; padding-bottom:2px; border-bottom:1px solid rgba(255,255,255,0.2); display:inline-block
}
.footer-legal{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
.footer-legal a{transition:color 0.2s ease}
.footer-legal a:hover{color:var(--primary)}
.footer-sep{opacity:0.4}

/* WhatsApp Floating Button */
.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  box-shadow:0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.2);
  color:#fff;
  text-decoration:none;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover{
  transform:scale(1.1);
  box-shadow:0 6px 28px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.25);
}
.whatsapp-float svg{
  width:32px;
  height:32px;
}
.whatsapp-tooltip{
  position:absolute;
  right:72px;
  background:var(--surface);
  color:var(--text);
  padding:10px 16px;
  border-radius:8px;
  font-size:0.875rem;
  font-weight:500;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transform:translateX(10px);
  transition:opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow:0 4px 16px rgba(0,0,0,0.3);
  pointer-events:none;
}
.whatsapp-tooltip::after{
  content:"";
  position:absolute;
  right:-6px;
  top:50%;
  transform:translateY(-50%);
  border:6px solid transparent;
  border-left-color:var(--surface);
}
.whatsapp-float:hover .whatsapp-tooltip{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

/* WhatsApp Welcome Message Animation */
.whatsapp-wrapper{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9999;
  display:flex;
  align-items:flex-end;
  gap:12px;
}
.whatsapp-wrapper .whatsapp-float{
  position:relative;
  bottom:auto;
  right:auto;
}
.whatsapp-welcome{
  display:flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding:14px 20px;
  border-radius:12px;
  box-shadow:0 4px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.2);
  opacity:0;
  transform:translateX(20px) scale(0.9);
  animation:welcomeSlideIn 0.5s ease 1s forwards, welcomeFadeOut 0.4s ease 8s forwards;
}
.whatsapp-welcome::after{
  content:"";
  position:absolute;
  right:-8px;
  bottom:20px;
  border:8px solid transparent;
  border-left-color:#128C7E;
}
.whatsapp-welcome-text{
  font-size:1rem;
  font-weight:600;
  color:#fff;
  white-space:nowrap;
  text-shadow:0 1px 2px rgba(0,0,0,0.2);
}
.whatsapp-welcome-close{
  background:none;
  border:none;
  color:#fff;
  font-size:1.3rem;
  cursor:pointer;
  padding:0;
  line-height:1;
  opacity:0.7;
  transition:opacity 0.2s ease;
}
.whatsapp-welcome-close:hover{
  opacity:1;
}
.whatsapp-welcome.hidden{
  display:none;
}
@keyframes welcomeSlideIn{
  to{
    opacity:1;
    transform:translateX(0) scale(1);
  }
}
@keyframes welcomeFadeOut{
  to{
    opacity:0;
    transform:translateX(10px);
    visibility:hidden;
  }
}
@media (max-width:768px){
  .whatsapp-wrapper{
    bottom:20px;
    right:20px;
    gap:8px;
  }
  .whatsapp-welcome{
    padding:10px 14px;
    border-radius:10px;
  }
  .whatsapp-welcome-text{
    font-size:0.85rem;
  }
  .whatsapp-float{
    width:54px;
    height:54px;
    bottom:20px;
    right:20px;
  }
  .whatsapp-float svg{
    width:28px;
    height:28px;
  }
  .whatsapp-tooltip{
    display:none;
  }
}

/* Legal Pages */
.legal-section{padding-top:100px}
.legal-container{display:flex; flex-direction:column; align-items:center}
.legal-page-title{font-size:2.4rem; font-weight:700; color:var(--text); margin:0 0 40px; text-align:center}
.legal-content{padding:56px 64px; width:100%; max-width:1100px}
.legal-intro{padding-bottom:28px; margin-bottom:32px; border-bottom:1px solid var(--stroke)}
.legal-intro p{font-size:1.05rem; line-height:1.8}
.legal-content h2{margin:36px 0 18px; font-size:1.25rem; font-weight:600; color:var(--text)}
.legal-content h2:first-of-type{margin-top:0}
.legal-content p{margin:0 0 14px; line-height:1.75; color:var(--muted)}
.legal-content ul{margin:14px 0 18px; padding-left:24px; color:var(--muted)}
.legal-content li{margin:10px 0; line-height:1.65}
.legal-content a{color:var(--primary); text-decoration:underline; text-underline-offset:2px}
.legal-content a:hover{opacity:0.8}
.legal-update{margin-top:48px; padding-top:28px; border-top:1px solid var(--stroke); font-size:0.9rem; opacity:0.6; font-style:italic; text-align:center}

.reveal{opacity:0; transform:translateY(12px); transition:opacity .8s ease, transform .8s ease}
.reveal.is-visible{opacity:1; transform:translateY(0)}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none}
  body.page-transition::before{transition:none; opacity:0}
  .rotating-service-text{transition:none}
  .hero-brand{animation:none}
  .hero-brand::after{animation:none}
  .cursor-dot{display:none}
  .load-reveal{opacity:1; transform:none; transition:none}
}

/* ===========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   =========================================== */

/* Desktop Nav - Hidden on mobile */
.nav-desktop{
  display:none;
}

/* --- Mobile Base (< 768px) --- */
@media (max-width: 767px){
.header-inner{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}
.site-header .container{padding:0 16px}
.brand{
  margin-bottom:0;
}

/* Burger Menu */
.burger-menu{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;
  height:40px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:8px;
  z-index:60;
}
.burger-line{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
}
.burger-menu.is-active .burger-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.burger-menu.is-active .burger-line:nth-child(2){
  opacity:0;
}
.burger-menu.is-active .burger-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Panel */
.nav{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  max-width:320px;
  height:100vh;
  height:100dvh;
  background:rgba(15, 22, 41, 0.98);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-left:1px solid rgba(79, 124, 255, 0.2);
  box-shadow:-8px 0 32px rgba(0, 0, 0, 0.5);
  display:block;
  padding:0;
  transition:right .35s ease;
  z-index:1001;
  overflow-y:auto;
  overflow-x:hidden;
  pointer-events:none;
}
.nav.is-open{
  right:0;
  pointer-events:auto;
}

/* Nav Inner Container */
.nav-inner{
  padding:24px 20px 40px;
}

/* Nav Section */
.nav-section{
  margin-bottom:28px;
}
.nav-section:last-child{
  margin-bottom:0;
}

/* Nav Section Label */
.nav-section-label{
  display:block;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(79, 124, 255, 0.8);
  padding:0 12px 12px;
  margin-bottom:8px;
  border-bottom:1px solid rgba(79, 124, 255, 0.2);
}

/* Nav Item Links */
.nav-item-link{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 12px;
  margin:4px 0;
  font-size:.95rem;
  font-weight:500;
  color:rgba(255, 255, 255, 0.9);
  border-radius:10px;
  transition:background .2s ease, color .2s ease, transform .2s ease;
  text-decoration:none;
  cursor:pointer;
  pointer-events:auto;
  position:relative;
  z-index:1;
}
.nav-item-link:hover{
  background:rgba(79,124,255,0.15);
  transform:translateX(4px);
}
.nav-item-link.is-active{
  background:rgba(79,124,255,0.25);
  color:var(--primary);
}
.nav-item-icon{
  font-size:1.1rem;
  width:28px;
  text-align:center;
  flex-shrink:0;
}

.header-actions{
  display:none;
}

/* Mobile menu overlay */
.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:999;
}
.nav-overlay.is-visible{
  opacity:1;
  pointer-events:auto;
}

.hero{padding:60px 0 40px}
.hero-grid{
  grid-template-columns:1fr;
  grid-template-rows:auto;
  gap:24px;
  align-items:start;
}
.hero-copy{display:block}
.hero-top,.hero-bottom,.hero-visual{
  grid-column:1;
  grid-row:auto;
}
.hero-visual{
  max-width:100%;
  margin:24px auto 0;
  order:3;
}
.hero-actions-center{
  justify-content:center;
  grid-column:1;
  grid-row:auto;
}
.team-image-wrapper{
  height:auto;
  aspect-ratio:4 / 5;
  min-height:280px;
  max-width:400px;
  margin:0 auto;
}
.hero-copy h1{
  font-size:clamp(1.6rem, 6vw, 2.2rem);
  text-align:center;
}
.hero-brand{
  font-size:1.2rem;
  letter-spacing:.22em;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.hero-top{text-align:center}

.service-tabs{
  flex-direction:column;
  gap:8px;
}
.service-tab{
  width:100%;
  padding:14px 16px;
  font-size:.9rem;
}
.service-tab-text{
  white-space:normal;
}

.hero-actions{
  flex-direction:column;
  align-items:stretch;
  gap:10px;
}
.hero-actions .btn,
.hero-actions-center .btn{
  width:100%;
  justify-content:center;
}

.cards, .pricing, .stats-grid, .steps, .about-grid, .story-grid{
  grid-template-columns:1fr;
  gap:20px;
}
.service-two-col, .feature-grid, .deliverable-grid{
  grid-template-columns:1fr;
}
.audience-list, .impact-list{
  grid-template-columns:1fr;
}
.contact-grid{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr; text-align:center}
.footer-brand{display:flex; flex-direction:column; align-items:center; padding-top:16px; border-top:1px solid rgba(255,255,255,0.08); margin-top:-1px}
.footer-brand .brand{justify-content:center}
.footer-desc{max-width:100%; text-align:center}
.footer-contact{display:flex; flex-direction:column; align-items:center}
.footer-contact li{display:inline-flex; align-items:flex-start; text-align:center; gap:10px; max-width:280px}
.footer-icon{margin-top:4px}
.footer-anpc-logos{display:flex; flex-direction:column; align-items:center; justify-content:center}
.footer-anpc-logos a{display:flex; justify-content:center}
.footer-anpc-logos img{width:220px; max-width:90vw}
.footer-anpc-links{display:flex; flex-direction:column; align-items:center}
.footer-bottom{flex-direction:column; text-align:center}
.form-grid{grid-template-columns:1fr}
.section{padding:48px 0}
.container{padding:0 16px}
.cta-inner{flex-direction:column; text-align:center}
.cta-actions{justify-content:center}
.split-sections{grid-template-columns:1fr; gap:40px}
}

/* --- Tablet (768px - 1023px) --- */
@media (min-width: 768px){
  :root{--header-height:90px}
  
  .burger-menu{display:none}
  .nav{display:none}
  .nav-desktop{
    display:flex;
    justify-content:flex-end;
    gap:6px;
    align-items:center;
    padding:0;
    margin-left:auto;
  }
  
  .header-inner{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:20px;
    padding:14px 0;
  }
  
  .hero{padding:80px 0 50px}
  .hero-grid{gap:32px}
  .hero-copy h1{
    font-size:clamp(1.9rem, 5vw, 2.6rem);
    text-align:left;
  }
  .hero-top{text-align:left}
  .hero-brand{justify-content:flex-start}
  .hero-visual{
    max-width:450px;
    margin:32px auto 0;
  }
  .team-image-wrapper{
    min-height:320px;
    max-width:450px;
  }
  
  .service-tabs{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  
  .hero-actions{
    flex-direction:row;
    align-items:center;
  }
  .hero-actions .btn,
  .hero-actions-center .btn{
    width:auto;
  }
  .hero-actions-center{justify-content:flex-start}
  
  .cards, .pricing, .stats-grid, .about-grid, .story-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .steps{grid-template-columns:repeat(2, minmax(0, 1fr)); gap:24px}
  .service-two-col, .feature-grid, .deliverable-grid, .audience-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .audience-list, .impact-list{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .footer-grid{grid-template-columns:1fr 1fr; text-align:left; gap:32px}
  .footer-brand{display:block; flex-direction:row; align-items:flex-start; padding-top:0; border-top:none; margin-top:0}
  .footer-brand .brand{justify-content:flex-start}
  .footer-desc{max-width:320px; text-align:left}
  .footer-contact{display:block}
  .footer-contact li{display:flex; align-items:flex-start; text-align:left; gap:12px; max-width:none}
  .footer-icon{margin-top:2px}
  .footer-anpc-logos img{width:180px}
  .footer-bottom{flex-direction:row; justify-content:center}
  .section{padding:56px 0}
  .container{padding:0 24px}
  .cta-inner{flex-direction:row; text-align:left}
  .split-sections{grid-template-columns:repeat(2, 1fr); gap:32px}
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px){
  :root{--header-height:84px}
  
  .header-inner{
    grid-template-columns:auto 1fr auto;
    gap:28px;
    padding:16px 0;
  }
  .nav-desktop{
    justify-content:flex-end;
    margin-left:auto;
  }
  
  .hero{padding:120px 0 60px}
  .hero-grid{
    grid-template-columns:1.2fr .8fr;
    grid-template-rows:auto auto;
    gap:48px;
    align-items:stretch;
  }
  .hero-copy{display:contents}
  .hero-top{grid-column:1; grid-row:1}
  .hero-bottom{grid-column:1; grid-row:2}
  .hero-visual{
    grid-column:2;
    grid-row:1 / 3;
    max-width:none;
    margin:0;
    order:unset;
  }
  .hero-actions-center{
    grid-column:1;
    grid-row:2;
  }
  .team-image-wrapper{
    min-height:0;
    max-width:none;
    height:100%;
    aspect-ratio:unset;
  }
  .hero-copy h1{
    font-size:clamp(2.2rem, 4vw, 3.4rem);
  }
  .hero-brand{
    font-size:1.65rem;
    letter-spacing:.35em;
  }
  
  .service-tabs{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .service-tab{
    padding:12px 18px;
  }
  .service-tab-text{
    white-space:nowrap;
  }
  
  .cards{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .stats-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .steps{grid-template-columns:repeat(4, minmax(0, 1fr))}
  .pricing{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .story-grid{grid-template-columns:1.2fr .8fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1.2fr 1fr 1.3fr 1fr; gap:48px}
  .section{padding:64px 0}
  .container{padding:0 20px}
}

/* Reviews Section */
.section-reviews{
  padding:100px 0;
  position:relative;
}

.reviews-carousel{
  margin-top:64px;
  position:relative;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

.reviews-carousel-container{
  position:relative;
  overflow:hidden;
  min-height:280px;
}

.review-slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  transform:translateX(100%);
  transition:all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events:none;
}

.review-slide.active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.review-slide.exiting{
  opacity:0;
  transform:translateX(-100%);
}

.review-content{
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:32px 36px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.review-content::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  opacity:0.6;
}

.review-stars{
  display:flex;
  gap:6px;
  justify-content:center;
  margin-bottom:20px;
}

.review-stars .star{
  color:#fbbf24;
  font-size:24px;
  transition:transform 0.3s ease;
  display:inline-block;
  filter:drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-text{
  font-size:1rem;
  line-height:1.7;
  color:var(--muted);
  margin:0 0 20px 0;
  font-style:italic;
  position:relative;
}

.review-text::before{
  content:'"';
  position:absolute;
  left:-20px;
  top:-6px;
  font-size:2.5rem;
  color:var(--primary);
  opacity:0.2;
  font-style:normal;
}

.review-name{
  font-size:1.05rem;
  font-weight:600;
  color:var(--text);
  margin:0;
  letter-spacing:0.02em;
}

.carousel-dots{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:32px;
}

.carousel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--stroke);
  cursor:pointer;
  transition:all 0.3s ease;
  border:2px solid transparent;
}

.carousel-dot:hover{
  background:var(--muted);
  transform:scale(1.2);
}

.carousel-dot.active{
  background:var(--primary);
  width:32px;
  border-radius:5px;
  border-color:var(--primary);
}

@media (max-width:768px){
  .reviews-carousel{
    margin-top:48px;
  }
  
  .review-content{
    padding:24px 20px;
  }
  
  .review-stars .star{
    font-size:20px;
  }
  
  .review-text{
    font-size:0.95rem;
    line-height:1.6;
  }
  
  .review-text::before{
    font-size:2rem;
    left:-14px;
  }
  
  .review-name{
    font-size:1rem;
  }
  
  .reviews-carousel-container{
    min-height:320px;
  }
}
