:root {
  --background: 0 0% 100%;
  --foreground: 220 40% 14%;
  --card: 0 0% 100%;
  --card-foreground: 220 40% 14%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 40% 14%;
  --primary: 218 54% 20%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 218 50% 32%;
  --secondary: 210 25% 96%;
  --secondary-foreground: 218 54% 20%;
  --muted: 210 20% 96%;
  --muted-foreground: 218 15% 45%;
  --accent: 152 55% 38%;
  --accent-foreground: 0 0% 100%;
  --accent-soft: 152 50% 94%;
  --destructive: 0 70% 50%;
  --destructive-foreground: 0 0% 100%;
  --border: 215 20% 90%;
  --input: 215 20% 90%;
  --ring: 218 54% 20%;
  --radius: 0.625rem;
  --gradient-hero: linear-gradient(135deg, hsl(218 54% 20%) 0%, hsl(218 50% 28%) 60%, hsl(152 45% 28%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(210 25% 98%) 0%, hsl(0 0% 100%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(152 55% 38%), hsl(152 60% 45%));
  --shadow-sm: 0 1px 2px hsl(218 54% 20% / 0.05);
  --shadow-card: 0 4px 20px -8px hsl(218 54% 20% / 0.12);
  --shadow-elegant: 0 20px 50px -20px hsl(218 54% 20% / 0.25);
  --shadow-glow: 0 10px 40px -10px hsl(152 55% 38% / 0.35);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button, input, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1, h2, h3, p, figure, blockquote, ul {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  letter-spacing: -0.025em;
}

ul {
  padding: 0;
  list-style: none;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background: hsl(var(--background));
}

.container-tight {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  border: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn:focus-visible,
.mobile-menu-button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn-sm {
  height: 2.25rem;
  padding-inline: 0.75rem;
}

.btn-lg {
  height: 3rem;
  padding-inline: 2rem;
  font-size: 1rem;
}

.btn-xl {
  height: 3.5rem;
  padding-inline: 2.5rem;
  font-size: 1rem;
}

.btn-default {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-sm);
}

.btn-default:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-card);
}

.btn-accent:hover {
  background: hsl(var(--accent) / 0.9);
  box-shadow: var(--shadow-glow);
}

.btn-hero {
  background: var(--gradient-accent);
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  opacity: 0.95;
  transform: translateY(-0.125rem);
}

.btn-outline-light {
  border: 1px solid hsl(0 0% 100% / 0.4);
  background: hsl(0 0% 100% / 0.05);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: hsl(0 0% 100% / 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
}

.nav-shell {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.375rem;
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-card);
}

.brand-mark .icon,
.footer-brand-mark .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: hsl(var(--primary));
}

.desktop-cta {
  display: none;
}

.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--primary));
  background: transparent;
  border: 0;
}

.mobile-menu-button .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-close {
  display: none;
}

.mobile-menu-button.is-open .icon-menu {
  display: none;
}

.mobile-menu-button.is-open .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1rem;
}

