/* ============================================
   QA WIZARD — MAIN STYLESHEET
   image folder: image/
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --navy:        #0d1b3e;
  --navy-deep:   #091428;
  --navy-mid:    #132247;
  --navy-light:  #1a2f5e;
  --blue:        #3a9fd5;
  --blue-bright: #4dbde8;
  --blue-pale:   #7dd4f0;
  --blue-dark:   #1e6fa3;
  --white:       #ffffff;
  --off-white:   #f4f7fb;
  --gray-100:    #edf1f7;
  --gray-200:    #d6dfe9;
  --gray-400:    #8fa3bc;
  --gray-600:    #4f6680;
  --text-dark:   #0d1b3e;
  --text-mid:    #2c3e5a;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --section-pad: clamp(60px, 8vw, 110px);
  --container:   1250px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 12px rgba(13,27,62,.08);
  --shadow-md:   0 8px 32px rgba(13,27,62,.14);
  --shadow-lg:   0 20px 60px rgba(13,27,62,.18);
  --shadow-blue: 0 8px 32px rgba(58,159,213,.28);

  --ease:  cubic-bezier(.4,0,.2,1);
  --speed: 0.28s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.18; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-mid); line-height: 1.75; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.section-label::before { content:''; width:24px; height:2px; background:var(--blue); border-radius:2px; }
.section-label.light { color: var(--blue-pale); }
.section-label.light::before { background: var(--blue-pale); }

.section-header { max-width: 640px; margin-bottom: clamp(40px,5vw,64px); }
.section-header.centered { text-align:center; margin-left:auto; margin-right:auto; }
.section-header p { margin-top:14px; font-size:1.04rem; }

.divider { width:52px; height:3px; background:linear-gradient(90deg,var(--blue),var(--blue-pale)); border-radius:3px; margin:18px 0 0;  }
.divider.center { margin-left:auto; margin-right:auto; }

/* ── Buttons ── */
.btn { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-size:.93rem; font-weight:600; padding:14px 28px; border-radius:8px; border:none; cursor:pointer; transition:all var(--speed) var(--ease); white-space:nowrap; }
.btn-primary  { background:var(--blue); color:var(--white); box-shadow:var(--shadow-blue); }
.btn-primary:hover  { background:var(--blue-bright); transform:translateY(-2px); box-shadow:0 14px 40px rgba(58,159,213,.38); }
.btn-outline  { background:transparent; color:var(--navy); border:2px solid var(--gray-200); }
.btn-outline:hover   { border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }
.btn-white    { background:var(--white); color:var(--navy); }
.btn-white:hover     { background:var(--blue-pale); transform:translateY(-2px); }
.btn-ghost    { background:rgba(255,255,255,.1); color:var(--white); border:1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover     { background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.5); }
.btn svg { width:18px; height:18px; flex-shrink:0; }

/* ── Header ── */
.site-header { position:fixed; top:0; left:0; right:0; z-index:1000; transition:background var(--speed) var(--ease), box-shadow var(--speed) var(--ease); }
.site-header.scrolled { background:rgba(9,20,40,.96); backdrop-filter:blur(18px); box-shadow:0 2px 24px rgba(0,0,0,.22); }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding: 10px 0;  }

.logo { display:flex; align-items:center; gap:12px; }
.logo img { width:40%; height:40%; border-radius:10px; object-fit:contain; }
.logo-text { display:flex; flex-direction:column; line-height:1.1; }
.logo-name { font-family:var(--font-display); font-size:1.28rem; font-weight:800; color:var(--white); letter-spacing:-.01em; }
.logo-tagline { font-size:.66rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--blue-pale); }

