/* One Clear Path AI — Shared Styles */

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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --success: #10b981;
  --card: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { color: var(--text-muted); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { 
  color: var(--text-muted); 
  text-decoration: none; 
  font-weight: 500; 
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { 
  color: var(--primary); 
  border-bottom-color: var(--primary);
}
.nav-links a.btn { 
  border-bottom: none;
  padding: 8px 20px;
}
.nav-links a.btn-primary {
  color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 101;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4); }
.btn-secondary {
  background: var(--bg-alt);
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { 
  padding: 10px 20px; 
  font-size: 0.875rem;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links .btn-sm {
  padding: 8px 20px;
}
.btn-success { background: var(--success); color: white; }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-danger { background: #ef4444; color: white; padding: 6px 12px; font-size: 0.8rem; }

/* Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 span { 
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--text); }
.stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* Page Header (for inner pages) */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* Problem Section */
.problem { background: var(--bg-dark); color: white; }
.problem h2 { color: white; }
.problem p { color: var(--text-light); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}
.problem-card h3 { color: white; margin-bottom: 12px; }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }

/* Solution Section */
.solution { background: var(--bg); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.solution-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.solution-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.solution-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.solution-card h3 { margin-bottom: 12px; }

/* Services */
.services-section { background: var(--bg-alt); }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.service-card .icon { font-size: 2rem; }
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.service-features li {
  list-style: none;
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h3 { margin-top: 32px; margin-bottom: 12px; }
.about-image {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  padding: 40px;
  color: white;
  text-align: center;
}
.about-image .icon { font-size: 4rem; margin-bottom: 20px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  margin-bottom: 16px;
}
.contact-method .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.contact-method a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.contact-method a:hover { text-decoration: underline; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
label { 
  display: block; 
  font-size: 0.875rem; 
  font-weight: 600; 
  color: var(--text); 
  margin-bottom: 8px; 
}
input[type="text"], 
input[type="number"], 
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
  background: var(--bg);
  font-family: inherit;
}
input:focus, textarea:focus, select:focus { 
  outline: none; 
  border-color: var(--primary); 
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1); 
}
textarea { min-height: 120px; resize: vertical; }

/* Calculator */
.calculator { background: var(--bg-alt); padding-top: 40px; }
.calc-wrapper {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 900px;
  margin: 48px auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.calc-header { text-align: center; margin-bottom: 32px; }
.calc-header h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 20px; 
  margin-bottom: 32px; 
}
.process-section { margin-bottom: 32px; }
.process-section h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.process-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.process-label { flex: 1; font-size: 0.9rem; color: var(--text); }
.process-input { width: 90px !important; text-align: center; }
.process-unit { color: var(--text-muted); font-size: 0.8rem; }
.custom-process { display: flex; gap: 12px; margin-bottom: 12px; align-items: center; }
.custom-process input:first-child { flex: 1; }
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* Results */
.results { display: none; margin-top: 40px; }
.results.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.results-header { text-align: center; margin-bottom: 32px; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.metric-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(6,182,212,0.05));
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}
.metric-label { 
  font-size: 0.75rem; 
  color: var(--text-muted); 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  margin-bottom: 8px; 
}
.metric-value { font-size: 1.75rem; font-weight: 700; color: var(--text); }
.metric-value.highlight { color: var(--primary); }
.results-section { 
  background: var(--bg-alt); 
  border-radius: 12px; 
  padding: 24px; 
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.results-section h4 { 
  font-size: 1rem; 
  margin-bottom: 16px; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}
.insight-item {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: white;
  border-left: 3px solid var(--success);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
}
.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 32px; }
.cta .btn-primary { background: white; color: var(--primary); }
.cta .btn-primary:hover { background: var(--bg-alt); }

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 48px 0 24px;
}
.footer-content { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { color: white; font-weight: 700; font-size: 1.25rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; font-size: 0.875rem; }
.footer-bottom p { color: var(--text-light); }

/* Mobile */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  
  .mobile-menu-btn { display: flex; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.active { display: flex; }
  .nav-links a { 
    padding: 16px 0; 
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; margin-top: 12px; }
  .nav-links a.active { border-bottom-color: var(--border); }
  
  .hero { padding: 120px 0 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .page-header { padding: 120px 0 40px; }
  
  .calc-wrapper { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .process-item { flex-wrap: wrap; }
  .process-label { flex-basis: 100%; margin-bottom: 8px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  
  .about-content { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  
  .contact-grid { grid-template-columns: 1fr; }
}

/* Benchmarks Section */
.benchmarks { background: var(--bg); padding: 60px 0; }
.benchmarks h2 { margin-bottom: 8px; }
.benchmark-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.benchmark-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.benchmark-task {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.benchmark-range {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.benchmark-sources {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.benchmark-sources h4 {
  margin-bottom: 12px;
  color: var(--text);
}
.benchmark-sources ul {
  list-style: none;
  padding-left: 0;
}
.benchmark-sources li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.benchmark-sources a {
  color: var(--primary);
  text-decoration: none;
}
.benchmark-sources a:hover {
  text-decoration: underline;
}

/* Print */
@media print {
  nav, .hero, .problem, .solution, .cta, footer, .btn { display: none !important; }
  .calculator { background: white; padding: 0; }
  .calc-wrapper { box-shadow: none; border: none; padding: 0; }
}

/* Partners Page Styles */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.use-case-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  border-color: var(--primary-light);
}

.use-case-card h4 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.1rem;
}

.use-case-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.result-highlight {
  margin-top: 48px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: 1.1rem;
  text-align: center;
}

.result-highlight strong {
  color: var(--primary);
}

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

.pricing-card {
  padding: 32px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.tier-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-alt);
  color: var(--text);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.tier-badge.popular {
  background: var(--primary);
  color: white;
}

.pricing-card h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.4rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

.pricing-card .timeline {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-top: 24px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li strong {
  color: var(--text);
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Benefits Section (MSP Partners Page) */
.benefits-section {
  padding: 80px 0;
  background: var(--bg);
}

.benefits-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-section .subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 12px;
}

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

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

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

/* Services Page - Phase Cards */
.services-detail {
  padding: 80px 0;
  background: var(--bg-alt);
}

.phase-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.phase-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.phase-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.phase-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}

.phase-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.phase-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.phase-meta .duration {
  font-weight: 600;
  color: var(--primary);
}

.phase-meta .divider {
  color: var(--border);
}

.phase-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: rgba(37, 99, 235, 0.05);
}

.feature-item .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.feature-item span:last-child {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .phase-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .phase-icon {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.partner-kit-box {
  max-width: 700px;
  margin: 48px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(6, 182, 212, 0.03));
  border: 2px solid var(--primary);
  border-radius: 16px;
  text-align: center;
}

.partner-kit-box h3 {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 1.5rem;
}

.kit-contents {
  list-style: none;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 500px;
}

.kit-contents li {
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.kit-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.kit-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.kit-note a:hover {
  text-decoration: underline;
}

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

.faq-item {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-item h4 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .use-cases {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .partner-kit-box {
    padding: 24px;
  }
}