.mobile-menu-inner > a:not(.btn) {
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.section {
  padding-block: 5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(hsl(0 0% 100%) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 5rem;
}

.hero-copy {
  color: hsl(var(--primary-foreground));
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.1);
  padding: 0.25rem 0.75rem;
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero h1 span {
  color: hsl(var(--accent-soft));
}

.hero-lede {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid hsl(0 0% 100% / 0.15);
  padding-top: 2rem;
  color: hsl(var(--primary-foreground));
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.mini-stat .icon {
  color: hsl(var(--accent-soft));
}

.mini-stat span {
  color: hsl(var(--primary-foreground) / 0.9);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: hsl(var(--accent) / 0.2);
  filter: blur(40px);
}

.hero-image {
  position: relative;
  width: 100%;
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
}

.savings-card {
  display: none;
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1rem;
  box-shadow: var(--shadow-elegant);
}

.savings-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.savings-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: hsl(var(--accent-soft));
  color: hsl(var(--accent));
}

.savings-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1rem;
}

.savings-value {
  color: hsl(var(--primary));
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.eyebrow {
  color: hsl(var(--accent));
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.about-grid h2,
.why-grid h2,
.section-heading h2 {
  margin-top: 0.75rem;
  color: hsl(var(--primary));
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.rich-copy {
  display: grid;
  gap: 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.625;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1.5rem;
}

.metric-value {
  color: hsl(var(--primary));
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.45rem;
  font-weight: 700;
}

.metric-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1rem;
}

.soft-section {
  background: hsl(var(--secondary) / 0.4);
}

.gradient-subtle {
  background: var(--gradient-subtle);
}

.section-heading {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
}

.services-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-0.25rem);
  border-color: hsl(var(--accent) / 0.4);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: hsl(var(--accent-soft));
  color: hsl(var(--accent));
  transition: var(--transition-smooth);
}

.service-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card:hover .service-icon {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.service-card h3,
.process-card h3,
.reason-card h3 {
  margin-top: 1.25rem;
  color: hsl(var(--primary));
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.service-card p,
.process-card p,
.reason-card p {
  margin-top: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.625;
}

.service-card p {
  flex: 1;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  color: hsl(var(--accent));
  font-size: 0.875rem;
  font-weight: 600;
}

.learn-link .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .learn-link .icon {
  transform: translateX(0.25rem);
}

.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.muted-text {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
}

.reason-grid {
  display: grid;
  gap: 1.25rem;
}

.reason-card {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.reason-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
}

.reason-card h3 {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.reason-card p {
  margin-top: 0.375rem;
}

.process-grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.process-card {
  position: relative;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.step-number {
  color: hsl(var(--accent) / 0.3);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
}

.process-card h3 {
  margin-top: 0.75rem;
}

.process-line {
  display: none;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  background: hsl(var(--card));
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.pricing-card h3 {
  color: hsl(var(--primary));
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.tier-desc {
  margin-top: 0.375rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1.5rem;
}

.price-row span {
  color: hsl(var(--primary));
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
}

.price-row small {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.pricing-card ul {
  flex: 1;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.pricing-card li .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: hsl(var(--accent));
}

.tier-btn {
  width: 100%;
  margin-top: 2rem;
}

.featured-pricing {
  border-color: hsl(var(--accent) / 0.4);
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-elegant);
}

.featured-pricing h3,
.featured-pricing .price-row span {
  color: hsl(var(--primary-foreground));
}

.featured-pricing .tier-desc {
  color: hsl(var(--primary-foreground) / 0.75);
}

.featured-pricing .price-row small {
  color: hsl(var(--primary-foreground) / 0.7);
}

.featured-pricing li {
  color: hsl(var(--primary-foreground) / 0.9);
}

.featured-pricing li .icon {
  color: hsl(var(--accent-soft));
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.compact-heading h2 {
  margin-bottom: 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.stars {
  display: flex;
  gap: 0.125rem;
  color: hsl(var(--accent));
}

.stars .icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card blockquote {
  flex: 1;
  margin-top: 1rem;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  line-height: 1.625;
}

.testimonial-card figcaption {
  margin-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
}

.testimonial-card figcaption div {
  color: hsl(var(--primary));
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 600;
}

.testimonial-card figcaption span {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
}

.contact-info-list {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: hsl(var(--accent-soft));
  color: hsl(var(--accent));
}

.info-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-value {
  margin-top: 0.25rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

.contact-form {
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  background: hsl(var(--card));
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.field-group {
  display: grid;
  gap: 0.375rem;
}

.field-group label {
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group input {
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
}

.field-group textarea {
  min-height: 7.5rem;
  resize: vertical;
  padding: 0.5rem 0.75rem;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: hsl(var(--ring));
}

.form-button {
  width: 100%;
  margin-top: 1.5rem;
}

.form-button[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.privacy-note {
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1rem;
}

.site-footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-inner {
  padding-block: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand-block p {
  max-width: 24rem;
  margin-top: 1rem;
  color: hsl(var(--primary-foreground) / 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.footer-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.375rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.site-footer h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.site-footer a {
  color: hsl(var(--primary-foreground) / 0.7);
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: hsl(var(--accent-soft));
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 3rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  padding-top: 1.5rem;
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.75rem;
  line-height: 1rem;
}

.agency-credit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(0 0% 100% / 0.08);
}

.agency-credit-text {
  color: hsl(var(--primary-foreground) / 0.62);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  letter-spacing: 0.01em;
}

.agency-credit-text a {
  color: hsl(var(--primary-foreground) / 0.9);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.agency-credit-text a:hover {
  color: hsl(var(--accent-soft));
}

.agency-credit-text a:focus-visible {
  outline: 2px solid hsl(var(--accent-soft));
  outline-offset: 3px;
  border-radius: 0.25rem;
}


.agency-credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0;
  border-radius: 0.5rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.agency-credit-link:hover {
  opacity: 0.92;
  transform: translateY(-0.0625rem);
}

.agency-credit-link:focus-visible {
  outline: 2px solid hsl(var(--accent-soft));
  outline-offset: 4px;
}

.agency-credit-logo {
  display: block;
  width: auto;
  height: 2rem;
  max-width: 100%;
  object-fit: contain;
}

section[id] {
  scroll-margin-top: 5.25rem;
}

.legal-links {
  display: flex;
  gap: 1.25rem;
}

#toast-root {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: grid;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  max-width: min(24rem, calc(100vw - 2rem));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.875rem 1rem;
  box-shadow: var(--shadow-elegant);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transform: translateY(0.5rem);
  opacity: 0;
  animation: toast-in 0.2s ease forwards;
}

.toast-success {
  border-color: hsl(var(--accent) / 0.35);
}

@keyframes toast-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 639px) {
  .container-tight {
    padding-inline: 1rem;
  }

  .section,
  .hero-grid {
    padding-block: 4.25rem;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .desktop-cta .btn,
  .form-button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .service-card,
  .reason-card,
  .process-card,
  .pricing-card,
  .testimonial-card,
  .contact-form,
  .info-card {
    padding: 1.25rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    gap: 1rem;
  }

  .agency-credit {
    justify-content: center;
  }

}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  .savings-card {
    display: block;
  }

  .reason-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .span-2 {
    grid-column: span 2 / span 2;
  }

  .form-button {
    width: auto;
  }

  .contact-form {
    padding: 2.25rem;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }

  .agency-credit {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .desktop-nav,
  .desktop-cta {
    display: flex;
  }

  .mobile-menu-button,
  .mobile-menu {
    display: none !important;
  }

  .section,
  .hero-grid {
    padding-block: 7rem;
  }

  .about-grid h2,
  .why-grid h2,
  .section-heading h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .services-grid,
  .process-grid,
  .pricing-grid,
  .testimonials-grid {
    margin-top: 3.5rem;
  }

  .services-grid,
  .process-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 4rem;
  }

  .hero h1 {
    font-size: 3.75rem;
    line-height: 1.1;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: 1fr 1.4fr;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-line {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background: hsl(var(--border));
    transform: translate(50%, -50%);
  }

  .featured-pricing {
    transform: scale(1.03);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
