/*
Theme Name: ASTER JAPAN
Theme URI: https://aster-japan.co.jp
Author: ASTER JAPAN Co., Ltd.
Author URI: https://aster-japan.co.jp
Description: 株式会社ASTER JAPANの公式ウェブサイトテーマ。介護現場の「孤立」と「非効率」を解消する遠隔伴走型プラットフォーム「CARE CAME」を紹介する企業サイト用テーマです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aster-japan
Tags: corporate, one-column, custom-menu, featured-images, translation-ready

This theme is designed specifically for ASTER JAPAN corporate website.
*/

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  --color-primary: hsl(150, 30%, 35%);
  --color-primary-light: hsl(150, 30%, 45%);
  --color-primary-dark: hsl(150, 30%, 25%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  
  --color-secondary: hsl(150, 20%, 96%);
  --color-secondary-foreground: hsl(150, 30%, 30%);
  
  --color-background: hsl(0, 0%, 100%);
  --color-foreground: hsl(150, 40%, 10%);
  
  --color-muted: hsl(150, 10%, 96%);
  --color-muted-foreground: hsl(150, 10%, 45%);
  
  --color-border: hsl(150, 20%, 90%);
  
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* ========================================
   Utility Classes
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
}

.nav-cta:hover {
  background: var(--color-primary-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.mobile-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
}

.mobile-navigation.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-navigation {
    display: none !important;
  }
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-menu a {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  box-shadow: var(--shadow-xl);
}

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

.btn-outline {
  background: white;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}

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

.btn-white {
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-xl);
}

.btn-white:hover {
  background: var(--color-muted);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7), rgba(255,255,255,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(76, 131, 99, 0.1);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(76, 131, 99, 0.2);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #1e293b;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .highlight {
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ========================================
   Section Common Styles
   ======================================== */
.section {
  padding: 6rem 0;
}

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

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

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  color: #64748b;
  font-size: 1.125rem;
}

/* ========================================
   Mission Section
   ======================================== */
.mission-section {
  background: var(--color-secondary);
}

.mission-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.mission-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.mission-content .section-label {
  text-align: left;
}

.mission-title {
  font-size: 1.875rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .mission-title {
    font-size: 2.25rem;
  }
}

.mission-text {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(76, 131, 99, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.value-label {
  font-weight: 500;
  color: #1e293b;
}

/* ========================================
   Challenges Section
   ======================================== */
.challenges-section {
  background: white;
}

.challenges-grid {
  display: grid;
  gap: 2rem;
}

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

.challenge-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid #f1f5f9;
}

.challenge-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.challenge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
}

.challenge-icon.red {
  background: #fee2e2;
  color: #dc2626;
}

.challenge-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.challenge-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
}

.stat-value span {
  font-size: 1.125rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.challenge-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

.spiral-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spiral-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.spiral-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.spiral-text {
  font-size: 0.875rem;
  color: #64748b;
}

.challenge-callout {
  margin-top: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

/* ========================================
   Solutions Section
   ======================================== */
.solutions-section {
  background: #0f172a;
  color: white;
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(76, 131, 99, 0.2), transparent);
}

.solutions-section .section-header {
  position: relative;
  z-index: 10;
}

.solutions-section .section-title {
  color: white;
}

.solutions-section .section-description {
  color: #94a3b8;
}

.solutions-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.solution-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(76, 131, 99, 0.2);
  color: var(--color-primary);
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.solution-text {
  color: #94a3b8;
  line-height: 1.7;
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases-section {
  background: white;
}

.use-cases-grid {
  display: grid;
  gap: 2rem;
}

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

.use-case-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid;
}

.use-case-card.green {
  background: #f0fdf4;
  border-color: #dcfce7;
}

.use-case-card.blue {
  background: #eff6ff;
  border-color: #dbeafe;
}

.use-case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.use-case-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.use-case-icon.green {
  color: #16a34a;
}

.use-case-icon.blue {
  color: #2563eb;
}

.use-case-tier {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.use-case-tier.green {
  color: #16a34a;
}

.use-case-tier.blue {
  color: #2563eb;
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.use-case-text {
  color: #64748b;
  margin-bottom: 1rem;
}

.use-case-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.use-case-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.use-case-features svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.use-case-features.green svg {
  color: #16a34a;
}

.use-case-features.blue svg {
  color: #2563eb;
}

/* ========================================
   ROI Section
   ======================================== */
.roi-section {
  background: #f8fafc;
}

.roi-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.roi-grid {
  display: grid;
}

@media (min-width: 1024px) {
  .roi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.roi-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .roi-content {
    padding: 4rem;
  }
}

.roi-content .section-label {
  text-align: left;
}

.roi-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.roi-text {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.roi-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.roi-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.roi-feature-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.roi-feature-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.roi-feature-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.roi-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.roi-feature-text {
  font-size: 0.875rem;
  color: #64748b;
}

.roi-highlight {
  background: #0f172a;
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .roi-highlight {
    padding: 4rem;
  }
}

.roi-highlight::before {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(76, 131, 99, 0.2);
  border-radius: 50%;
  filter: blur(3rem);
}

.roi-highlight-content {
  position: relative;
  z-index: 10;
}

.roi-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.roi-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .roi-value {
    font-size: 3.75rem;
  }
}

.roi-value small {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 0.5rem;
}

.roi-value span {
  font-size: 1.875rem;
}

.roi-impact {
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.roi-note {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
  background: white;
  overflow: hidden;
}

.products-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.products-content {
  order: 2;
}

@media (min-width: 768px) {
  .products-content {
    order: 1;
  }
}

.products-content .section-label {
  text-align: left;
}

.products-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.products-text {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.product-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-feature-text {
  font-size: 0.875rem;
  color: #64748b;
}

.products-image {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .products-image {
    order: 2;
  }
}

.products-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(76, 131, 99, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  transform: scale(0.9);
}

.products-image img {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid #f1f5f9;
}

/* ========================================
   Company Section
   ======================================== */
.company-section {
  background: #f8fafc;
}

.company-table {
  max-width: 56rem;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.company-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--color-border);
}

.company-row:last-child {
  border-bottom: none;
}

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

.company-label {
  background: #f8fafc;
  padding: 1.5rem;
  font-weight: 700;
  color: #475569;
}

.company-value {
  padding: 1.5rem;
}

.company-value ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.company-value li {
  margin-bottom: 0.25rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.05'%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.1;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: #0f172a;
  color: white;
  padding: 3rem 0;
  border-top: 1px solid #1e293b;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #64748b;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: #f8fafc;
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-description {
  font-size: 1.125rem;
  color: #64748b;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(76, 131, 99, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.info-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.faq-card {
  background: rgba(76, 131, 99, 0.05);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(76, 131, 99, 0.1);
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.faq-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

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

.form-row {
  display: grid;
  gap: 1.5rem;
}

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
}

.form-label .required {
  color: #dc2626;
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

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

.form-submit {
  padding-top: 1rem;
}

.form-note {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1rem;
}

/* Form Validation */
.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626;
}

/* ========================================
   WordPress Specific
   ======================================== */
.wp-block-image img {
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
