/* Green-AI Design System Colors */
:root {
  /* Backgrounds - Clean & Minimal */
  --bg-page: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-section: rgba(0, 0, 0, 0.02);
  
  /* Text - Professional Hierarchy */
  --text-primary: rgb(0, 55, 32);
  --text-body: rgb(14, 15, 12);
  --text-secondary: rgb(131, 146, 140);
  --text-muted: rgb(175, 183, 180);
  
  /* Borders - Subtle Separation */
  --border-light: rgba(0, 0, 0, 0.1);
  --border-medium: rgba(0, 0, 0, 0.2);
  --border-strong: rgba(0, 0, 0, 0.3);
  
  /* BRAND COLORS - Green Accent System */
  --accent-primary: #8FEC78;
  --accent-strong: #81DD67;
  --accent-text: rgb(13, 121, 22);
  --accent-wash: rgba(148, 242, 127, 0.1);
  
  /* Gradients */
  --gradient-hero: radial-gradient(at 53% 78%, hsla(60,100%,50%,0.3) 0px, transparent 50%), 
                   radial-gradient(at 71% 91%, hsla(108,100%,50%,0.3) 0px, transparent 50%), 
                   radial-gradient(at 31% 91%, hsla(30,100%,50%,0.17) 0px, transparent 50%);
  --gradient-button: linear-gradient(to bottom right, var(--accent-primary), var(--accent-strong));
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.5;
}

/* Typography */
.heading-1 { 
  font-family: system-ui, sans-serif; 
  font-weight: 700; 
  font-size: clamp(2.25rem, 5vw, 4.5rem); 
  line-height: 0.9; 
  letter-spacing: -0.02em; 
  color: var(--text-primary);
}

.heading-2 { 
  font-family: system-ui, sans-serif; 
  font-weight: 600; 
  font-size: clamp(1.875rem, 4vw, 3rem); 
  line-height: 0.95; 
  letter-spacing: -0.015em; 
  color: var(--text-primary);
}

.heading-3 { 
  font-family: system-ui, sans-serif; 
  font-weight: 600; 
  font-size: clamp(1.25rem, 3vw, 1.5rem); 
  line-height: 1.2; 
  letter-spacing: -0.01em; 
  color: var(--text-primary);
}

.body-large { 
  font-family: system-ui, sans-serif; 
  font-weight: 400; 
  font-size: clamp(1.125rem, 2.5vw, 1.25rem); 
  line-height: 1.6; 
  color: var(--text-body); 
}

.body-medium { 
  font-family: system-ui, sans-serif; 
  font-weight: 400; 
  font-size: clamp(1rem, 2vw, 1.125rem); 
  line-height: 1.5; 
  color: var(--text-body); 
}

.body-small { 
  font-family: system-ui, sans-serif; 
  font-weight: 400; 
  font-size: 0.875rem; 
  line-height: 1.4; 
  color: var(--text-secondary); 
}

.caption { 
  font-family: system-ui, sans-serif; 
  font-weight: 400; 
  font-size: 0.75rem; 
  line-height: 1.3; 
  color: var(--text-muted); 
}

