/* Base Reset & Variables */
:root {
  /* Colors */
  /* --primary-color: 主色 */
  --primary-color: #009EA1;
  /* --primary-hover: 主色ホバー */
  --primary-hover: #006466;
  /* 主色ホバー */
  --secondary-color: #0F172A;
  /* 補助色（スレート900） */
  /* --secondary-hover: 補助色ホバー（スレート800） */
  --secondary-hover: #1E293B;
  /* 補助色ホバー */
  /* Slate 800 */

  --text-main: #0F172A;
  /* メインテキスト色（スレート900） */
  /* --text-muted: 補助テキスト色（スレート600） */
  --text-muted: #475569;
  /* 補助テキスト色 */
  /* --text-light: ライトテキスト色（スレート400） */
  --text-light: #94A3B8;
  /* ライトテキスト色 */
  /* Slate 400 */

  --bg-light: #F8FAFC;
  /* 背景色（スレート50） */
  /* Slate 50 */
  --bg-white: #FFFFFF;
  /* 白背景 */
  --border-color: #E2E8F0;
  /* 境界線色（スレート200） */
  /* Slate 200 */

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;

  /* Fonts */
  --font-base: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Backgrounds */
  /* --bg-card: カード背景 */
  --bg-card: #FFFFFF;
  /* カード背景 */
  --bg-header: rgba(255, 255, 255, 0.9);
  /* ヘッダー背景（半透明白） */
  --bg-overlay: rgba(0, 0, 0, 0.4);
  /* オーバーレイ背景（暗い半透明） */
  --bg-feature-icon: #EFF6FF;
  /* フィーチャーアイコン背景（淡い青） */
  --bg-mobile-menu: #FFFFFF;
  /* モバイルメニュー背景 */
  --bg-footer: #FFFFFF;
  /* フッター背景 */
  --bg-vision: #FFFFFF;
  /* ビジョンセクション背景 */
  --bg-pricing-card: #FFFFFF;
  /* 価格カード背景 */
  --bg-faq-item: #FFFFFF;
  /* FAQ項目背景 */
  --bg-modal-content: #FFFFFF;
  /* モーダルコンテンツ背景 */
  --bg-modal-backdrop: rgba(0, 0, 0, 0.6);
  /* モーダルバックドロップ背景 */
  --bg-hero-p: rgba(255, 255, 255, 0.8);
  /* ヒーロー段落背景 */
  --bg-dashboard-preview: #FFFFFF;
  /* ダッシュボードプレビュー背景 */
  --bg-cta-secondary: #FFFFFF;
  /* セカンダリCTA背景 */
  --bg-cta-secondary-hover: #f8fafc;
  /* セカンダリCTAホバー背景 */
  --bg-pricing-trial: #fafafa;
  /* 価格トライアル背景 */
  --bg-pricing-sub: #f0f0f0;
  /* 価格サブ背景 */
  --bg-success: #d1fae5;
  /* 成功メッセージ背景 */
  --text-success: #065f46;
  /* 成功メッセージ文字色 */
  --bg-error: #fee2e2;
  /* エラーメッセージ背景 */
  --text-error: #991b1b;
  /* エラーメッセージ文字色 */
  --input-border: #ddd;
  /* 入力フィールド枠線色 */
  --input-focus-ring: rgba(59, 108, 255, 0.1);
  /* 入力フォーカスリング色 */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Base size */
}

body {
  margin: 0;
  font-family: var(--font-base);
  line-height: 1.8;
  color: var(--text-main);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  /* Proportional metrics for Japanese */
  position: relative;
  overflow-x: hidden;
}

/* Organic Background Shapes */
body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  pointer-events: none;
}

body::before {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(219, 234, 254, 0.8) 0%, rgba(219, 234, 254, 0) 70%);
  /* Pale Blue */
  top: -20%;
  left: -10%;
  animation: float 20s infinite alternate ease-in-out;
}

body::after {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(237, 233, 254, 0.8) 0%, rgba(237, 233, 254, 0) 70%);
  /* Pale Violet */
  bottom: -10%;
  right: -10%;
  animation: float 25s infinite alternate-reverse ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(30px, 50px);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== HEADER ===== */
header {
  padding: 20px 32px;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-text {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--text-main);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  white-space: nowrap;
}

