* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --primary: #2a5b75;
  --primary-dark: #1f4559;
  --accent: #4d8ea1;
  --muted: #6c7a86;
  --border: #e5e9ef;
  --shadow: 0 12px 30px rgba(18, 38, 63, 0.08);
  --shadow-hover: 0 16px 40px rgba(18, 38, 63, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: #1a2732;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ===== TRIAL BANNER ===== */
.trial-banner {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, #356a82 100%);
  padding: 10px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  animation: banner-shine 3s ease-in-out infinite;
}

@keyframes banner-shine {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

.trial-banner__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trial-banner__link:hover {
  color: white;
  text-decoration: underline;
}

.trial-banner__badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trial-banner__text {
  font-weight: 600;
}

.trial-banner__cta {
  opacity: 0.95;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .trial-banner {
    padding: 10px 16px;
  }

  .trial-banner__link {
    font-size: 0.85rem;
    gap: 8px;
  }

  .trial-banner__badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a[aria-current="page"] {
  color: var(--primary-dark);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #356a82 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(42, 91, 117, 0.4);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 91, 117, 0.45);
}

.final-cta .btn.primary {
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(42, 91, 117, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(42, 91, 117, 0.5); }
}

.btn.secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn.secondary:hover {
  background: rgba(42, 91, 117, 0.08);
  transform: translateY(-1px);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-stagger-child] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--stagger-delay, 0s);
}

[data-animate-stagger].animate-in [data-animate-stagger-child] {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-stagger-child] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 80px;
  background: linear-gradient(135deg, #e8f2f6 0%, #f0f7fa 50%, #f7f9fb 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blob-float 20s ease-in-out infinite;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.3) 0%, rgba(42, 91, 117, 0.2) 100%);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.25) 0%, transparent 100%);
  bottom: -80px;
  left: -50px;
  animation-delay: -7s;
}

.hero-blob-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(42, 91, 117, 0.2) 0%, transparent 100%);
  top: 50%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  animation: fade-in 0.8s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.subheadline {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.trust-line {
  font-size: 0.95rem;
  color: var(--muted);
}

.trial-line {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 12px;
}

.trial-line strong {
  color: var(--primary-dark);
}

.hero-media {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(18, 38, 63, 0.12);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  animation: hero-media-float 6s ease-in-out infinite;
}

@keyframes hero-media-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-media__image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media__image {
  filter: saturate(0.9) contrast(1.02) brightness(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 91, 117, 0.08);
  pointer-events: none;
}

section {
  padding: 80px 0;
  scroll-margin-top: 74px;
}

[id] {
  scroll-margin-top: 74px;
}

section h2 {
  font-size: clamp(1.85rem, 2.5vw, 2.25rem);
  margin-bottom: 16px;
  color: var(--primary-dark);
}

section h2.anchor-flash {
  animation: anchor-flash 1.2s ease;
}

@keyframes anchor-flash {
  0%,
  100% {
    background: transparent;
  }

  20%,
  70% {
    background: rgba(77, 142, 161, 0.16);
    border-radius: 8px;
    box-shadow: 0 0 0 8px rgba(77, 142, 161, 0.16);
  }
}

.section-lead {
  color: var(--muted);
  margin-bottom: 30px;
}

.inner-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #eef5f8 0%, #f7f9fb 100%);
  border-bottom: 1px solid var(--border);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.inner-hero__media {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(18, 38, 63, 0.1);
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.page-links-section {
  background: linear-gradient(180deg, var(--surface) 0%, #f5f8fb 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.page-link-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-link-card .btn {
  justify-self: start;
}

.page-link-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== SERVICE CARD ICONS ===== */
.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card .card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon--apps {
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.2) 0%, rgba(42, 91, 117, 0.15) 100%);
  color: var(--primary);
}

.card-icon--voip {
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.2) 0%, rgba(42, 91, 117, 0.15) 100%);
  color: var(--primary);
}

.card-icon--script {
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.2) 0%, rgba(42, 91, 117, 0.15) 100%);
  color: var(--primary);
}

