:root {
  --navy: #1a2e44;
  --navy-light: #2a4a6a;
  --gold: #f5a623;
  --gold-light: #ffd180;
  --teal: #0097a7;
  --teal-light: #4dd0e1;
  --cream: #faf8f5;
  --white: white;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --shadow-sm: 0 2px 8px rgba(26, 46, 68, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 46, 68, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 46, 68, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px; }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden; }

h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', serif;
  color: var(--navy);
  line-height: 1.2; }

/*
 * Navigation
 */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 2rem; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo {
  display: flex;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none; }
  .logo svg {
    width: 1em;
    height: 1em;
    margin-right: 2px;
    margin-bottom: 1px; }
  .logo .revenue {
    color: var(--navy); }
  .logo .hire {
    color: var(--teal); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease; }

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease !important; }

.nav-cta:hover {
  background: var(--teal) !important;
  transform: translateY(-2px); }

/*
 * Buttons
 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8941f 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4); }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.5); }

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

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy); }

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

/*
 * Hero Section
 */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden; }

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 151, 167, 0.08) 0%, transparent 70%);
  pointer-events: none; }

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none; }

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1; }

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1; }

.hero-content h1 span {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 540px; }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem; }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); }

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--gold); }

.trust-badge span {
  font-weight: 600;
  color: var(--navy); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative; }

.hero-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.5; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; }

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md); }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1; }

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.5rem; }

/*
 * Section Styles
 */
section {
  padding: 6rem 2rem; }

.section-container {
  max-width: 1200px;
  margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem; }

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem; }

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem; }

.section-header p {
  color: var(--gray-500);
  font-size: 1.125rem; }

/*
 * About Section
 */
.about {
  background: var(--white); }

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

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem; }

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-700); }

.founder-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  position: relative; }

.founder-quote::before {
  content: '“';
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  position: absolute;
  top: -1rem;
  left: 1rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1; }

.founder-quote p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 0; }

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal); }

.pain-point svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.125rem; }

.pain-point h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem; }

.pain-point p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0; }

/*
 * Services Section
 */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden; }

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease; }

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

.service-card:hover::after {
  transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; }

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white); }

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem; }

.service-card p {
  color: var(--gray-500);
  margin-bottom: 1.5rem; }

.service-list {
  list-style: none; }

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.938rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100); }

.service-list li:last-child {
  border-bottom: none; }

.service-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0; }

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

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5; }

.process .section-header {
  position: relative;
  z-index: 1; }

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

.process .section-header p {
  color: rgba(255, 255, 255, 0.7); }

.process .section-label {
  color: var(--gold); }

.precise-method {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1; }

.precise-letter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease; }

.precise-letter:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px); }

.precise-letter .letter {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem; }

.precise-letter .word {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem; }

.precise-letter .desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4; }

  .process-pipeline h3 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.5rem; }

.pipeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 2rem 0; }

.pipeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 100%);
  transform: translateY(-50%);
  z-index: 0; }

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1; }

.pipeline-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.2); }

.pipeline-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy); }

.pipeline-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem; }

.pipeline-step p {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 120px; }

/*
 * AI Features Section
 */
.ai-features {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; }

.ai-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease; }

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

.ai-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 2rem;
  text-align: center;
  position: relative; }

.ai-card-header::after {
  content: 'AI-POWERED';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(245, 166, 35, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px; }

.ai-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem; }

.ai-icon svg {
  width: 36px;
  height: 36px;
  color: var(--navy); }

.ai-card-header h3 {
  color: var(--white);
  font-size: 1.375rem; }

.ai-card-body {
  padding: 2rem; }

.ai-card-body p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 0.938rem; }

.ai-form {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

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

.ai-form select,
.ai-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.938rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white); }

.ai-form select:focus,
.ai-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 151, 167, 0.1); }

.ai-btn {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: var(--white);
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.938rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; }

.ai-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 167, 0.4); }

.ai-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal);
  display: none; }

.ai-result.active {
  display: block;
  animation: slideIn 0.4s ease; }

@keyframes slideIn {
    from {
    opacity: 0;
    transform: translateY(10px); }


    to {
    opacity: 1;
    transform: translateY(0); }
 }
.ai-result h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--teal); }

.ai-result p {
  font-size: 0.875rem;
  margin: 0; }

/*
 * Results Section
 */
.results {
  background: var(--cream); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; }

.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease; }

.result-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px); }

.result-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem; }

.result-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal); }

.result-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem; }

.result-card p {
  color: var(--gray-500);
  font-size: 0.938rem; }

/*
 * Testimonials Section
 */
.testimonials {
  background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; }

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; }

.testimonial-card::before {
  content: '“';
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1; }

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem; }

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem; }

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.125rem; }

.author-info span {
  font-size: 0.875rem;
  color: var(--gray-500); }

/*
 * Insights Section
 */
.blog {
  background: var(--cream); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease; }

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px); }

.blog-image {
  height: 140px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center; }

.blog-image svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.5; }

.blog-content {
  padding: 1.5rem; }

.blog-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3; }

.blog-content p {
  font-size: 0.813rem;
  color: var(--gray-500);
  margin-bottom: 1rem; }

.blog-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease; }

.blog-link:hover {
  gap: 0.75rem; }

/*
 * CTA Section
 */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden; }

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.15) 0%, transparent 70%); }

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem; }

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem; }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start; }

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem; }

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 2rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem; }

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center; }

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal); }

.contact-method-text h4 {
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.25rem; }

.contact-method-text a,
.contact-method-text span {
  font-size: 1.125rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500; }

.contact-method-text a:hover {
  color: var(--teal); }

.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

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

.form-group .required {
  color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: all 0.3s ease; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 151, 167, 0.1); }

.form-group textarea {
  resize: vertical;
  min-height: 120px; }

.contact-form .btn {
  justify-content: center; }

/*
 * Footer
 */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 2rem; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto; }

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem; }

    footer .logo .revenue {
      color: var(--white); }

.footer-tagline {
  font-size: 0.875rem;
  margin-top: 0.25rem; }

.footer-links {
  display: flex;
  gap: 2rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.938rem;
  transition: color 0.3s ease; }

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

.footer-bottom {
  text-align: center;
  font-size: 0.875rem; }

/*
 * Mobile Responsive
 */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center; }

  .hero-content {
    order: 1; }

  .hero-visual {
    order: 2; }

  .hero-subtitle {
    margin: 0 auto 2rem; }

  .hero-ctas {
    justify-content: center; }

  .trust-badge {
    margin: 0 auto; }

  .services-grid,
  .ai-grid,
  .results-grid {
    grid-template-columns: repeat(2, 1fr); }

  .precise-method {
    grid-template-columns: repeat(4, 1fr); }

  .pipeline {
    flex-wrap: wrap;
    gap: 2rem; }

  .pipeline::before {
    display: none; }

  .pipeline-step {
    flex: 0 0 calc(33.333% - 1.5rem); }

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

  .testimonials-grid {
    grid-template-columns: 1fr; }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  nav {
    padding: 1rem; }

  .nav-links {
    display: none; }

  section {
    padding: 4rem 1.5rem; }

  .services-grid,
  .ai-grid,
  .results-grid {
    grid-template-columns: 1fr; }

  .precise-method {
    grid-template-columns: repeat(2, 1fr); }

  .pipeline-step {
    flex: 0 0 calc(50% - 1rem); }

  .blog-grid {
    grid-template-columns: 1fr; }

  .form-row {
    grid-template-columns: 1fr; }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center; }

  .stat-grid {
    grid-template-columns: 1fr; } }

