/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Harmonious, tailored color palette */
  --navy: #0d4f78;
  --navy-2: #0b4267;
  --deep: #06283f;
  --ink: #0b1523;
  --muted: #4e5f73;
  --line: #e2eaf0;
  --bg: #f8fafc;
  --white: #ffffff;
  --accent: #0aa7c5;
  --accent-2: #32c08d;
  --accent-gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --dark-gradient: linear-gradient(135deg, var(--navy), var(--deep));
  
  /* Drop shadow & animations */
  --shadow-sm: 0 4px 12px rgba(13, 79, 120, 0.04);
  --shadow-md: 0 12px 30px rgba(13, 79, 120, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 79, 120, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  
  /* Fonts */
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout Transitions */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

.section {
  padding: 100px 0; /* Premium, spacious layout */
}

.section-soft {
  background: var(--bg);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Grid helper utilities */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.section-head {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
}

h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--deep);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(13, 79, 120, 0.15);
}

.btn-dark:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 79, 120, 0.22);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  height: 86px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--deep);
  border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: rgba(13, 79, 120, 0.04);
}

.chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: none;
  background: var(--navy);
  color: var(--white);
}

.header-cta .btn:hover {
  background: var(--navy-2);
}

/* Dropdown Mega-Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.mega-menu {
  width: 650px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* For service dropdown, 5 items makes 3 rows, or we span last one full width */
.mega-menu-item {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  align-items: flex-start;
}

.mega-menu-item:hover {
  background: rgba(10, 167, 197, 0.05);
}

.mega-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(13, 79, 120, 0.06);
  color: var(--navy);
}

.mega-icon svg {
  width: 20px;
  height: 20px;
}

.mega-menu-item:hover .mega-icon {
  background: var(--navy);
  color: var(--white);
}

.mega-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-text h4 {
  color: var(--accent);
}

.mega-text p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: radial-gradient(circle at 80% 30%, rgba(10, 167, 197, 0.25), transparent 45%), var(--dark-gradient);
  overflow: hidden;
  padding: 80px 0;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.8;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 740px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
}

.hero-actions, .section-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-row span:before {
  content: "✓";
  color: var(--accent-2);
  font-weight: 900;
}

.page-hero {
  background: var(--dark-gradient);
  color: var(--white);
  padding: 100px 0;
  text-align: left;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  max-width: 800px;
}

/* ==========================================================================
   CARDS & GRID BLOCKS
   ========================================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(13, 79, 120, 0.2);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(10, 167, 197, 0.08);
  color: var(--navy);
  margin-bottom: 24px;
}

.icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.card h3 {
  margin-bottom: 12px;
}

.card p, .card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Prototype Card Styling */
.prototype-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.prototype-card .tag {
  align-self: flex-start;
  background: rgba(10, 167, 197, 0.08);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prototype-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prototype-card a:hover {
  color: var(--accent);
}

.prototype-card a:after {
  content: "→";
  transition: transform 0.2s ease;
}

.prototype-card a:hover:after {
  transform: translateX(4px);
}

/* Steps list */
.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 68px;
}

.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 15px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
}

/* Check list */
.check-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  color: var(--muted);
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(50, 192, 141, 0.1);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

/* CTA Band */
.cta-band {
  background: radial-gradient(circle at 90% 10%, rgba(10, 167, 197, 0.2), transparent 40%), var(--dark-gradient);
  color: var(--white);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  font-size: 18px;
}

/* ==========================================================================
   SERVICES & DETAIL PAGES
   ========================================================================== */
.service-list {
  display: grid;
  gap: 30px;
}

.service-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 79, 120, 0.15);
}

.service-item h2 {
  margin-bottom: 24px;
}

.service-item ul {
  columns: 2;
  gap: 40px;
  list-style: none;
}

.service-item li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 16px;
}

.service-item li:before {
  content: "•";
  color: var(--accent);
  font-size: 24px;
  position: absolute;
  left: 4px;
  top: -4px;
}

