/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

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

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
  /* Enhanced Color Palette */
  --primary-blue: #1E40AF;
  --primary-blue-dark: #1E3A8A;
  --primary-blue-light: #3B82F6;
  --secondary-green: #059669;
  --secondary-green-dark: #047857;
  --secondary-green-light: #10B981;
  --neutral-gray: #F3F4F6;
  --neutral-gray-dark: #E5E7EB;
  --neutral-gray-light: #F9FAFB;
  --text-dark: #111827;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --accent-orange: #F59E0B;
  --accent-purple: #8B5CF6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-dark: rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --h1-size: clamp(36px, 5vw, 48px);
  --h2-size: clamp(28px, 4vw, 36px);
  --h3-size: clamp(20px, 3vw, 24px);
  --body-size: clamp(16px, 2vw, 18px);
  --small-size: clamp(14px, 1.5vw, 16px);
  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-loose: 1.8;
  
  /* Spacing */
  --section-padding: clamp(40px, 8vw, 80px);
  --container-max-width: 1200px;
  --grid-gap: 20px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px var(--shadow-color);
  --shadow-md: 0 4px 8px var(--shadow-color);
  --shadow-lg: 0 8px 16px var(--shadow-color);
  --shadow-xl: 0 12px 24px var(--shadow-color-dark);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: var(--line-height-normal);
  font-size: var(--body-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--accent-purple) 100%);
  padding: calc(var(--section-padding) * 1.5) 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
  z-index: 1;
}

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

.hero h1 {
  font-size: var(--h1-size);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.hero .hero-subtitle {
  font-size: clamp(18px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-loose);
  font-weight: 300;
}

.hero .cta-button {
  background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: var(--body-size);
  display: inline-block;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  transform: translateY(0);
}

.hero .cta-button:hover,
.hero .cta-button:focus {
  background: linear-gradient(135deg, var(--secondary-green-dark), var(--secondary-green));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero .trust-indicator {
  margin-top: 2rem;
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Value Proposition Section */
.value-prop {
  padding: var(--section-padding) 0;
  background: linear-gradient(to bottom, var(--neutral-gray-light), var(--neutral-gray));
  text-align: center;
  position: relative;
}

.value-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card svg {
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  filter: drop-shadow(0 2px 4px rgba(30, 64, 175, 0.2));
}

.value-card:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.3));
}

.value-card svg path {
  transition: fill var(--transition-normal);
}

.value-card:hover svg path {
  fill: var(--primary-blue-light);
}

.value-card h3 {
  font-size: var(--h3-size);
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.value-card p {
  font-size: var(--body-size);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-normal);
}

.value-card p:first-of-type {
  font-weight: 500;
  color: var(--primary-blue-dark);
}

.value-card p:last-of-type {
  color: var(--text-light);
  font-size: var(--small-size);
}

/* Services Section */
.services {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--white);
}

.services h2 {
  font-size: var(--h2-size);
  color: var(--primary-blue);
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
  position: relative;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  border-radius: 2px;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-gray-dark);
  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.service-card.popular {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--secondary-green);
  position: relative;
}

.service-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card.popular:hover {
  transform: translateY(-15px);
}

.service-card h3 {
  font-size: var(--h3-size);
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.service-card .price {
  font-size: var(--h2-size);
  color: var(--secondary-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: var(--line-height-tight);
}

.service-card .duration {
  font-size: var(--body-size);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card ul li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
  line-height: var(--line-height-normal);
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: bold;
  font-size: 1.1em;
}

.service-card .cta-button {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all var(--transition-normal);
  display: inline-block;
  box-shadow: var(--shadow-sm);
  font-size: var(--small-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.service-card .cta-button:hover,
.service-card .cta-button:focus {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* About Us Section */
.about {
  padding: var(--section-padding) 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--neutral-gray-light), var(--white));
}

.about h2 {
  font-size: var(--h2-size);
  color: var(--primary-blue);
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
  position: relative;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  border-radius: 2px;
}

.founder-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-gray-dark);
  position: relative;
  overflow: hidden;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--neutral-gray-dark);
  transition: border-color var(--transition-normal);
  position: relative;
}

.founder-card:hover .founder-photo {
  border-color: var(--primary-blue-light);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card h3 {
  font-size: var(--h3-size);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.founder-card .title {
  font-size: var(--body-size);
  color: var(--secondary-green);
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-style: italic;
}

.founder-card .credentials {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}

.founder-card .credentials li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
  line-height: var(--line-height-normal);
  font-size: var(--small-size);
}

.founder-card .credentials li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: bold;
}

.founder-card .linkedin-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-blue);
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  display: inline-block;
  font-size: var(--small-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-card .linkedin-link:hover,
.founder-card .linkedin-link:focus {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.achievements-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.achievements-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.achievements-banner > * {
  position: relative;
  z-index: 2;
}

.achievement {
  font-size: var(--body-size);
  font-weight: 700;
  text-align: center;
  flex: 1 1 auto;
  min-width: 150px;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Case Study Section */
.case-study {
  padding: var(--section-padding) 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--white), var(--neutral-gray-light));
}

.case-study h2 {
  font-size: var(--h2-size);
  color: var(--primary-blue);
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
  position: relative;
}

.case-study h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  border-radius: 2px;
}

