/* ===== CSS Variables ===== */
:root {
  /* Primary Colors - Ember & Brick Theme */
  --brick-900: #5C1A1A;
  --brick-800: #7A2424;
  --brick-700: #982E2E;
  --brick-600: #B63838;
  --brick-500: #C94A4A;
  --ember-500: #E86A33;
  --ember-400: #F28B4D;
  --ember-300: #FFAA6B;
  --cream-100: #FDF8F3;
  --cream-200: #F9F0E6;
  --cream-300: #F0E4D7;

  /* Neutrals */
  --charcoal-900: #1A1A1A;
  --charcoal-800: #2D2D2D;
  --charcoal-700: #404040;
  --charcoal-600: #525252;
  --charcoal-500: #6B6B6B;
  --charcoal-400: #8A8A8A;
  --charcoal-300: #A8A8A8;
  --charcoal-200: #D4D4D4;
  --charcoal-100: #F0F0F0;
  --white: #FFFFFF;

  /* Semantic */
  --primary: var(--brick-700);
  --primary-dark: var(--brick-800);
  --primary-light: var(--brick-500);
  --accent: var(--ember-500);
  --accent-light: var(--ember-400);
  --background: var(--white);
  --background-alt: var(--cream-100);
  --text: var(--charcoal-800);
  --text-light: var(--charcoal-500);
  --border: var(--charcoal-200);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 6rem;
  --container-width: 1200px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== Utility Classes ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--background-alt);
}

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

.section-tag {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.375rem;
  color: var(--text-light);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

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

.btn-white:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* ===== Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal-900);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal-700);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal-800);
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--white) 50%, var(--cream-200) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--cream-200) 100%);
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal-900);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-text > p {
  font-size: 1.375rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal-900);
}

.trust-label {
  font-size: 1.125rem;
  color: var(--text-light);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.browser-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--charcoal-100);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--charcoal-300);
}

.browser-dots span:first-child { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:last-child { background: #27CA40; }

.browser-address {
  flex: 1;
  padding: 0.375rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-light);
}

.browser-content {
  padding: 1rem;
}

.mockup-header {
  height: 30px;
  background: var(--charcoal-800);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.mockup-hero {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mockup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-line {
  height: 12px;
  background: var(--charcoal-200);
  border-radius: 4px;
}

.mockup-line.wide { width: 90%; }
.mockup-line.medium { width: 60%; }

.mockup-btn {
  width: 80px;
  height: 24px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.mockup-image {
  width: 100px;
  height: 80px;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
  border-radius: var(--radius-sm);
}

.mockup-cards {
  display: flex;
  gap: 0.5rem;
}

.mockup-card {
  flex: 1;
  height: 60px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.floating-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal-800);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Industries Section ===== */
.industries {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.industries-label {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.industries-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal-700);
}

.industry-icon {
  font-size: 1.75rem;
}

/* ===== Problem Section ===== */
.problem {
  background: var(--charcoal-900);
  color: var(--white);
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem .section-tag {
  color: var(--ember-400);
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.problem > .problem-content > p {
  font-size: 1.25rem;
  color: var(--charcoal-300);
  margin-bottom: 3rem;
}

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

.problem-stat {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ember-400);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.25rem;
  color: var(--charcoal-300);
}

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

.service-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 1.1875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1875rem;
  color: var(--charcoal-700);
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ===== Why Us Section ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.why-us-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-us-content > p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

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

.feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

.feature-text h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.visual-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

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

.author-info strong {
  display: block;
  color: var(--charcoal-900);
  font-size: 1.125rem;
}

.author-info span {
  font-size: 1rem;
  color: var(--text-light);
}

/* ===== Portfolio Section ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.portfolio-image {
  padding: 1.5rem;
  background: var(--charcoal-100);
}

.portfolio-mockup {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pm-header {
  height: 24px;
}

.pm-header.plumber { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.pm-header.hvac { background: linear-gradient(135deg, #0891b2, #0e7490); }
.pm-header.electric { background: linear-gradient(135deg, #f59e0b, #d97706); }

.pm-content {
  padding: 0.75rem;
}

.pm-hero-text {
  height: 30px;
  background: var(--charcoal-100);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.pm-cards {
  display: flex;
  gap: 0.25rem;
}

.pm-card {
  flex: 1;
  height: 20px;
  background: var(--charcoal-100);
  border-radius: 2px;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-category {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin: 0.5rem 0;
}

.portfolio-info p {
  font-size: 1.0625rem;
  color: var(--text-light);
}

/* ===== Process Section ===== */
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

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

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 240px;
  margin: 0 auto;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 30px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }
}

/* ===== Pricing Section ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 0.25rem;
}

.pricing-header p {
  font-size: 1.0625rem;
  color: var(--text-light);
}

.pricing-price {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal-900);
}

.price-term {
  font-size: 1.125rem;
  color: var(--text-light);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  color: var(--charcoal-700);
}

.pricing-features .check {
  color: var(--primary);
  font-weight: 700;
}

/* ===== FAQ Section ===== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal-900);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.125rem;
}

/* ===== CTA Section ===== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--brick-900) 100%);
  text-align: center;
}

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

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

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

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

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

.method-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.125rem;
}

.contact-method a {
  color: var(--charcoal-900);
  font-size: 1.125rem;
  font-weight: 500;
}

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

.contact-guarantee {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream-100);
  border-radius: var(--radius-lg);
}

.guarantee-icon {
  font-size: 1.75rem;
}

.contact-guarantee strong {
  display: block;
  color: var(--charcoal-900);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-guarantee p {
  font-size: 1rem;
  color: var(--text-light);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.125rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(152, 46, 46, 0.1);
}

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

/* ===== Footer ===== */
.footer {
  background: var(--charcoal-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--charcoal-400);
  font-size: 1.0625rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: var(--charcoal-400);
  font-size: 1.0625rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 1rem;
  color: var(--charcoal-500);
}

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

  .hero-text > p {
    max-width: 100%;
  }

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

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

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .why-us-visual {
    order: -1;
    max-width: 500px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-divider {
    display: none;
  }

  .industries-grid {
    gap: 1.5rem 2rem;
  }

  .problem-stats {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .process-grid {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 280px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .browser-mockup {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .floating-badge {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }
}

/* Monthly Plans Section */
.monthly-plans {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.monthly-plans-header {
    text-align: center;
    margin-bottom: 40px;
}

.monthly-plans-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.monthly-plans-header p {
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .pricing-grid.three-col {
        grid-template-columns: 1fr;
    }
}

.pricing-note {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 20px;
}