.logo-image {
  opacity: 1;
  transform: rotate(0deg);
  /* Remove transition for direct scroll control or keep for smooth settling */
  transition: opacity 1.2s ease;
  will-change: transform;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* Scrolled State */
header.scrolled .logo-text {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

header.scrolled .logo-image {
  opacity: 1;
  transform: rotate(360deg);
  transform-origin: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

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

.nav-btn {
  padding: 10px 20px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-btn:hover {
  background: var(--secondary-hover);
  color: #fff;
  opacity: 1;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-main);
  z-index: 101;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: 98;
  backdrop-filter: blur(4px);
}

.mobile-menu {
  position: fixed;
  top: 73px;
  /* Header height approx */
  left: 0;
  right: 0;
  background: var(--bg-mobile-menu);
  border-bottom: 1px solid var(--border-color);
  z-index: 99;
  overflow: hidden;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  box-shadow: var(--shadow-md);
  max-height: 0;
}

.mobile-menu.menu-open {
  max-height: 500px;
}

.hidden {
  display: none !important;
}

.mobile-link {
  display: block;
  padding: 16px 32px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-link:last-child {
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
  /* Modern Mesh Gradient */
  background-color: #ffffff;
  background-image:
    radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F8FAFC 100%),
    radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
    url('../assets/Schedia/hero-bg.jpg');
  /* Fallback / Blend */
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: -0.03em;
  /* Text Gradient for extra pop */
  background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #444;
  background: var(--bg-hero-p);
  padding: 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Dashboard Preview */
.dashboard-preview {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  /* Deeper shadow */
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--bg-dashboard-preview);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(40px);
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  min-width: 180px;
}

.cta-btn.primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-btn.primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.cta-btn.secondary {
  background: var(--bg-cta-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.cta-btn.secondary:hover {
  background: var(--bg-cta-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.cta-btn.full-width {
  width: 100%;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.bg-gray {
  background-color: #F8FAFC;
  border-radius: var(--radius-xl);
  margin: 80px auto;
  /* Grid Pattern */
  background-image:
    linear-gradient(#E2E8F0 1px, transparent 1px),
    linear-gradient(90deg, #E2E8F0 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  border: 1px solid #F1F5F9;
}

.sec-title {
  font-size: 36px;
  margin-bottom: 48px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-block {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-feature-icon);
  /* Light blue tint */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

.feature-block h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-main);
}

.feature-block p {
  color: var(--text-muted);
  font-size: 16px;
  text-align: left;
}

.feature-block.card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  border: 1px solid var(--border-color);
}

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

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Flow Section (How it Works) */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  counter-reset: flow-counter;
  position: relative;
}

.flow-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.step-number {
  font-size: 120px;
  font-weight: 900;
  color: rgba(129, 204, 176, 0.25);
  line-height: 1;
  margin-bottom: -100px;
  position: relative;
  z-index: 0;
}

.flow-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.flow-step p {
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Connectors (Desktop only) */
@media (min-width: 768px) {
  .flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--border-color);
  }
}

/* CTA Sections */
.cta-section {
  text-align: center;
  padding: 80px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin: 60px auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-width: 800px;
}

.cta-section.alt {
  background: #1E293B;
  /* Slate 800 */
  color: #fff;
  border: none;
  /* Subtle pattern for dark section */
  background-image: radial-gradient(#334155 1px, transparent 1px);
  background-size: 20px 20px;
}

.cta-section.alt .sec-title,
.cta-section.alt p {
  color: #fff;
}

.cta-section p {
  margin-bottom: 32px;
  color: var(--text-muted);
}

/* ===== FOOTER SECTIONS ===== */
.concept-section,
.vision-section,
.pricing-section,
.faq-section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}

/* Concept Section */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.concept-col h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.concept-col p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Vision Section */
.vision-section {
  text-align: center;
  background: var(--bg-vision);
  border-radius: var(--radius-xl);
  margin: 80px auto;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 80px 32px;
  position: relative;
}

/* Removed decorative top bar as requested */
.vision-section::before {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Header */
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 36px;
    /* Smaller heading */
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
  }

  /* Dashboard */
  .dashboard-preview {
    margin-top: 30px;
    transform: translateY(20px);
  }

  /* Sections */
  section {
    padding: 60px 20px;
  }

  .sec-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  /* Flow */
  .flow-grid {
    gap: 30px;
  }

  .flow-step::after {
    display: none;
    /* Hide arrows */
  }

  .step-number {
    font-size: 48px;
  }

  /* Footer Sections */
  .concept-grid,
  .pricing-grid,
  .features-grid {
    grid-template-columns: 1fr;
    /* Stack single column */
    gap: 30px;
  }

  .bg-gray {
    margin: 40px auto;
    border-radius: var(--radius-lg);
  }

  .vision-section {
    margin: 40px auto;
    padding: 40px 20px;
  }

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


.vision-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:last-child {
  grid-column: 1 / -1;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.value-card h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.value-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* List styling for values */
.value-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items spacing */
.value-card li {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 0;
}

.value-card li:last-child {
  margin-bottom: 0;
}

/* Pricing Section (Already styled, just ensuring context) */
.pricing-section .sec-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

/* FAQ Section */
.faq-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 40px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-pricing-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.trial {
  border-color: var(--border-color);
  background: var(--bg-pricing-trial);
}

.pricing-card.standard {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(59, 108, 255, 0.1);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-header .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.pricing-header .period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 8px;
  background: var(--bg-pricing-sub);
  border-radius: 4px;
}

.pricing-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features ul li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.pricing-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.footer-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.faq-item {
  background: var(--bg-faq-item);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.faq-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

/* ===== FOOTER (Simple) ===== */
footer {
  background: var(--bg-footer);
  padding: 40px 32px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}


/* ===== MODALS ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--bg-modal-backdrop);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.modal-backdrop.hidden-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-content {
  background: var(--bg-modal-content);
  width: 100%;
  max-width: 540px;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.hidden-modal .modal-content {
  transform: translateY(20px);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  line-height: 1;
  color: #999;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #333;
}

.modal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.modal-content>p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-group label .required {
  color: #e53e3e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
  font-family: inherit;
}

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

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-actions button {
  width: 100%;
}

.success-msg {
  margin-top: 16px;
  padding: 12px;
  background: var(--bg-success);
  color: var(--text-success);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
}

.error-msg {
  margin-top: 16px;
  padding: 12px;
  background: var(--bg-error);
  color: var(--text-error);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
}

.hidden {
  display: none !important;
}

.max-h-0 {
  max-height: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

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

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