:root {
  --red: #CC0000;
  --red-dark: #990000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gold: #f59e0b;
  --green: #10b981;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--gray-800); line-height: 1.6; background: var(--white); }
header { background: var(--white); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--gray-900); }
.logo-icon { width: 44px; height: 44px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 22px; }
.logo-text { font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.logo-text span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--gray-600); }
nav { display: flex; gap: 6px; align-items: center; }
nav a { text-decoration: none; color: var(--gray-700); font-size: 0.88rem; font-weight: 500; padding: 6px 10px; border-radius: 6px; transition: all 0.2s; }
nav a:hover { background: var(--gray-100); color: var(--red); }
.nav-cta { background: var(--red) !important; color: white !important; padding: 8px 14px !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--gray-700); }
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #CC0000 100%); }
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 20px; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero h1 .highlight { color: #ffd700; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 36px; max-width: 600px; }
.hero-pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 900px; margin-bottom: 32px; }
.price-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 12px; padding: 20px 14px; text-align: center; backdrop-filter: blur(10px); transition: all 0.3s; cursor: pointer; text-decoration: none; display: block; color: white; }
.price-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); border-color: rgba(255,215,0,0.6); }
.price-card.featured { background: rgba(204,0,0,0.7); border-color: rgba(255,215,0,0.8); border-width: 2px; }
.price-card-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.price-card-duration { font-size: 1.05rem; font-weight: 800; color: white; margin-bottom: 6px; }
.price-card-price { font-size: 1.5rem; font-weight: 900; color: #ffd700; margin-bottom: 12px; }
.price-card-btn { display: block; background: var(--red); color: white; padding: 7px 10px; border-radius: 7px; font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.price-card.featured .price-card-btn { background: #ffd700; color: #1a0000; }
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: white; padding: 14px 26px; border-radius: 10px; font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(204,0,0,0.4); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: white; padding: 14px 26px; border-radius: 10px; font-size: 1rem; font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.trust-bar { background: var(--gray-900); color: white; padding: 16px 20px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; }
.section { padding: 72px 20px; }
.section-alt { background: var(--gray-50); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; background: rgba(204,0,0,0.1); color: var(--red); padding: 4px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.section-header p { font-size: 1rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-bottom: 32px; }
.pricing-card { background: white; border: 2px solid var(--gray-200); border-radius: 16px; padding: 28px 20px; text-align: center; transition: all 0.3s; position: relative; }
.pricing-card:hover { border-color: var(--red); box-shadow: 0 8px 30px rgba(204,0,0,0.12); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--red); border-width: 3px; }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--red); color: white; padding: 3px 14px; border-radius: 50px; font-size: 0.73rem; font-weight: 700; white-space: nowrap; }
.pricing-duration { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.pricing-price { font-size: 2.6rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 4px; }
.pricing-price-sub { font-size: 0.83rem; color: var(--gray-600); margin-bottom: 18px; }
.pricing-features { list-style: none; margin-bottom: 22px; text-align: left; }
.pricing-features li { padding: 5px 0; font-size: 0.88rem; color: var(--gray-700); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.disclaimer { background: #fff8e1; border: 1px solid #f59e0b; border-radius: 10px; padding: 14px 18px; font-size: 0.88rem; color: var(--gray-700); margin: 20px 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.info-card { background: white; border-radius: 16px; padding: 26px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--gray-200); }
.info-card-icon { width: 50px; height: 50px; background: rgba(204,0,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.info-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.info-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-question { width: 100%; background: white; border: none; padding: 18px 22px; text-align: left; font-size: 0.97rem; font-weight: 600; color: var(--gray-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background 0.2s; }
.faq-question:hover { background: var(--gray-50); }
.faq-question.active { background: rgba(204,0,0,0.05); color: var(--red); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 0.93rem; color: var(--gray-700); line-height: 1.7; background: white; }
.faq-answer.open { display: block; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.photo-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.step { text-align: center; padding: 22px; }
.step-num { width: 54px; height: 54px; background: var(--red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 900; margin: 0 auto 14px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.step p { font-size: 0.88rem; color: var(--gray-600); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; color: var(--gray-900); }
.contact-detail { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-detail-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; font-size: 0.82rem; color: var(--gray-600); margin-bottom: 2px; }
.contact-detail-text span, .contact-detail-text a { font-size: 0.93rem; color: var(--gray-900); text-decoration: none; }
.contact-detail-text a:hover { color: var(--red); }
.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-badge { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px; padding: 14px; text-align: center; }
.trust-badge-icon { font-size: 1.7rem; margin-bottom: 6px; }
.trust-badge-text { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); }
footer { background: var(--gray-900); color: rgba(255,255,255,0.8); padding: 56px 20px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand .logo-icon { background: var(--red); }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.6); }
.footer-desc { font-size: 0.88rem; margin-top: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: white; font-size: 0.93rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li span { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--gray-900); color: white; padding: 18px 22px; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 250px; }
.cookie-banner a { color: #ffd700; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 9px 18px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.cookie-accept { background: var(--red); color: white; }
.cookie-accept:hover { background: var(--red-dark); }
.cookie-decline { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3) !important; }
.price-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.price-table th { background: var(--red); color: white; padding: 13px 15px; text-align: left; font-size: 0.88rem; font-weight: 700; }
.price-table td { padding: 11px 15px; border-bottom: 1px solid var(--gray-200); font-size: 0.93rem; }
.price-table tr:nth-child(even) td { background: var(--gray-50); }
.price-table tr:hover td { background: rgba(204,0,0,0.04); }
.price-highlight { color: var(--red); font-weight: 700; }
.page-hero { background: linear-gradient(135deg, #1a0000 0%, #CC0000 100%); color: white; padding: 56px 20px; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.breadcrumb { background: var(--gray-100); padding: 11px 20px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 0.83rem; color: var(--gray-600); }
.breadcrumb a { color: var(--red); text-decoration: none; }
.alert { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 10px; padding: 14px 18px; margin: 18px 0; font-size: 0.93rem; color: #7f1d1d; }
.alert-info { background: #eff6ff; border-color: #93c5fd; color: #1e3a8a; }
.alert-success { background: #f0fdf4; border-color: #86efac; color: #14532d; }
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.55rem; font-weight: 800; margin: 30px 0 11px; color: var(--gray-900); }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 22px 0 8px; color: var(--gray-900); }
.prose p { margin-bottom: 14px; color: var(--gray-700); line-height: 1.7; }
.prose ul { margin: 10px 0 14px 20px; }
.prose ul li { margin-bottom: 5px; color: var(--gray-700); }
.prose strong { color: var(--gray-900); }
.prose a { color: var(--red); }
@media (max-width: 900px) {
  .hero-pricing { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 1px solid var(--gray-200); z-index: 999; }
}
