/* ==========================================================================
   Growvant Global Consulting - Premium Stylesheet
   Design Philosophy: "Less is more. Simplicity is luxury."
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design System Tokens
   -------------------------------------------------------------------------- */
:root {
  --color-navy: #0D2147;
  --color-navy-dark: #07132B;
  --color-navy-light: #162E5C;
  --color-teal: #20B2AA;
  --color-teal-bright: #3ECFB2;
  --color-teal-dark: #16857F;
  --color-teal-light: rgba(32, 178, 170, 0.1);
  --color-charcoal: #1C2B3A;
  --color-grey-bg: #F4F6F9;
  --color-grey-card: #FFFFFF;
  --color-grey-border: #E2E8F0;
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-white: #FFFFFF;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(13, 33, 71, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 33, 71, 0.08);
  --shadow-lg: 0 16px 40px rgba(13, 33, 71, 0.12);
  --shadow-hover: 0 20px 48px rgba(13, 33, 71, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1240px;
  --header-height: 84px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-white);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(32, 178, 170, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 178, 170, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background-color: var(--color-grey-bg);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Navbar Section
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #eceff1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(207, 216, 220, 0.8);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  height: 72px;
  box-shadow: var(--shadow-sm);
  background-color: #eceff1;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

}

.nav-brand img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-teal);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 12px 24px;
}

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

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  margin: 5px 0;
  transition: all var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  background: linear-gradient(135deg, #0D2147 0%, #07132B 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(32, 178, 170, 0.15) 0%, rgba(13, 33, 71, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-teal-bright);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-teal-bright);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--color-teal-bright);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   6. About Section
   -------------------------------------------------------------------------- */
.about {
  background-color: var(--color-grey-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--color-teal);
  position: relative;
}

.founder-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(32, 178, 170, 0.12);
  line-height: 1;
  pointer-events: none;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.founder-avatar-placeholder {
  width: 64px;
  height: 64px;
  background: var(--color-navy);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.founder-meta h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
}

.founder-meta p.role {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-meta p.company {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.founder-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-main);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   7. Core Services Section
   -------------------------------------------------------------------------- */
.services {
  background-color: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-teal);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-teal-light);
  color: var(--color-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--color-teal);
  color: var(--color-white);
}

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

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.service-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   8. Process Section (Growth Framework)
   -------------------------------------------------------------------------- */
.process {
  background-color: var(--color-navy);
  color: var(--color-white);
  position: relative;
}

.process .section-title {
  color: var(--color-white);
}

.process .section-description {
  color: #94A3B8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 60px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal) 0%, rgba(62, 207, 178, 0.2) 100%);
  z-index: 1;
}

.process-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: var(--color-teal);
}

.process-number {
  width: 54px;
  height: 54px;
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(32, 178, 170, 0.4);
}

.process-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   9. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-us {
  background-color: var(--color-grey-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-point-card {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-fast);
}

.why-point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.why-point-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.why-statement-box {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--color-teal);
}

.why-statement-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-teal-bright);
}

.why-statement-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #E2E8F0;
}

/* --------------------------------------------------------------------------
   10. Who We Help Section
   -------------------------------------------------------------------------- */
.who-we-help {
  background-color: var(--color-white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.client-card {
  background-color: var(--color-grey-bg);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.client-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-teal);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.client-icon {
  width: 64px;
  height: 64px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.client-card:hover .client-icon {
  background: var(--color-teal);
  color: var(--color-white);
}

.client-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.client-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Testimonials / Trust Section
   -------------------------------------------------------------------------- */
.testimonials {
  background-color: var(--color-grey-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-grey-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  background-color: var(--color-teal-light);
  color: var(--color-teal-dark);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.author-company {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   12. Contact / Lead Form Section
   -------------------------------------------------------------------------- */
.contact {
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.contact-info-panel h2 {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.contact-info-panel p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-feature-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-wrapper {
  background-color: var(--color-grey-bg);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-grey-border);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-grey-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.form-status {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-status.error {
  display: block;
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* --------------------------------------------------------------------------
   13. Footer Section
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.95rem;
  color: #94A3B8;
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9375rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-teal-bright);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #CBD5E1;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   14. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-grid::before { display: none; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 2rem; }

  /* Navbar Mobile Menu */
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #eceff1;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }
  .nav-menu.active { clip-path: circle(140% at 100% 0); }
  .nav-cta { width: 100%; text-align: center; }

  /* Grids Stack */
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title { font-size: 2.25rem; }
  .services-grid,
  .client-grid,
  .why-points {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
