/* ============================================
   Rasberry Solutions - Brand Stylesheet
   Color Palette from Logo:
   - Deep Navy: #0a1628
   - Raspberry Red: #e11d48
   - Pure White: #ffffff
   - Leaf Green: #22c55e
   - Soft Gray: #94a3b8
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --navy-deep: #0a1628;
  --navy-mid: #111d32;
  --navy-light: #1a2942;
  --raspberry: #e11d48;
  --raspberry-hover: #be123c;
  --raspberry-glow: rgba(225, 29, 72, 0.15);
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --leaf-green: #22c55e;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-deep);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.9;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--raspberry);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--white);
  background: var(--raspberry);
}

.nav-link.active:hover {
  background: var(--raspberry-hover);
}

/* ============================================
   Layout & Containers
   ============================================ */

.main {
  padding-top: 72px;
}

.section {
  padding: 5rem 2rem;
}

.section--hero {
  padding: 6rem 2rem 5rem;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--raspberry-glow), transparent),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

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

.section--dark {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.container--narrow {
  max-width: 800px;
}

/* ============================================
   Typography
   ============================================ */

.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.heading-sm {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.text-lg {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--gray-300);
}

.text-md {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.text-accent {
  color: var(--raspberry);
}

.text-green {
  color: var(--leaf-green);
}

/* ============================================
   Hero Section
   ============================================ */

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

.hero-content {
  max-width: 580px;
}

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

/* Testimonial Card */
.testimonial-card {
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(225, 29, 72, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  color: var(--raspberry);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}

.testimonial-author-role {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-stat {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.2s ease;
}

.hero-stat:hover {
  border-color: rgba(225, 29, 72, 0.3);
  transform: translateY(-2px);
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--raspberry);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.25);
  color: var(--raspberry);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-description {
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--raspberry);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.btn--primary:hover {
  background: var(--raspberry-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .text-md {
  max-width: 600px;
  margin: 0 auto;
}

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

/* ============================================
   Who We Are
   ============================================ */

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

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-container {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.about-logo-container img {
  width: 200px;
  height: auto;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.philosophy-box {
  background: var(--navy-light);
  border-left: 3px solid var(--raspberry);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.philosophy-box p {
  margin: 0;
  color: var(--gray-300);
  font-style: italic;
}

/* ============================================
   What We Do
   ============================================ */

.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.intro-text p {
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.8;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pain-point {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s ease;
}

.pain-point:hover {
  border-color: rgba(225, 29, 72, 0.3);
  background: rgba(225, 29, 72, 0.03);
}

.pain-point-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--raspberry);
}

.pain-point p {
  margin: 0;
  color: var(--gray-300);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.focus-statement {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 1rem;
}

.focus-statement p {
  font-size: 1.0625rem;
  color: var(--gray-300);
}

/* ============================================
   How We Work
   ============================================ */

.approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.approach-content p {
  font-size: 1.0625rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ============================================
   Strategy Session CTA
   ============================================ */

.cta-card {
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(225, 29, 72, 0.08) 100%);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card .heading-md {
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--gray-300);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-card p:last-of-type {
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-method svg {
  width: 18px;
  height: 18px;
  color: var(--raspberry);
}

/* ============================================
   Services
   ============================================ */

.services-category {
  margin-bottom: 4rem;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: var(--raspberry-glow);
  border: 1px solid rgba(225, 29, 72, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 24px;
  height: 24px;
  color: var(--raspberry);
}

.category-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.category-subtitle {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 0.125rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  transition: all 0.2s ease;
}

.service-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.625rem;
  flex-wrap: wrap;
}

.service-name {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--white);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.service-duration {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.service-price {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--raspberry);
}

.service-price--free {
  color: var(--leaf-green);
}

.service-description {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-deliverable {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  font-style: italic;
}

/* ============================================
   Promo Banner
   ============================================ */

.promo-banner {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}

.promo-banner p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-300);
}

.promo-banner strong {
  color: var(--leaf-green);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-hero {
  padding: 8rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 30%, var(--raspberry-glow), transparent),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

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

.contact-content .heading-xl {
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  text-align: left;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--raspberry) 0%, var(--raspberry-hover) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}

.contact-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-role {
  font-size: 0.9375rem;
  color: var(--gray-400);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy-deep);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.contact-detail:hover {
  border-color: rgba(225, 29, 72, 0.3);
  background: rgba(225, 29, 72, 0.05);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--raspberry-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--raspberry);
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
}

.contact-location {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.contact-location p {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.contact-location strong {
  color: var(--gray-300);
}

/* ============================================
   Success Stories Page
   ============================================ */

.section--stories-hero {
  padding: 8rem 2rem 5rem;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 20%, var(--raspberry-glow), transparent),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

.stories-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stories-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.story-card {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.story-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.story-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.story-tag--website {
  background: rgba(34, 197, 94, 0.15);
  color: var(--leaf-green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.story-tag--automation {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.story-tag--ai {
  background: rgba(225, 29, 72, 0.15);
  color: var(--raspberry);
  border: 1px solid rgba(225, 29, 72, 0.3);
}

.story-header {
  margin-bottom: 1.5rem;
}

.story-client {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-client-industry {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-client-location {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.story-content {
  margin-bottom: 2rem;
}

.story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 600px;
}

.story-section {
  margin-bottom: 1.75rem;
}

.story-section:last-child {
  margin-bottom: 0;
}

.story-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--raspberry);
  margin-bottom: 0.625rem;
}

.story-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-300);
}

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

.story-result {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.story-result-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--raspberry);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.story-result-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.story-quote {
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(225, 29, 72, 0.05) 100%);
  border-left: 3px solid var(--raspberry);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
}

.story-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-300);
  line-height: 1.65;
  margin: 0;
}

/* Success Stories Responsive */
@media (max-width: 768px) {
  .section--stories-hero {
    padding: 6rem 1.5rem 3.5rem;
  }
  
  .story-card {
    padding: 1.75rem;
  }
  
  .story-tag {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .story-results {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .story-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1.25rem;
  }
  
  .story-result-number {
    font-size: 1.5rem;
    margin-bottom: 0;
    min-width: 60px;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-proof {
    max-width: 500px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-visual {
    order: -1;
  }
  
  .about-logo-container {
    width: 220px;
    height: 220px;
  }
  
  .about-logo-container img {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 1.5rem;
  }
  
  .section--hero {
    padding: 4rem 1.5rem 3.5rem;
  }
  
  .nav-container {
    padding: 0 1rem;
    height: 60px;
  }
  
  .main {
    padding-top: 60px;
  }
  
  .nav-logo {
    gap: 0.5rem;
  }
  
  .nav-logo img {
    height: 32px;
  }
  
  .nav-logo-text {
    font-size: 1rem;
  }
  
  .nav-links {
    gap: 0.25rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
  
  .pain-points-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-card {
    padding: 2rem 1.5rem;
  }
  
  .service-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-hero {
    padding: 6rem 1.5rem 4rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-person {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .nav-logo-text {
    display: none;
  }
  
  .nav-logo img {
    height: 36px;
  }
  
  .nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1.25rem;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  
  .hero-stat-label {
    font-size: 0.8125rem;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .contact-detail {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  
  .contact-detail-value {
    font-size: 1rem;
  }
}