/* Workflow Panel */
.workflow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.workflow span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.workflow span:after {
  content: " →";
  color: var(--accent);
}

.workflow span:last-child:after {
  content: "";
}

/* Demo Panel (Interactive Simulator look) */
.demo-panel {
  background: #081726;
  color: #c9d8e5;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.demo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-row:last-child {
  border-bottom: 0;
}

.demo-label {
  color: #799cb3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  border-radius: 99px;
  padding: 6px 14px;
  background: rgba(10, 167, 197, 0.15);
  color: #bbf3ff;
  font-weight: 800;
  font-size: 12px;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-card {
  max-width: 800px;
  margin: 0 auto;
}

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

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: span 2;
}

.field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep);
  margin-bottom: 8px;
}

.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  transition: var(--transition);
  color: var(--ink);
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13, 79, 120, 0.08);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  display: none;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 15px;
}

.alert-success {
  background: rgba(50, 192, 141, 0.1);
  color: #1a7f58;
}

.alert-error {
  background: rgba(224, 76, 76, 0.1);
  color: #9d2020;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 48px 36px;
  position: relative;
  transition: var(--transition);
  border-radius: var(--radius);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-tier {
  display: inline-block;
  align-self: center;
  background: rgba(10, 167, 197, 0.08);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-amount {
  margin: 18px 0;
}

.price-from {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.price-value {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price-period {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.pricing-desc {
  color: var(--muted);
  font-size: 15px;
  min-height: 48px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.pricing-features li:last-child {
  border-bottom: 0;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--accent-2);
  font-weight: 900;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-cta .btn {
  width: 100%;
}

.pricing-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.pricing-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 16px 45px rgba(10, 167, 197, 0.15);
}

.pricing-card-featured .pricing-tier {
  background: var(--accent-gradient);
  color: var(--white);
}

.pricing-card-featured .btn {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pricing-card-featured .btn:hover {
  background: var(--navy-2);
}

.calendly-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.calendly-fallback {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.calendly-fallback a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #b2c4d6;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  height: 38px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  color: #b2c4d6;
  margin-bottom: 12px;
  font-size: 15px;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer p {
  color: #8b9fb2;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.legal-small {
  font-size: 13px;
  color: #647a90;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 28px;
  color: #647a90;
  font-size: 14px;
}

/* Mini Table Helper */
.mini-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}

.mini-table th, .mini-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.mini-table th {
  background: #f1f5f9;
  color: var(--navy);
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 992px) {
  .site-header {
    height: 80px;
  }
  
  .nav-wrap {
    height: 80px;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 30px 5vw;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
    justify-content: space-between;
  }
  
  .chevron {
    transform: rotate(-90deg);
  }
  
  .nav-item.open .chevron {
    transform: rotate(0deg);
  }

  /* Mobile Dropdown styles: Expandable accordions */
  .dropdown:hover .dropdown-menu,
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 5px 0 10px 10px;
    display: none;
    max-height: none;
  }
  
  .nav-item.open .dropdown-menu {
    display: block;
    margin-top: 4px;
  }

  .mega-menu {
    width: 100%;
  }
  
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .mega-menu-item {
    padding: 8px 12px;
    gap: 12px;
  }
  
  .mega-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
  }
  
  .mega-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .mega-text h4 {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .mega-text p {
    display: none; /* Hide descriptions on mobile to save vertical space */
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    min-height: auto;
    padding: 80px 0;
  }
  
  .hero-content {
    margin-left: 0;
  }
  
  .grid-2, .grid-3, .grid-4, .split, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-item ul {
    columns: 1;
    gap: 10px;
  }
  
  .cta-band {
    display: block;
    padding: 40px;
    text-align: center;
  }
  
  .cta-band p {
    margin-bottom: 24px;
    font-size: 16px;
  }
  
  .footer-bottom {
    display: block;
    text-align: center;
  }
  
  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .field-full {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-actions, .section-actions {
    flex-direction: column;
  }
}