.nav { display:flex; align-items:center; gap:2px; }
.nav a { font-family:var(--font-body); font-size:14px; font-weight:600; color:rgba(255,255,255); padding:8px 16px; border-radius:6px; transition:all var(--speed) var(--ease); letter-spacing: 1px; }
.nav a:hover, .nav a.active { color:#fff; background:rgba(58,159,213,.14); }
.nav a.active { color:var(--blue-pale); }
.nav .btn { margin-left:12px; padding:10px 22px; font-size:.87rem; }
a.btn.btn-primary:hover{

  background-color: var(--blue-bright);
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; background:none; border:none; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all var(--speed) var(--ease); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav { display:none; position:fixed; top:76px; left:0; right:0; background:var(--navy-deep); padding:16px 0 28px; z-index:999; border-top:1px solid rgba(255,255,255,.08); animation:slideDown .2s var(--ease); }
.mobile-nav.open { display:block; }
.mobile-nav a { display:block; font-family:var(--font-display); font-weight:600; font-size:1rem; color:rgba(255,255,255,.82); padding:14px 28px; border-bottom:1px solid rgba(255,255,255,.06); transition:color var(--speed); }
.mobile-nav a:hover { color:var(--blue-pale); }
.mobile-nav .btn { margin:18px 28px 0; display:inline-flex; width:calc(100% - 56px); justify-content:center; }
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 140px 0 72px;
  overflow: hidden;
  background-color: var(--navy-deep);
}
.page-hero-img {
  position: absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position: center;
  opacity: .22;
}
.page-hero-overlay {
  position: absolute; inset:0;
  background: linear-gradient(135deg, rgba(9,20,40,.92) 0%, rgba(13,27,62,.82) 60%, rgba(26,47,94,.75) 100%);
}
.page-hero-content { position:relative; z-index:2; }
.page-hero h1 { color:var(--white); }
.page-hero p  { color:rgba(255,255,255,.7); margin-top:12px; font-size:1.1rem; }
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:20px; font-size:.85rem; color:rgba(255,255,255,.48); }
.breadcrumb a { color:var(--blue-pale); } .breadcrumb a:hover { color:var(--white); }
.breadcrumb span { color:rgba(255,255,255,.38); }

