/*
 * ADLIMIT Corporation - Complete Stylesheet
 * Final Version - All sections included
 */

:root {
  --primary: #f97316;
  --primary-light: #fff7ed;
  --primary-lighter: #ffedd5;
  --dark: #0f172a;
  --dark-700: #1e293b;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
  --font-en: 'Inter', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-jp); font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle { font-size: 0.9375rem; color: var(--gray-500); }
.section-accent { width: 60px; height: 4px; background: var(--primary); margin: 1rem auto 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-size: 0.9375rem; font-weight: 600; border-radius: var(--radius-full); transition: 0.3s; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #ea580c; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-700); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ===== Navigation ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15,23,42,0.95); backdrop-filter: blur(12px); padding: 1rem 0; }
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-content { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.nav-logo img { height: 2rem; }
.nav-menu { display: none; align-items: center; gap: 2rem; }
.nav-menu a { color: var(--white); font-size: 0.875rem; font-weight: 500; opacity: 0.8; }
.nav-menu a:hover { opacity: 1; color: var(--primary); }
.btn-contact { background: var(--primary) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: var(--radius-full) !important; opacity: 1 !important; }
.mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--white); }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1000; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--dark); padding: 2rem; transform: translateX(100%); transition: 0.3s; z-index: 1001; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close { position: absolute; top: 1rem; right: 1rem; color: var(--white); font-size: 1.5rem; }
.mobile-menu ul { margin-top: 4rem; }
.mobile-menu li { margin-bottom: 1rem; }
.mobile-menu a { color: var(--white); font-size: 1.125rem; display: block; padding: 0.75rem 0; }
@media (min-width: 1024px) { .nav-menu { display: flex; } .mobile-menu-btn { display: none; } }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.8) 50%, rgba(15,23,42,0.6) 100%); }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1200px; margin: 0 auto; padding: 8rem 1rem 4rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } .hero-content { padding: 6rem 2rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.3); border-radius: var(--radius-full); margin-bottom: 1.5rem; }
.pulse-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-badge span { color: var(--primary); font-size: 0.875rem; font-weight: 600; font-family: var(--font-en); }
.hero-title { margin-bottom: 1.5rem; }
.hero-title-main { display: block; font-size: 1.75rem; font-weight: 700; color: var(--white); }
.hero-title-sub { display: block; font-size: 2.25rem; font-weight: 900; background: linear-gradient(135deg, var(--primary), #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-top: 0.5rem; }
@media (min-width: 768px) { .hero-title-main { font-size: 2.5rem; } .hero-title-sub { font-size: 3rem; } }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: var(--font-en); }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Hero Card */
.hero-card { display: none; }
@media (min-width: 1024px) { .hero-card { display: block; } }
.hero-card-inner { background: rgba(255,255,255,0.1); backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-2xl); padding: 2rem; }
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.hero-card-title { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.live-indicator { display: flex; align-items: center; gap: 0.5rem; }
.live-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
.live-text { color: #34d399; font-size: 0.75rem; font-weight: 600; }
.chart-value { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.chart-main { font-size: 2.25rem; font-weight: 800; color: var(--white); font-family: var(--font-en); }
.chart-change { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.5rem; background: rgba(16,185,129,0.2); border-radius: var(--radius-full); color: #34d399; font-size: 0.875rem; font-weight: 600; }
.chart-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 100px; margin-bottom: 1.5rem; }
.chart-bar { flex: 1; background: linear-gradient(to top, var(--primary), #fb923c); border-radius: 4px 4px 0 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.metric-item { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 1rem; }
.metric-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 0.25rem; }
.metric-value { font-size: 1.25rem; font-weight: 700; color: var(--white); font-family: var(--font-en); }

/* ===== Problems ===== */
.problems { background: var(--gray-50); }
.problems-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .problems-grid { grid-template-columns: repeat(2,1fr); } }
.problem-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border-radius: var(--radius-xl); padding: 1.25rem 1.5rem; transition: 0.3s; }
.problem-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.problem-icon { flex-shrink: 0; width: 28px; height: 28px; background: #fecaca; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--danger); font-size: 1rem; }
.problem-item p { color: var(--gray-600); font-size: 0.9375rem; }
.solution-msg { text-align: center; margin-top: 3rem; }
.solution-msg p { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.solution-msg .arrow { color: var(--primary); margin-right: 0.5rem; }

/* ===== What We Do ===== */
.whatwedo { background: var(--white); }
.whatwedo-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .whatwedo-grid { grid-template-columns: 1fr 1fr; } }
.whatwedo-image img { border-radius: var(--radius-2xl); width: 100%; }
.whatwedo-label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.whatwedo-label-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.whatwedo-label-text { font-size: 0.875rem; font-weight: 600; color: var(--gray-500); font-family: var(--font-en); letter-spacing: 0.05em; }
.whatwedo-title { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .whatwedo-title { font-size: 2rem; } }
.whatwedo-text { color: var(--gray-600); line-height: 1.9; margin-bottom: 1rem; }

/* ===== Why Us (選ばれる理由) - 横並び交互 ===== */
.whyus { background: var(--gray-50); }
.whyus-list { display: flex; flex-direction: column; gap: 3rem; }
.whyus-item { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .whyus-item { grid-template-columns: 1fr 1fr; } }
.whyus-item.reverse .whyus-image { order: 1; }
@media (min-width: 768px) { .whyus-item.reverse .whyus-image { order: 2; } .whyus-item.reverse .whyus-content { order: 1; } }
.whyus-image img { border-radius: var(--radius-2xl); width: 100%; height: 280px; object-fit: cover; }
.whyus-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--primary); border-radius: 50%; color: var(--white); font-size: 1.125rem; font-weight: 800; font-family: var(--font-en); margin-bottom: 1rem; }
.whyus-title { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.whyus-text { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; }

/* ===== Services ===== */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4,1fr); } }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-2xl); padding: 2rem; text-align: center; transition: 0.3s; }
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--primary), #fb923c); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-icon i { font-size: 2rem; color: var(--white); }
.service-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-desc { color: var(--gray-500); font-size: 0.875rem; }

