:root {
  --navy: #0B1F3B;
  --navy-2: #12345f;
  --blue: #2F80ED;
  --sky: #56CCF2;
  --white: #FFFFFF;
  --soft: #F5F7FA;
  --line: #E6EBF2;
  --text: #1C1C1C;
  --muted: #687386;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 18px 55px rgba(11, 31, 59, 0.10);
  --shadow-soft: 0 10px 30px rgba(11, 31, 59, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
  --transition: 0.35s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: var(--white); padding: 10px 14px; z-index: 9999; border-radius: 8px; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(230,235,242,0.75);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); background: rgba(255,255,255,0.95); }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; text-decoration: none; min-width: 168px; }
.logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  max-width: 230px;
  padding: 6px 2px;
  overflow: hidden;
}
.logo-frame img { height: 52px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu a { text-decoration: none; color: #263345; font-size: 0.92rem; font-weight: 600; transition: color var(--transition); }
.nav-menu a:hover { color: var(--blue); }
.nav-action {
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(47,128,237,0.20);
}
.nav-action:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(47,128,237,0.28); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 5px auto; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--white); box-shadow: 0 14px 28px rgba(47,128,237,0.23); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(47,128,237,0.32); }
.btn-secondary { background: rgba(255,255,255,0.88); color: var(--navy); border-color: rgba(11,31,59,0.16); }
.btn-secondary:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--soft);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.04);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(245,247,250,0.88) 48%, rgba(11,31,59,0.25)); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) 420px; gap: 44px; align-items: center; padding: 72px 0 60px; }
.hero-copy { max-width: 640px; }
.hero-logo-line { display: block; margin-bottom: 12px; width: 160px; padding: 5px 0; }
.hero-logo-line img { height: 42px; width: auto; object-fit: contain; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--sky); }
.hero h1 {
  font-family: "Montserrat", "Inter", sans-serif;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 650px;
}
.hero-text { max-width: 560px; margin: 18px 0 24px; color: #485668; font-size: 1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 0; padding: 0; list-style: none; }
.hero-points li { background: rgba(255,255,255,0.78); border: 1px solid rgba(230,235,242,0.85); color: #334155; border-radius: 999px; padding: 7px 12px; font-size: 0.82rem; font-weight: 700; }
.hero-panel {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.panel-head, .panel-metric { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.panel-head span, .panel-metric span { color: var(--muted); font-size: 0.86rem; }
.panel-head strong { background: rgba(86,204,242,0.16); color: var(--navy); padding: 5px 10px; border-radius: 999px; font-size: 0.78rem; }
.panel-metric { margin: 24px 0 10px; }
.panel-metric b { color: var(--navy); font-size: 1.8rem; }
.panel-bar { height: 8px; border-radius: 99px; background: #e9eef6; overflow: hidden; }
.panel-bar span { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--sky)); }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.panel-grid div { background: rgba(245,247,250,0.92); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.panel-grid small { display: block; color: var(--muted); font-weight: 600; }
.panel-grid b { color: var(--navy); }

.trust-bar { padding: 22px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.trust-inner p { margin: 0; color: var(--navy); font-weight: 800; font-size: 0.92rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.logo-placeholder { color: #657084; background: var(--soft); border: 1px solid var(--line); padding: 8px 13px; border-radius: 10px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; }

.section { padding: 86px 0; }
.section-soft { background: var(--soft); }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-heading h2, .section-copy h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}
.section-heading p, .section-copy p { color: var(--muted); margin: 0 0 14px; }
.split-layout { display: grid; grid-template-columns: 1fr 0.92fr; gap: 54px; align-items: center; }
.about-image { margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-image img { width: 100%; height: 430px; object-fit: cover; }
.about-checks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.about-checks span { border: 1px solid var(--line); background: var(--white); color: var(--navy); border-radius: 999px; padding: 8px 12px; font-size: 0.83rem; font-weight: 800; }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card, .price-card, .why-card, .process-card, .stat-card {
  background: var(--card);
  border: 1px solid rgba(230,235,242,0.95);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card { padding: 24px; min-height: 252px; }
.service-card:hover, .price-card:hover, .why-card:hover, .process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(47,128,237,0.26); }
.icon-box { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(47,128,237,0.14), rgba(86,204,242,0.16)); color: var(--blue); margin-bottom: 18px; }
.icon-box svg { width: 22px; height: 22px; stroke: currentColor; }
.service-card h3, .price-card h3, .why-card h3, .process-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; line-height: 1.25; }
.service-card p, .why-card p, .process-card p { margin: 0; color: var(--muted); font-size: 0.91rem; line-height: 1.65; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { padding: 24px; position: relative; overflow: hidden; }
.process-card::after { content: attr(data-step); position: absolute; right: 16px; top: 10px; color: rgba(47,128,237,0.10); font-weight: 900; font-size: 3.2rem; line-height: 1; }
.process-step { color: var(--blue); font-weight: 900; font-size: 0.82rem; letter-spacing: 0.08em; margin-bottom: 16px; display: block; }

.pricing { background: linear-gradient(180deg, var(--white), var(--soft)); }
.pricing-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; text-align: left; max-width: none; }
.pricing-head > div:first-child { max-width: 680px; }
.billing-toggle { display: flex; padding: 5px; border: 1px solid var(--line); background: var(--white); border-radius: 14px; box-shadow: var(--shadow-soft); }
.billing-toggle button { border: 0; background: transparent; cursor: pointer; padding: 9px 14px; border-radius: 10px; color: var(--muted); font-weight: 800; transition: var(--transition); }
.billing-toggle button.active { background: var(--navy); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { padding: 28px; position: relative; background: rgba(255,255,255,0.9); }
.price-card.highlight { border-color: rgba(47,128,237,0.45); box-shadow: 0 24px 70px rgba(47,128,237,0.15); }
.popular-badge { position: absolute; top: 18px; right: 18px; background: rgba(47,128,237,0.1); color: var(--blue); border: 1px solid rgba(47,128,237,0.16); border-radius: 999px; padding: 5px 10px; font-size: 0.72rem; font-weight: 900; }
.price-tagline { margin: 0 0 18px; color: var(--muted); font-size: 0.9rem; }
.price { display: flex; align-items: baseline; gap: 4px; color: var(--navy); margin-bottom: 18px; }
.price strong { font-size: 2.25rem; line-height: 1; letter-spacing: -0.04em; }
.price span { color: var(--muted); font-weight: 700; }
.features { list-style: none; padding: 0; margin: 22px 0 24px; display: grid; gap: 10px; }
.features li { display: flex; gap: 10px; align-items: flex-start; color: #405064; font-size: 0.92rem; }
.features li::before { content: "✓"; color: var(--blue); font-weight: 900; }
.price-card .btn { width: 100%; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 18px; }
.stat-card { padding: 24px; text-align: center; background: var(--white); }
.stat-value { display: block; color: var(--navy); font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; }
.stat-card p { margin: 5px 0 0; color: var(--muted); font-weight: 700; font-size: 0.86rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.why-card { padding: 24px; }

.testimonials { background: var(--soft); }
.testimonial-shell { display: grid; grid-template-columns: 44px minmax(0, 780px) 44px; gap: 16px; justify-content: center; align-items: center; }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 32px; box-shadow: var(--shadow-soft); min-height: 260px; }
.stars { color: #f5b642; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card blockquote { margin: 0 0 22px; color: #344256; font-size: 1.03rem; }
.testimonial-meta { display: flex; justify-content: space-between; gap: 18px; align-items: end; border-top: 1px solid var(--line); padding-top: 18px; }
.testimonial-meta strong { color: var(--navy); display: block; }
.testimonial-meta span { color: var(--muted); font-size: 0.9rem; }
.country { background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; color: var(--navy); font-size: 0.82rem; font-weight: 800; }
.slider-btn { width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 1.7rem; cursor: pointer; box-shadow: var(--shadow-soft); transition: var(--transition); }
.slider-btn:hover { background: var(--navy); color: var(--white); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; align-items: start; }
.contact-cards { display: grid; gap: 10px; margin-top: 22px; }
.contact-cards a, .contact-cards span { text-decoration: none; padding: 13px 14px; border-radius: 14px; border: 1px solid var(--line); background: var(--soft); color: var(--navy); font-weight: 800; font-size: 0.9rem; }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 14px;
  padding: 16px 14px 10px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.field select { padding: 14px; color: #405064; min-height: 54px; }
.field textarea { resize: vertical; min-height: 132px; }
.field label { position: absolute; left: 14px; top: 13px; color: var(--muted); pointer-events: none; transition: var(--transition); background: transparent; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(47,128,237,0.62); background: var(--white); box-shadow: 0 0 0 4px rgba(47,128,237,0.08); }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 4px; font-size: 0.72rem; color: var(--blue); font-weight: 800; }
.field small { display: block; min-height: 16px; margin-top: 5px; color: #c0392b; font-size: 0.78rem; }
.field.error input, .field.error textarea, .field.error select { border-color: #e36a5c; }
.quote-form .btn { grid-column: 1 / -1; }
.form-status { grid-column: 1 / -1; margin: 0; color: #0a7a46; font-weight: 800; }

.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.75fr 0.9fr 1fr; gap: 34px; }
.footer-logo { display: inline-flex; align-items: center; height: 54px; background: var(--white); border-radius: 14px; padding: 6px 10px; margin-bottom: 16px; }
.footer-logo img { height: 42px; width: auto; object-fit: contain; }
.footer h3 { color: var(--white); font-size: 0.95rem; margin: 0 0 14px; }
.footer a, .footer span { display: block; color: rgba(255,255,255,0.68); text-decoration: none; margin: 8px 0; font-size: 0.9rem; }
.footer a:hover { color: var(--sky); }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.56); }

.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 44px; height: 44px; border-radius: 14px; border: 0; background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--white); box-shadow: 0 14px 30px rgba(47,128,237,0.28); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 900; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child { grid-column: 1 / -1; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 480px; }
  .process-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 78px; left: 20px; right: 20px; display: grid; gap: 4px; background: rgba(255,255,255,0.98); padding: 16px; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: var(--transition); }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-menu a { padding: 12px; border-radius: 12px; }
  .nav-action { text-align: center; }
  .split-layout, .contact-grid, .pricing-head { grid-template-columns: 1fr; display: grid; }
  .pricing-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { display: grid; text-align: center; }
  .trust-logos { justify-content: center; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 72px; }
  .logo-frame { height: 54px; max-width: 190px; }
  .logo-frame img { height: 46px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 50px 0 42px; }
  .brand { min-width: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-text { font-size: 0.94rem; }
  .hero-panel { display: none; }
  .section { padding: 64px 0; }
  .services-grid, .process-grid, .stats-grid, .quote-form { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { grid-column: auto; }
  .testimonial-shell { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
  .testimonial-meta { display: grid; }
  .hero-actions .btn { width: 100%; }
}