.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.case-study-content h3 {
  font-size: var(--h3-size);
  color: var(--secondary-green);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-study-content p {
  font-size: var(--body-size);
  color: var(--text-dark);
  line-height: var(--line-height-normal);
  max-width: 600px;
}

.case-study-content .metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.case-study-content .metric {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 20px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  min-width: 180px;
  text-align: center;
}

.case-study-content .metric:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

blockquote {
  font-size: var(--h3-size);
  font-style: italic;
  margin-top: 3rem;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary-green);
  line-height: var(--line-height-loose);
}

blockquote::before {
  content: '\201C'; /* Left double quotation mark */
  font-size: 4em;
  color: var(--secondary-green);
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  line-height: 1;
  opacity: 0.3;
}

blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: var(--body-size);
  color: var(--primary-blue);
  font-style: normal;
  font-weight: 600;
  position: relative;
}

blockquote cite::before {
  content: '— ';
  color: var(--secondary-green);
}

/* Process Section */
.process {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--white);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neutral-gray-dark), transparent);
}

.process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neutral-gray-dark), transparent);
}

.process h2 {
  font-size: var(--h2-size);
  color: var(--primary-blue);
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
  position: relative;
}

.process h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  border-radius: 2px;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .process-flow {
    flex-direction: row;
    justify-content: space-around;
  }
}

.process-step {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-gray-dark);
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.process-step .step-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--h3-size);
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.process-step h3 {
  font-size: var(--h3-size);
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.process-step p {
  font-size: var(--body-size);
  color: var(--text-dark);
  line-height: var(--line-height-normal);
  margin-bottom: 0.5rem;
}

.process-step p:last-child {
  margin-bottom: 0;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  padding: calc(var(--section-padding) * 1.2) 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  z-index: 1;
}

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

.cta .cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta .cta-content {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
}

.cta-benefits h2 {
  font-size: var(--h2-size);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.cta-benefits p {
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-normal);
  font-weight: 300;
}

.cta-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefits ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
  font-size: var(--body-size);
  line-height: var(--line-height-normal);
  color: rgba(255, 255, 255, 0.95);
}

.cta-benefits ul li::before {
  content: '\2713'; /* Checkmark icon */
  color: var(--secondary-green-light);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  top: -2px;
}

.cta-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 450px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form input,
.cta-form textarea {
  padding: 1rem;
  border: 2px solid var(--neutral-gray-dark);
  border-radius: var(--border-radius);
  font-size: var(--body-size);
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-family);
  transition: all var(--transition-normal);
  background-color: var(--white);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
  transform: translateY(-1px);
}

.cta-form input:valid {
  border-color: var(--secondary-green);
}

.cta-form input:invalid:not(:placeholder-shown) {
  border-color: #EF4444;
}

.cta-form button {
  background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
  color: var(--white);
  padding: 1.25rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: var(--body-size);
  font-family: var(--font-family);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transform: translateY(0);
}

.cta-form button:hover,
.cta-form button:focus {
  background: linear-gradient(135deg, var(--secondary-green-dark), var(--secondary-green));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-form .privacy-note {
  font-size: var(--small-size);
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
  line-height: var(--line-height-normal);
  font-style: italic;
}

/* Footer Section */
.footer {
  background: linear-gradient(135deg, var(--text-dark), #0F172A);
  color: var(--white);
  padding: var(--section-padding) 0;
  font-size: var(--small-size);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
}

.footer-brand h3 {
  font-size: var(--h3-size);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-normal);
  font-weight: 300;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
  font-size: var(--body-size);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-contact h4::after,
.footer-links h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-green);
  border-radius: 1px;
}

.footer-contact p,
.footer-links ul li,
.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.75rem;
  display: block;
  line-height: var(--line-height-normal);
  transition: color var(--transition-normal);
}

.footer-links ul li a:hover,
.footer-links ul li a:focus,
.footer-social a:hover,
.footer-social a:focus {
  color: var(--secondary-green-light);
  transform: translateX(2px);
}

.footer-links ul li a,
.footer-social a {
  transition: all var(--transition-normal);
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-size);
  font-weight: 300;
}

/* Accessibility & Global Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
  transition: outline var(--transition-fast);
}

.cta-button:focus {
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.3);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Spacing Enhancements */
section {
  position: relative;
}

/* Enhanced Responsiveness */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .grid-gap {
    --grid-gap: 15px;
  }
  
  .hero {
    padding: calc(var(--section-padding) * 0.8) 0;
  }
  
  .cta-form {
    padding: 2rem 1.5rem;
  }
}

/* Print Styles */
@media print {
  .hero,
  .cta {
    background: var(--white) !important;
    color: var(--text-dark) !important;
  }
  
  .hero h1,
  .hero .hero-subtitle {
    color: var(--text-dark) !important;
  }
  
  .cta-form {
    display: none;
  }
  
  .founder-photo {
    break-inside: avoid;
  }
}