/* ===== Consulting Content (コンサルティングの内容) - ダークブルー背景 ===== */
.consulting { background: var(--dark); color: var(--white); }
.consulting .section-title { color: var(--white); }
.consulting .section-subtitle { color: rgba(255,255,255,0.6); }
.consulting-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .consulting-grid { grid-template-columns: repeat(2,1fr); } }
.consulting-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); overflow: hidden; transition: 0.3s; }
.consulting-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.consulting-card-image { height: 180px; overflow: hidden; }
.consulting-card-image img { width: 100%; height: 100%; object-fit: cover; }
.consulting-card-content { padding: 1.5rem; }
.consulting-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.consulting-card-text { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== Industries ===== */
.industries { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(3,1fr); } }
.industry-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; transition: 0.3s; }
.industry-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.industry-icon { width: 56px; height: 56px; background: var(--primary-lighter); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.industry-icon i { font-size: 1.5rem; color: var(--primary); }
.industry-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.industry-desc { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.6; }
.industry-stat { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-size: 0.875rem; font-weight: 600; }

/* ===== Plans ===== */
.plans { background: var(--gray-50); }
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 1024px) { .plans-grid { grid-template-columns: repeat(3,1fr); } }
.plan-card { background: var(--white); border-radius: var(--radius-2xl); padding: 2rem; border: 2px solid var(--gray-200); display: flex; flex-direction: column; transition: 0.3s; }
.plan-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.plan-card.popular { border-color: var(--primary); box-shadow: var(--shadow-xl); }
@media (min-width: 1024px) { .plan-card.popular { transform: scale(1.05); } }
.plan-header { text-align: center; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); margin-bottom: 1.5rem; }
.plan-name-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.plan-name { font-size: 1.125rem; font-weight: 700; }
.plan-badge { padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; border-radius: var(--radius-full); }
.plan-badge.initial { background: var(--primary-lighter); color: var(--primary); }
.plan-badge.popular { background: var(--danger); color: var(--white); }
.plan-badge.perf { background: var(--primary); color: var(--white); }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.plan-amount { font-size: 2.5rem; font-weight: 800; color: var(--dark); font-family: var(--font-en); }
.plan-unit { font-size: 1rem; color: var(--gray-500); }
.plan-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; }
.plan-features { flex: 1; margin-bottom: 1.5rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.625rem 0; font-size: 0.875rem; color: var(--gray-600); }
.plan-features li i { color: var(--primary); font-size: 1.125rem; margin-top: 0.125rem; }
.plan-recommend { background: var(--gray-50); border-radius: var(--radius-lg); padding: 1rem; margin-bottom: 1.5rem; }
.plan-recommend-label { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.plan-recommend-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.plan-btn { display: block; width: 100%; padding: 1rem; text-align: center; border-radius: var(--radius-full); font-weight: 600; transition: 0.3s; }
.plan-btn.primary { background: var(--primary); color: var(--white); }
.plan-btn.primary:hover { background: #ea580c; }
.plan-btn.outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.plan-btn.outline:hover { background: var(--primary); color: var(--white); }
.plan-cta { background: var(--primary-light); border-radius: var(--radius-2xl); padding: 2rem; text-align: center; margin-top: 3rem; }
.plan-cta-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.plan-cta-text { color: var(--gray-600); margin-bottom: 1.5rem; }

/* ===== Flow ===== */
.flow { background: var(--white); }
.flow-container { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .flow-container { flex-direction: row; justify-content: space-between; } }
.flow-item { flex: 1; text-align: center; position: relative; }
@media (min-width: 1024px) { .flow-item:not(:last-child)::after { content: ''; position: absolute; top: 32px; right: -50%; width: 100%; height: 2px; background: var(--gray-200); z-index: 0; } }
.flow-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.flow-icon i { font-size: 1.5rem; color: var(--white); }
.flow-step { display: inline-block; padding: 0.25rem 0.75rem; background: var(--primary-lighter); color: var(--primary); font-size: 0.75rem; font-weight: 700; font-family: var(--font-en); border-radius: var(--radius-full); margin-bottom: 0.75rem; }
.flow-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.flow-desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.6; max-width: 180px; margin: 0 auto 0.5rem; }
.flow-duration { font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.flow-cta { text-align: center; margin-top: 3rem; }

/* ===== Cases ===== */
.cases { background: var(--gray-50); }
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
.case-card { background: var(--white); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-md); transition: 0.3s; }
.case-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.case-header { background: linear-gradient(135deg, var(--dark), var(--dark-700)); padding: 1.5rem; }
.case-industry { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(255,255,255,0.2); color: var(--white); font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 0.75rem; }
.case-result-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.case-result-value { font-size: 1.75rem; font-weight: 800; color: var(--white); font-family: var(--font-en); }
.case-result-value span { color: var(--primary); }
.case-content { padding: 1.5rem; }
.case-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.case-detail { display: flex; gap: 1rem; margin-bottom: 0.75rem; }
.case-detail-label { flex-shrink: 0; width: 50px; font-size: 0.75rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; }
.case-detail-value { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }

/* ===== Message ===== */
.message { background: var(--white); }
.message-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .message-grid { grid-template-columns: 1fr 1fr; } }
.message-image { position: relative; }
.message-image img { width: 100%; border-radius: var(--radius-2xl); }
.message-image-caption { position: absolute; bottom: 1rem; left: 1rem; background: var(--white); padding: 0.5rem 1rem; border-radius: var(--radius-full); font-size: 0.875rem; color: var(--gray-600); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.5rem; }
.message-label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.message-label-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.message-label-text { font-size: 0.875rem; font-weight: 600; color: var(--gray-500); font-family: var(--font-en); letter-spacing: 0.05em; }
.message-title { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.4; }
.message-title::before { content: '"'; color: var(--primary); font-size: 2.5rem; }
.message-text { color: var(--gray-600); line-height: 1.9; margin-bottom: 1rem; }
.message-highlight { font-weight: 600; color: var(--dark); margin-top: 1.5rem; }
.message-author { display: flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-weight: 700; color: var(--dark); }
.message-author i { color: var(--success); }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; text-align: left; }
.faq-q-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.875rem; font-weight: 700; }
.faq-question h3 { flex: 1; font-size: 1rem; font-weight: 500; color: var(--dark); }
.faq-toggle { flex-shrink: 0; color: var(--gray-400); font-size: 1.25rem; transition: 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-content { padding: 0 0 1.5rem 3rem; color: var(--gray-600); line-height: 1.8; }
.faq-cta { text-align: center; margin-top: 3rem; padding: 2rem; background: var(--primary-light); border-radius: var(--radius-2xl); }
.faq-cta p { color: var(--gray-600); margin-bottom: 1rem; }
.faq-cta a { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, var(--primary), #ea580c); padding: 4rem 0; }
@media (min-width: 768px) { .cta { padding: 5rem 0; } }
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
@media (min-width: 768px) { .cta-title { font-size: 2.5rem; } }
.cta-subtitle { font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.cta-time { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 2rem; }
.cta-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-cards { grid-template-columns: repeat(3,1fr); } }
.cta-card { background: var(--white); border-radius: var(--radius-2xl); padding: 1.5rem; text-align: center; }
.cta-card-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; background: var(--primary-lighter); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cta-card-icon i { font-size: 1.25rem; color: var(--primary); }
.cta-card p { font-size: 0.9375rem; color: var(--dark); font-weight: 500; }
.cta-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; padding: 1rem; background: rgba(255,255,255,0.15); border-radius: var(--radius-full); }
.cta-badge { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-size: 0.875rem; font-weight: 500; }
.cta-desc { color: var(--white); margin-bottom: 1.5rem; }

/* ===== Contact Form ===== */
.contact-form-section { background: var(--gray-50); }
.contact-form-wrapper { max-width: 600px; margin: 0 auto; background: var(--white); border-radius: var(--radius-2xl); padding: 2rem; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.form-label .required { color: var(--danger); margin-left: 0.25rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--gray-300); border-radius: var(--radius-lg); font-size: 1rem; transition: 0.3s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; background: var(--primary); color: var(--white); border: none; border-radius: var(--radius-full); font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-submit:hover { background: #ea580c; }

/* ===== Company ===== */
.company { background: var(--white); }
.company-table { max-width: 800px; margin: 0 auto; background: var(--gray-50); border-radius: var(--radius-2xl); padding: 2rem; }
.company-row { display: flex; flex-direction: column; padding: 1rem 0; border-bottom: 1px solid var(--gray-200); }
@media (min-width: 768px) { .company-row { flex-direction: row; } }
.company-row:last-child { border-bottom: none; }
.company-label { flex-shrink: 0; width: 100%; font-size: 0.875rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.5rem; }
@media (min-width: 768px) { .company-label { width: 30%; margin-bottom: 0; } }
.company-value { width: 100%; color: var(--dark); font-weight: 500; }
@media (min-width: 768px) { .company-value { width: 70%; } }

/* ===== Footer ===== */
.footer { background: var(--dark); padding: 3rem 0 1.5rem; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .footer-content { flex-direction: row; justify-content: space-between; } }
.footer-logo img { height: 2rem; margin-bottom: 0.75rem; }
.footer-copyright { color: var(--gray-400); font-size: 0.875rem; }
.footer-copyright a { color: var(--gray-400); margin-left: 1rem; }
.footer-copyright a:hover { color: var(--white); }
.footer-right a { color: var(--gray-400); font-size: 0.875rem; }
.footer-right a:hover { color: var(--white); }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
