/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Navigation - Floating Style */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.nav-brand a {
    color: #111;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: 12px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.nav-menu a:last-child {
    border-bottom: none;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta span {
    font-weight: 600;
    font-size: 14px;
}

.btn-sticky {
    background: #fff;
    color: #667eea;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.btn-sticky:hover {
    background: #f0f0f0;
    color: #667eea;
}

/* Hero Story Section */
.hero-story {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.hero-narrow {
    max-width: 680px;
    color: #fff;
    text-align: center;
}

.hero-narrow h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.95;
}

.hero-cta-inline {
    margin-top: 40px;
}

.btn-hero-primary {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    color: #111;
}

/* Story Block */
.story-block {
    padding: 80px 20px;
    background: #f9f9f9;
}

.story-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
}

.story-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Visual Reveal Section */
.visual-reveal {
    padding: 100px 20px;
    background: #fff;
}

.split-reveal {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.reveal-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.reveal-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.reveal-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* Problem Amplify */
.problem-amplify {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Insight Section */
.insight-section {
    padding: 100px 20px;
    background: #fafafa;
    text-align: center;
}

.insight-badge {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.insight-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.3;
}

.insight-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.insight-cta {
    margin-top: 48px;
}

.btn-insight {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background 0.3s ease;
}

.btn-insight:hover {
    background: #333;
    color: #fff;
}

/* Storytelling Visual */
.storytelling-visual {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    background: #fff;
}

.story-image-left img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
}

.story-content-right h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.story-content-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* Benefit Cascade */
.benefit-cascade {
    padding: 100px 20px;
    background: #f5f5f5;
}

.section-center-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 80px;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.benefit-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.proof-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    font-size: 20px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

/* Trust Builder */
.trust-builder {
    padding: 80px 20px;
    background: #fff;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.badge-item {
    background: #f0f9ff;
    color: #0369a1;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #bae6fd;
}

/* Offer Reveal */
.offer-reveal {
    padding: 100px 20px;
    background: #fafafa;
}

.reveal-header {
    text-align: center;
    margin-bottom: 60px;
}

.reveal-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.reveal-subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.6;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.service-card.featured {
    border: 3px solid #10b981;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 24px 24px 16px;
    line-height: 1.3;
}

.service-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 24px 20px;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 24px 24px;
}

.service-benefits span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 20px 24px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Urgency Block */
.urgency-block {
    padding: 60px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff;
}

.urgency-content {
    text-align: center;
}

.urgency-icon {
    font-size: 60px;
    margin-bottom: 24px;
}

.urgency-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
}

.urgency-highlight span {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 16px;
    border-radius: 8px;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 17px;
    color: #666;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
}

.final-cta-content {
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-final-large {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 20px 60px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.btn-final-large:hover {
    transform: scale(1.05);
    color: #111;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-cookie-accept {
    background: #10b981;
    color: #fff;
}

.btn-cookie-reject {
    background: #6b7280;
    color: #fff;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    transform: translateY(-2px);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px 20px;
}

.thanks-container {
    max-width: 700px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.thanks-lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-info {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.thanks-next h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.thanks-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.step-number {
    background: #667eea;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-top: 6px;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.btn-back-home,
.btn-view-more {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-back-home {
    background: #667eea;
    color: #fff;
}

.btn-view-more {
    background: #f3f4f6;
    color: #111;
}

.btn-back-home:hover,
.btn-view-more:hover {
    transform: translateY(-2px);
}

.btn-back-home:hover {
    color: #fff;
}

.btn-view-more:hover {
    color: #111;
}

.thanks-contact {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.thanks-contact p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* About Page */
.about-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
    background: #fff;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-values {
    padding: 80px 20px;
    background: #f9fafb;
}

.about-values h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.about-team {
    padding: 80px 20px;
    background: #fff;
}

.about-team h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.about-mission {
    padding: 80px 20px;
    background: #f0f9ff;
}

.about-mission h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.about-mission p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #5568d3;
    color: #fff;
}

/* Services Page */
.services-header {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    text-align: center;
}

.services-header h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-lead {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.services-grid-section {
    padding: 80px 20px;
    background: #fff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-tag {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-item-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-item-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-price-box {
    background: #f0fdf4;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
}

.btn-service {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #5568d3;
    color: #fff;
}

.services-guarantee {
    padding: 80px 20px;
    background: #f9fafb;
}

.services-guarantee h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.guarantee-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.guarantee-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.guarantee-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 15px;
    color: #666;
}

/* Contact Page */
.contact-header {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    text-align: center;
}

.contact-header h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-info-section {
    padding: 80px 20px;
    background: #fff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 6px;
}

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.contact-departments {
    padding: 80px 20px;
    background: #f9fafb;
}

.contact-departments h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.departments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.department-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.department-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.department-item p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.department-item a {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
}

.contact-faq {
    padding: 80px 20px;
    background: #fff;
}

.contact-faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.contact-cta-section {
    padding: 80px 20px;
    background: #0f172a;
}

.contact-cta-box {
    text-align: center;
    color: #fff;
}

.contact-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-cta-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-contact-main {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: background 0.3s ease;
}

.btn-contact-main:hover {
    background: #059669;
    color: #fff;
}

/* Policy Pages */
.policy-page {
    padding: 120px 20px 80px;
    background: #fff;
}

.policy-page h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.policy-date {
    font-size: 15px;
    color: #888;
    margin-bottom: 48px;
}

.policy-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #111;
}

.policy-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
}

.policy-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.policy-page ul {
    margin: 16px 0 24px 24px;
}

.policy-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 32px;
    }

    .nav-menu a {
        padding: 0;
        border-bottom: none;
    }

    .hero-narrow h1 {
        font-size: 58px;
    }

    .hero-lead {
        font-size: 22px;
    }

    .split-reveal {
        flex-direction: row;
        align-items: center;
    }

    .reveal-visual,
    .reveal-text {
        flex: 1;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1 1 calc(50% - 12px);
    }

    .storytelling-visual {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .story-image-left {
        flex: 1;
    }

    .story-content-right {
        flex: 1;
    }

    .story-image-left img {
        margin-bottom: 0;
    }

    .benefit-row {
        flex-direction: row;
        align-items: center;
    }

    .benefit-row.reverse {
        flex-direction: row-reverse;
    }

    .benefit-text,
    .benefit-visual {
        flex: 1;
    }

    .trust-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 14px);
    }

    .team-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .service-item {
        flex-direction: row;
    }

    .service-item-img {
        flex: 0 0 40%;
    }

    .service-item-content {
        flex: 1;
    }

    .guarantee-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 1 1 calc(50% - 12px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .sticky-cta span {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .problem-card {
        flex: 1 1 calc(25% - 18px);
    }

    .guarantee-blocks {
        flex-wrap: nowrap;
    }

    .guarantee-item {
        flex: 1;
    }
}