.accent-text {
  color: var(--accent-text);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-button);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 14px 24px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  gap: 8px;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 8px rgba(148, 242, 127, 0.3);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 14px 24px;
  font-family: system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border-medium);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.full-width {
  width: 100%;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  margin: 1rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.age-modal-content h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.age-modal-content p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

.age-modal-content .small {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.age-modal-content .caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.age-modal-content .btn-primary,
.age-modal-content .btn-secondary {
  margin: 0.5rem;
  min-width: 140px;
}

/* Header */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid var(--border-light);
  border-radius: 9999px;
  margin: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 2rem;
  width: auto;
}

.header-title {
  margin-left: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: none;
  border: none;
  color: var(--text-body);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu.show {
  display: block;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 3rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo img {
  height: 7rem;
  width: auto;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-arrow {
  animation: bounce 2s infinite;
  color: var(--text-secondary);
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40%, 43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-section);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .heading-2 {
  margin-bottom: 1.5rem;
}

.section-header .body-large {
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--border-medium);
}

.benefit-icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Legal Notice */
.legal-notice {
  background: var(--accent-wash);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.legal-notice p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-body);
}

/* Product Showcase */
.product-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.product-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.product-images {
  margin-bottom: 2rem;
}

.product-main-image {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.flavor-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.flavor-btn:hover {
  border-color: var(--border-medium);
}

.flavor-btn.active {
  border-color: var(--accent-primary);
  background: var(--accent-wash);
}

.flavor-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-bottom: 0.25rem;
}

.flavor-dot.melon { background: #4ade80; }
.flavor-dot.grape { background: #8b5cf6; }
.flavor-dot.lemonade { background: #f59e0b; }

.flavor-btn span {
  font-size: 0.875rem;
  font-weight: 500;
}

.product-info {
  space-y: 1.5rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.product-description {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  background: var(--accent-wash);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.spec-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.spec-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-text);
}

.pricing-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.price-item {
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.price-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-text);
}

.selected-flavor {
  margin-bottom: 1.5rem;
}

.selected-flavor h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.selected-flavor p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .product-buttons {
    flex-direction: row;
  }
  
  .product-buttons .btn-primary,
  .product-buttons .btn-secondary {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

/* Order Form */
.order-form-section {
  margin-top: 4rem;
}

.order-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.order-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(143, 236, 120, 0.1);
}

.delivery-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.delivery-status.available {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.delivery-status.unavailable {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.delivery-status::before {
  content: '';
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.delivery-status.available::before {
  background: #16a34a;
}

.delivery-status.unavailable::before {
  background: #dc2626;
}

.order-summary {
  background: var(--accent-wash);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 1.125rem;
  font-weight: 600;
}

.summary-total span:last-child {
  color: var(--accent-text);
}

.delivery-error {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #dc2626;
}

/* Usage Tabs */
.usage-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: white;
  border-radius: 50px;
  padding: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--gradient-button);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.usage-steps {
  space-y: 1rem;
}

.usage-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-primary);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.safety-section {
  margin-top: 3rem;
}

.safety-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.safety-icon {
  width: 2rem;
  height: 2rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.safety-text {
  flex: 1;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0;
}

.safety-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.safety-column ul {
  list-style: none;
  padding: 0;
}

.safety-column li {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-body);
}

.warning-box {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.warning-box p {
  margin: 0;
  font-size: 0.875rem;
  color: #92400e;
}

/* About Alicia */
.about-alicia-content {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .about-alicia-content {
    grid-template-columns: 200px 1fr;
  }
}

.alicia-photo {
  text-align: center;
}

.alicia-photo img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.alicia-story h2 {
  margin-bottom: 1.5rem;
}

.story-content {
  margin-bottom: 2rem;
}

.story-content p {
  margin-bottom: 1rem;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.highlight i {
  color: var(--accent-primary);
  width: 1.5rem;
  height: 1.5rem;
}

.highlight h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.highlight p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
}

.mission-statement {
  text-align: center;
}

/* Service Area */
.service-area-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .service-area-content {
    grid-template-columns: 1fr 1fr;
  }
}

.service-map .heading-3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.map-visual {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  padding: 2rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-center {
  text-align: center;
}

.primary-location {
  width: 1rem;
  height: 1rem;
  background: var(--accent-primary);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.location-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-text);
  margin-bottom: 0.25rem;
}

.location-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.location-note.small {
  font-size: 0.75rem;
}

.nearby-locations {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.nearby-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent-strong);
  border-radius: 50%;
}

.service-info {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card i {
  color: var(--accent-primary);
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.service-areas-grid {
  margin-top: 3rem;
}

.areas-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.area-group {
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.area-group.primary {
  background: var(--accent-wash);
}

.area-group h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.area-group.primary h4 {
  color: var(--accent-text);
}

.area-group p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.area-list div {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* Contact */
.contact-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-methods {
  space-y: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method i {
  color: var(--accent-primary);
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--accent-text);
  text-decoration: none;
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-method p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0.25rem 0 0 0;
}

.phone-numbers {
  space-y: 0.5rem;
}

.phone-numbers div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-numbers span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-method address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.4;
}

.contact-highlights {
  margin-top: 2rem;
}

.contact-highlights h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  space-y: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-body);
}

.contact-list i {
  color: var(--accent-primary);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.contact-form-section h3 {
  margin-bottom: 1.5rem;
}

.contact-form {
  space-y: 1rem;
}

.response-time {
  text-align: center;
}

.response-time h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.response-time p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin: 0;
}

/* Coming Soon */
.coming-soon {
  margin-top: 3rem;
  text-align: center;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.product-card .heading-3 {
  margin-bottom: 0.75rem;
}

.product-card .body-medium {
  margin-bottom: 1rem;
}

.product-card .body-small {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-right: 0.75rem;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-brand p {
  color: #d1d5db;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.business-info p {
  color: #9ca3af;
  font-size: 0.75rem;
  margin: 0.25rem 0;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links button {
  background: none;
  border: none;
  color: #d1d5db;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links button:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact i {
  color: #9ca3af;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact span {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.footer-contact address {
  font-style: normal;
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    grid-template-columns: 1fr 1fr;
  }
}

.copyright p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

.legal-notice-footer {
  text-align: right;
}

@media (max-width: 767px) {
  .legal-notice-footer {
    text-align: left;
  }
}

.legal-box {
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 8px;
  padding: 1rem;
}

.legal-box p {
  color: #fbbf24;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.legal-box p:first-child {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.legal-box a {
  color: #fcd34d;
  text-decoration: underline;
}

.legal-box a:hover {
  color: #fef3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-header {
    margin: 0.5rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 52px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: auto;
    min-width: 200px;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .benefit-card:hover {
    transform: translateY(-4px);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}