/* ── Sections ── */
section { padding: var(--section-pad) 0; }
.section-white { background: var(--white); }
.section-gray  { background: var(--off-white); }
.section-navy  { background: var(--navy-deep); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .section-label { color:var(--blue-pale); }
.section-navy .section-label::before { background:var(--blue-pale); }
.section-navy p { color:rgba(255,255,255,.62); }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 170px;
  background-color: var(--navy-deep);
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,20,40,.97) 0%, rgba(13,27,62,.90) 55%, rgba(26,47,94,.85) 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,159,213,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,159,213,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; top:8%; right:4%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,159,213,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,159,213,.14); border: 1px solid rgba(58,159,213,.3);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  margin-bottom: 26px; font-size: .82rem; font-weight: 600; color: var(--blue-pale); letter-spacing: .02em;
}
.hero-badge .dot { width:8px; height:8px; background:var(--blue); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

.hero h1 { color:var(--white); font-size:clamp(2.4rem,5vw,3.6rem); font-weight:800; line-height:1.1; margin-bottom:20px; }
.hero h1 .highlight { background:linear-gradient(135deg,var(--blue),var(--blue-pale)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { color:rgba(255,255,255,.65); font-size:1.08rem; line-height:1.75; margin-bottom:36px; max-width:490px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }

.hero-stats { display:flex; gap:36px; margin-top:52px; padding-top:40px; border-top:1px solid rgba(255,255,255,.1); }
.stat-num { font-family:var(--font-display); font-size:2rem; font-weight:800; color:var(--white); line-height:1; }
.stat-num span { background:linear-gradient(135deg,var(--blue),var(--blue-pale)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat-label { font-size:.8rem; color:rgba(255,255,255,.48); margin-top:4px; }

/* Hero visual panel */
.hero-visual { display:flex; justify-content:center; align-items:center; }
.hero-card-stack { position:relative; width:100%;  }
.hero-card-stack img{ width:100%; height:350px; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.hero-main-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:20px; padding:32px; backdrop-filter:blur(12px); }
.hero-card-header { display:flex; align-items:center; gap:12px; margin-bottom:24px; }
.card-avatar { width:44px; height:44px; background:linear-gradient(135deg,var(--blue),var(--blue-dark)); border-radius:12px; display:flex; align-items:center; justify-content:center; }
.card-avatar svg { width:24px; height:24px; color:var(--white); }
.card-meta-title { font-family:var(--font-display); font-weight:700; font-size:.95rem; color:var(--white); }
.card-meta-sub { font-size:.78rem; color:rgba(255,255,255,.4); margin-top:2px; }
.card-progress-list { display:flex; flex-direction:column; gap:14px; }
.prog-label { display:flex; justify-content:space-between; font-size:.82rem; color:rgba(255,255,255,.7); margin-bottom:6px; }
.prog-bar { height:6px; background:rgba(255,255,255,.1); border-radius:6px; overflow:hidden; }
.prog-fill { height:100%; border-radius:6px; background:linear-gradient(90deg,var(--blue-dark),var(--blue-bright)); animation:fillBar 1.4s var(--ease) forwards; }
@keyframes fillBar { from{width:0} }
.hero-float-card { position:absolute; bottom:-20px; right:-24px; background:var(--navy-deep); border:1px solid rgba(58,159,213,.3); border-radius:14px; padding:16px 20px; min-width:180px; box-shadow:var(--shadow-lg); }
.float-card-num { font-family:var(--font-display); font-size:1.8rem; font-weight:800; background:linear-gradient(135deg,var(--blue),var(--blue-pale)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.float-card-label { font-size:.76rem; color:rgba(255,255,255,.48); margin-top:2px; }
.hero-float-card-2 { position:absolute; top:-16px; left:-24px; background:linear-gradient(135deg,var(--blue),var(--blue-dark)); border-radius:14px; padding:14px 20px; min-width:160px; box-shadow:var(--shadow-blue); }
.float2-label { font-size:.78rem; color:rgba(255,255,255,.72); font-weight:500; }
.float2-val { font-family:var(--font-display); font-size:1rem; font-weight:800; color:var(--white); margin-top:4px; }
.float2-badge { display:inline-block; margin-top:6px; background:rgba(255,255,255,.2); color:var(--white); font-size:.7rem; font-weight:600; padding:3px 8px; border-radius:100px; }

/* ── Clients strip ── */
.clients-strip { padding:40px 0; background:var(--off-white); }
.clients-label { text-align:center; font-size:.8rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-400); margin-bottom:24px; }
.clients-row { display:flex; gap:40px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.client-name { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--gray-400); letter-spacing:.02em; transition:color var(--speed); }
.client-name:hover { color:var(--navy); }

/* ── About Preview ── */
.about-preview { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-visual { position:relative; }
.about-img-wrap { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; }
.about-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.about-img-wrap:hover img { transform:scale(1.04); }
.about-badge { position:absolute; bottom:-18px; right:-18px; background:var(--white); border-radius:14px; padding:18px 22px; box-shadow:var(--shadow-md); text-align:center; border:1.5px solid var(--gray-100); }
.about-badge-num { font-family:var(--font-display); font-size:2rem; font-weight:800; color:var(--navy); line-height:1; }
.about-badge-label { font-size:.76rem; color:var(--gray-600); margin-top:3px; }
.about-list { margin:22px 0 30px; display:flex; flex-direction:column; gap:12px; }
.about-list li { display:flex; align-items:flex-start; gap:12px; font-size:.93rem; color:var(--text-mid); }
.about-list li .check { flex-shrink:0; width:22px; height:22px; background:rgba(58,159,213,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:2px; }
.about-list li .check svg { width:12px; height:12px; color:var(--blue); }

/* ── Services ── */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:24px; }
.service-card { background:var(--white); border:1.5px solid var(--gray-100); border-radius:var(--radius-lg); padding:36px 30px; transition:all var(--speed) var(--ease); position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue),var(--blue-pale)); transform:scaleX(0); transform-origin:left; transition:transform var(--speed) var(--ease); }
.service-card:hover { border-color:rgba(58,159,213,.3); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { width:56px; height:56px; background:linear-gradient(135deg,rgba(58,159,213,.12),rgba(58,159,213,.06)); border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.service-icon svg { width:28px; height:28px; color:var(--blue); }
.service-card h3 { margin-bottom:10px; font-size:1.12rem; }
.service-card p  { font-size:.92rem; }
.service-link { display:inline-flex; align-items:center; gap:6px; margin-top:18px; font-size:.88rem; font-weight:600; font-family:var(--font-display); color:var(--blue); transition:gap var(--speed); }
.service-card:hover .service-link { gap:10px; }
.service-link svg { width:16px; height:16px; }

/* ── Why Choose Us ── */
.why-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:center; }
.why-content h2 { color:var(--white); margin-bottom:16px; }
.why-content p  { margin-bottom:14px; }
.why-features { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.why-item { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:24px 20px; transition:background var(--speed); }
.why-item:hover { background:rgba(255,255,255,.1); }
.why-icon { width:44px; height:44px; background:linear-gradient(135deg,rgba(58,159,213,.12),rgba(58,159,213,.06)); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.why-icon svg { width:22px; height:22px; color:var(--white); }
.why-item h4 { color:var(--white); font-size:.93rem; margin-bottom:5px; }
.why-item p  { font-size:.83rem; }

/* Why us image */
.why-img-wrap { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; }
.why-img-wrap img { width:100%; height:100%; object-fit:cover; }

/* ── Process ── */
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-steps::before { content:''; position:absolute; top:35px; left:10%; right:10%; height:1px; background:linear-gradient(90deg,transparent,var(--blue),transparent); z-index:0; }
.process-step { text-align:center; padding:0 18px; position:relative; z-index:1; }
.step-num { width:72px; height:72px; border-radius:50%; border:2px solid var(--blue); background:var(--white); display:flex; align-items:center; justify-content:center; margin:0 auto 22px; font-family:var(--font-display); font-size:1.4rem; font-weight:800; color:var(--blue); transition:all var(--speed); }
.process-step:hover .step-num { background:var(--blue); color:var(--white); transform:scale(1.08); }
.process-step h4 { margin-bottom:8px; }
.process-step p  { font-size:.87rem; }

/* ── Testimonials ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:24px; }
.testimonial-card { background:var(--white); border-radius:var(--radius-lg); padding:36px 30px; border:1.5px solid var(--gray-100); transition:all var(--speed) var(--ease); }
.testimonial-card:hover { box-shadow:var(--shadow-md); border-color:rgba(58,159,213,.2); transform:translateY(-4px); }
.testimonial-quote { font-size:2.4rem; line-height:1; color:var(--blue); font-family:Georgia,serif; margin-bottom:14px; }
.testimonial-text { font-size:.93rem; line-height:1.75; color:var(--text-mid); margin-bottom:24px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:14px; }
.author-photo { width:48px; height:48px; border-radius:50%; object-fit:cover;}
.author-name  { font-family:var(--font-display); font-weight:700; font-size:.93rem; color:var(--navy); }
.author-role  { font-size:.78rem; color:var(--gray-600); margin-top:2px; }
.stars        { color:#f5a623; font-size:.88rem; margin-bottom:10px; }


.fade-in.center.visible {
    text-align: center;
}
/* ── CTA Section ── */
.cta-section { position:relative; background:linear-gradient(135deg,var(--navy-deep),var(--navy));  padding:clamp(48px,6vw,80px); text-align:center; overflow:hidden;  }
.cta-section::before { content:''; position:absolute; top:-80px; right:-80px; width:360px; height:360px; background:radial-gradient(circle,rgba(58,159,213,.2) 0%,transparent 65%); pointer-events:none; }
.cta-section::after  { content:''; position:absolute; bottom:-80px; left:-80px; width:320px; height:320px; background:radial-gradient(circle,rgba(30,111,163,.18) 0%,transparent 65%); pointer-events:none; }
.cta-section h2 { color:var(--white); position:relative; z-index:1; }
.cta-section p  { color:rgba(255,255,255,.65); max-width:520px; margin:14px auto 34px; position:relative; z-index:1; font-size:1.04rem; }
.cta-actions    { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* ── About Page ── */
.mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:20px; }
.mv-card { background:var(--off-white); border-radius:var(--radius-lg); padding:40px 36px; border-left:4px solid var(--blue); }
.mv-icon { width:52px; height:52px; background:linear-gradient(135deg,var(--blue),var(--blue-dark)); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.mv-icon svg { width:26px; height:26px; color:var(--white); }
.mv-card h3 { margin-bottom:12px; }

.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:28px; }
.team-card { background:var(--white); border:1.5px solid var(--gray-100); border-radius:var(--radius-lg); overflow:hidden; transition:all var(--speed); text-align:center; }
.team-card:hover { box-shadow:var(--shadow-md); border-color:rgba(58,159,213,.25); transform:translateY(-4px); }
.team-photo-wrap { overflow:hidden; aspect-ratio:1/1; }
.team-photo-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.team-card:hover .team-photo-wrap img { transform:scale(1.06); }
.team-info { padding:24px 20px; }
.team-name { font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--navy); }
.team-role { font-size:.82rem; color:var(--blue); font-weight:600; margin:4px 0 10px; }
.team-bio  { font-size:.86rem; color:var(--text-mid); }

.values-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:20px; }
.value-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:28px 22px; text-align:center; transition:background var(--speed); }
.value-card:hover { background:rgba(255,255,255,.1); }
.value-icon { width:52px; height:52px; background:rgba(58,159,213,.15); border-radius:12px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.value-icon svg { width:26px; height:26px; color:var(--blue-pale); }
.value-card h4 { color:var(--white); margin-bottom:8px; }
.value-card p  { font-size:.84rem; }

/* ── Services Full ── */
.services-full-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(310px,1fr)); gap:28px; }
.service-full-card { background:var(--white); border-radius:var(--radius-lg); border:1.5px solid var(--gray-100); overflow:hidden; transition:all var(--speed); }
.service-full-card:hover { box-shadow:var(--shadow-md); border-color:rgba(58,159,213,.3); transform:translateY(-4px); }
.sfc-head { background:linear-gradient(135deg,var(--navy),var(--navy-light)); padding:30px 28px; display:flex; gap:16px; align-items:flex-start; }
.sfc-icon { width:52px; height:52px; background:rgba(58,159,213,.2); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sfc-icon svg { width:26px; height:26px; color:var(--blue-pale); }
.sfc-head h3 { color:var(--white); font-size:1.08rem; }
.sfc-head p  { color:rgba(255,255,255,.55); font-size:.84rem; margin-top:4px; }
.sfc-body { padding:24px 28px; }
.sfc-features { display:flex; flex-direction:column; gap:10px; }
.sfc-features li { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color:var(--text-mid); }
.sfc-features li svg { width:16px; height:16px; color:var(--blue); flex-shrink:0; margin-top:2px; }

/* ── Testimonials Page ── */
.test-page-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:24px; }
.test-page-card { background:var(--white); border-radius:var(--radius-lg); padding:38px 30px; border:1.5px solid var(--gray-100); transition:all var(--speed); }
.test-page-card:hover { box-shadow:var(--shadow-md); border-color:rgba(58,159,213,.2); transform:translateY(-4px); }
.test-logo { display:inline-block; font-family:var(--font-display); font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); background:rgba(58,159,213,.08); padding:4px 12px; border-radius:100px; margin-bottom:18px; }
.metrics-row { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:60px; }
.metric-card { background:var(--white); border:1.5px solid var(--gray-100); border-radius:var(--radius-lg); padding:32px 24px; text-align:center; transition:all var(--speed); }
.metric-card:hover { box-shadow:var(--shadow-md); border-color:rgba(58,159,213,.25); transform:translateY(-4px); }
.metric-num   { font-family:var(--font-display); font-size:2.6rem; font-weight:800; background:linear-gradient(135deg,var(--blue),var(--navy)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.metric-label { font-size:.82rem; color:var(--gray-600); margin-top:6px; }

/* ── Contact ── */
.contact-layout { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:start; }
.contact-detail { display:flex; gap:16px; padding:22px 0; border-bottom:1px solid var(--gray-100); }
.contact-detail:last-of-type { border-bottom:none; }
.cd-icon { width:46px; height:46px; background:rgba(58,159,213,.1); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cd-icon svg { width:22px; height:22px; color:var(--blue); }
.contact-detail h4 { font-size:.83rem; text-transform:uppercase; letter-spacing:.08em; color:var(--gray-600); margin-bottom:4px; }
.contact-detail p  { font-size:.93rem; color:var(--navy); }
.social-links { display:flex; gap:10px; margin-top:26px; }
.social-link  { width:40px; height:40px; border-radius:10px; border:1.5px solid var(--gray-200); display:flex; align-items:center; justify-content:center; color:var(--gray-600); transition:all var(--speed); }
.social-link:hover { border-color:var(--blue); color:var(--blue); background:rgba(58,159,213,.06); }
.social-link svg { width:18px; height:18px; }
.map-placeholder { background:var(--off-white); border:1.5px solid var(--gray-100); border-radius:var(--radius-lg); height:260px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--gray-600); margin-top:28px; }
.map-placeholder svg { width:36px; height:36px; color:var(--blue); }
.map-placeholder p  { font-size:.88rem; text-align:center; }

.contact-form-card { background:var(--white); border:1.5px solid var(--gray-100); border-radius:var(--radius-lg); padding:44px 40px; box-shadow:var(--shadow-sm); }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-family:var(--font-display); font-size:.84rem; font-weight:600; color:var(--navy); margin-bottom:8px; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:12px 16px; border:1.5px solid var(--gray-200); border-radius:8px; font-family:var(--font-body); font-size:.95rem; color:var(--navy); background:var(--white); transition:border-color var(--speed),box-shadow var(--speed); outline:none; appearance:none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(58,159,213,.12); }
.form-group textarea { min-height:140px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* FAQ */
.faq-item { border-bottom:1px solid var(--gray-100); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:22px 0; cursor:pointer; font-family:var(--font-display); font-weight:600; font-size:.94rem; color:var(--navy); gap:16px; user-select:none; }
.faq-q svg { flex-shrink:0; width:20px; height:20px; color:var(--blue); transition:transform var(--speed); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.faq-a p { font-size:.9rem; color:var(--text-mid); padding-bottom:20px; }
.faq-item.open .faq-q svg { transform:rotate(45deg); }
.faq-item.open .faq-a { max-height:200px; }

/* ── Footer ── */
.site-footer { background:var(--navy-deep); padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-logo-img { width:38px; height:38px; border-radius:8px; object-fit:contain; }
.footer-desc { font-size:.88rem; color:rgba(255,255,255); line-height:1.7; margin-bottom:22px; max-width:280px; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:38px; height:38px; border-radius:8px; border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.48); transition:all var(--speed); }
.footer-social a:hover { border-color:var(--blue); color:var(--blue); background:rgba(58,159,213,.1); }
.footer-social a svg { width:16px; height:16px; }
.footer-col h5 { font-family:var(--font-body); font-size:18px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255); margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:.87rem; color:rgba(255, 255, 255); transition:color var(--speed); }
.footer-col ul a:hover { color:var(--blue-pale); }
.footer-contact-list { display:flex; flex-direction:column; gap:12px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:.86rem; color:rgba(255,255,255); line-height:1.55; }
.footer-contact-item svg { width:15px; height:15px; color:var(--blue); flex-shrink:0; margin-top:2px; }
.footer-bottom { padding:22px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255);
    font-style: italic;
    font-weight: 600;
}
.footer-links { display:flex; gap:22px; }
.footer-links a { font-size:.82rem; color:rgba(255,255,255); transition:color var(--speed); }
.footer-links a:hover { color:var(--blue-pale); }

/* ── Fade-in animation ── */
.fade-in { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.fade-in.visible { opacity:1; transform:none; }
.fade-in:nth-child(2) { transition-delay:.1s; }
.fade-in:nth-child(3) { transition-delay:.18s; }
.fade-in:nth-child(4) { transition-delay:.26s; }

/* ── Responsive ── */
@media (max-width:1024px) {
  .hero-inner       { grid-template-columns:1fr; }
  .hero-visual      { display:none; }
  .about-preview    { grid-template-columns:1fr; gap:48px; }
  .why-grid         { grid-template-columns:1fr; gap:48px; }
  .process-steps    { grid-template-columns:1fr 1fr; gap:32px; }
  .process-steps::before { display:none; }
  .footer-grid      { grid-template-columns:1fr 1fr; }
  .contact-layout   { grid-template-columns:1fr; gap:48px; }
  .mv-grid          { grid-template-columns:1fr; }
  .metrics-row      { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav, .nav .btn   { display:none; }
  .hamburger        { display:flex; }
  .hero-stats       { gap:22px; flex-wrap:wrap; }
  .services-grid    { grid-template-columns:1fr; }
  .testimonials-grid{ grid-template-columns:1fr; }
  .footer-grid      { grid-template-columns:1fr; gap:32px; }
  .why-features     { grid-template-columns:1fr; }
  .process-steps    { grid-template-columns:1fr; }
  .cta-section      { margin:0 16px; padding:48px 28px; }
  .contact-form-card{ padding:28px 22px; }
  .form-row         { grid-template-columns:1fr; }
  .footer-bottom    { flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
  .hero h1          { font-size:2.1rem; }
  .hero-actions     { flex-direction:column; align-items:flex-start; }
  .metrics-row      { grid-template-columns:1fr; }
}