.card-icon--web {
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.2) 0%, rgba(42, 91, 117, 0.15) 100%);
  color: var(--primary);
}

.card-icon--pc {
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.2) 0%, rgba(42, 91, 117, 0.15) 100%);
  color: var(--primary);
}

.card-icon--data {
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.2) 0%, rgba(42, 91, 117, 0.15) 100%);
  color: var(--primary);
}

.card-featured {
  border-color: rgba(77, 142, 161, 0.4);
  box-shadow: 0 12px 32px rgba(42, 91, 117, 0.12);
}

.card-featured::before {
  content: "Primary focus";
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.problem-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  max-width: 400px;
  opacity: 0.15;
  pointer-events: none;
}

.problem-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 0 0 24px;
}

/* ===== SERVICES HERO ===== */
.services-hero {
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  margin-bottom: 32px;
}

.services-hero-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.5;
}

/* ===== EXAMPLES HERO ===== */
.examples-hero {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 32px;
}

.examples-hero-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.45;
}

/* ===== PROCESS VISUAL ===== */
.process-visual {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 32px;
}

.process-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.4;
}

/* ===== PRICING BADGE ===== */
.pricing-badge {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.problem ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.problem li {
  background: #f3f7fa;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.problem li:hover {
  transform: translateX(6px);
  border-color: rgba(77, 142, 161, 0.3);
  box-shadow: 0 4px 12px rgba(18, 38, 63, 0.06);
}

.problem-close {
  margin-top: 18px;
  font-weight: 600;
  color: var(--primary-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* Services and pricing: 3 columns so 5 cards = 3+2 layout (no 4+1) */
.services .card-grid,
.pricing .card-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {
  .services .card-grid,
  .pricing .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services .card-grid,
  .pricing .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Examples section: single column, videos stacked vertically */
.examples-section .card-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.examples-section .card {
  padding: 28px;
  border-left: 4px solid var(--accent);
}

/* Video card layout: sticky notes + video */
.video-card-layout {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 24px;
  align-items: start;
}

.video-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.video-side .sticky-note {
  width: 100%;
  padding: 14px 12px;
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 50%, #fde047 100%);
  border-radius: 2px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  font-size: 0.85rem;
  font-weight: 600;
  color: #713f12;
  text-align: center;
  line-height: 1.3;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-side-left .sticky-note {
  transform: rotate(-3deg);
}

.video-side-right .sticky-note {
  transform: rotate(2deg);
}

.video-side .sticky-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), transparent);
  border-radius: 2px 2px 0 0;
  pointer-events: none;
}

.video-main {
  min-width: 0;
}

@media (max-width: 768px) {
  .video-card-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-side {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .video-side .sticky-note {
    min-height: 60px;
    padding: 12px 16px;
    flex: 1;
    max-width: 45%;
  }

  .video-side-left .sticky-note,
  .video-side-right .sticky-note {
    transform: none;
  }

  .video-side-left {
    order: 1;
  }

  .video-main {
    order: 2;
  }

  .video-side-right {
    order: 3;
  }
}

.examples-section .card:hover {
  border-left-color: var(--primary);
}

.examples-section .video-embed video {
  width: 100%;
  max-width: 100%;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(24, 46, 61, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(42, 91, 117, 0.15);
}

.services .card:hover,
.pricing .card:hover {
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.card p {
  color: var(--muted);
}

.examples {
  margin-top: 12px;
  font-size: 0.95rem;
}

.video-embed {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(24, 46, 61, 0.12);
  background: #0a0a0a;
}

.video-embed video {
  transition: box-shadow 0.2s ease;
}

.video-embed video:hover {
  box-shadow: 0 14px 32px rgba(24, 46, 61, 0.18);
}

.video-label {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* ===== WEBSITE SHOWCASE ===== */
.website-preview {
  margin-top: 18px;
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(24, 46, 61, 0.12);
  aspect-ratio: 16 / 10;
}

.website-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.website-preview:hover .website-screenshot {
  transform: scale(1.03);
}

.website-preview:focus-visible .website-screenshot {
  transform: scale(1.03);
}

.website-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 69, 89, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.website-preview:hover .website-overlay {
  opacity: 1;
}

.website-preview:focus-visible .website-overlay {
  opacity: 1;
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(77, 142, 161, 0.4);
}

.pricing .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 8px;
}

.pricing .price-note {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.pricing-featured {
  border-color: rgba(77, 142, 161, 0.4);
  box-shadow: 0 12px 32px rgba(42, 91, 117, 0.12);
}

.pricing-note {
  margin-top: 20px;
  color: var(--muted);
}

.pricing-disclaimer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-subheading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  margin: 40px 0 20px;
}

.pricing-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-package {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.pricing-package--featured {
  border-color: rgba(77, 142, 161, 0.5);
  box-shadow: 0 16px 48px rgba(42, 91, 117, 0.18);
  transform: scale(1.03);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}

.package-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}

.package-monthly {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.package-desc {
  font-size: 0.92rem;
  color: var(--body);
  margin-top: 8px;
  line-height: 1.5;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.package-features li {
  font-size: 0.9rem;
  color: var(--body);
  padding-left: 22px;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-packages {
    grid-template-columns: 1fr;
  }
  .pricing-package--featured {
    transform: none;
  }
}

.trial-offer {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(77, 142, 161, 0.08) 0%, rgba(42, 91, 117, 0.06) 100%);
  border: 1px solid rgba(77, 142, 161, 0.25);
  border-radius: 16px;
}

.trial-offer-heading {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px !important;
}

.trial-offer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.trial-offer p:last-child {
  margin-top: 4px;
}

.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "content visual"
    "card card";
  align-items: start;
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "card";
  }
}

.about-content { grid-area: content; }
.about-visual {
  grid-area: visual;
  min-height: 200px;
  background: linear-gradient(135deg, #f0f7fa 0%, #e8f0f4 100%);
  border-radius: 16px;
}
.about-card { grid-area: card; }

.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(18, 38, 63, 0.12);
  object-fit: cover;
}

.about-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(24, 46, 61, 0.06);
}

/* ===== CREDENTIALS SECTION ===== */
.credentials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-lead {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
  max-width: 560px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.credential-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.credential-item:hover {
  box-shadow: 0 8px 24px rgba(18, 38, 63, 0.08);
  border-color: rgba(77, 142, 161, 0.25);
}

.credential-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(77, 142, 161, 0.15);
  border-radius: 6px;
}

.credential-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.credential-item--skills {
  grid-column: 1 / -1;
}

.credential-item--skills .credential-badge {
  background: rgba(42, 91, 117, 0.2);
}

.credential-item--skills p {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-notices {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.notice-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(24, 46, 61, 0.05);
}

.notice-card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.notice-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.notice-card p + p {
  margin-top: 12px;
}

.service-detail-section {
  background: #f8fafc;
}

.final-cta {
  background: linear-gradient(135deg, #e0eef4 0%, #e8f2f6 50%, #f0f7fa 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(77, 142, 161, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42, 91, 117, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta .cta-grid {
  position: relative;
  z-index: 1;
}

.cta-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.contact-card a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-card a:hover {
  color: var(--primary-dark);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--surface);
  color: var(--primary-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 142, 161, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}

.contact-note {
  margin-top: 14px;
  max-width: 460px;
  color: var(--muted);
  font-size: 0.88rem;
}

.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sms-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  border: none;
  padding: 0;
  box-shadow: none;
}

.sms-consent label {
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

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

.site-footer {
  padding: 36px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: left;
}

.footer-brand,
.footer-heading {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-copy {
  max-width: 320px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links span {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

@media (max-width: 900px) {
  .inner-hero__grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.9rem;
    order: 3;
  }

  .site-header .btn {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 16px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-copy {
    max-width: none;
  }
}

/* ── FAQ Section ── */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: #f0f6f9;
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
