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

:root {
    --coral: #F4845F;
    --coral-light: #FFF0EB;
    --coral-dark: #E06A45;
    --teal: #7DD3C0;
    --teal-light: #E8F8F5;
    --teal-dark: #5BC4AD;
    --yellow: #FFD166;
    --yellow-light: #FFF8E7;
    --yellow-dark: #FFC44D;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --dark: #1F2937;
    --white: #FFFFFF;
    --cream: #FFFBF7;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.25rem; }

p {
    color: var(--gray);
}

/* Colors */
.text-coral { color: var(--coral); }
.text-teal { color: var(--teal-dark); }
.text-yellow { color: var(--yellow-dark); }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.badge-coral {
    background: var(--coral);
    color: var(--white);
}

.badge-teal {
    background: var(--teal);
    color: var(--white);
}

.badge-yellow {
    background: var(--yellow);
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
}

.btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
}

.btn-white:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 32px;
    font-size: 1.1rem;
}

.btn-large svg {
    width: 24px;
    height: 24px;
}

.btn-full {
    width: 100%;
}

/* Icon Boxes */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.icon-coral {
    background: var(--coral);
    color: var(--white);
}

.icon-coral-light {
    background: var(--coral-light);
    color: var(--coral);
}

.icon-teal {
    background: var(--teal);
    color: var(--white);
}

.icon-teal-light {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.icon-yellow {
    background: var(--yellow);
    color: var(--dark);
}

.icon-yellow-light {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.icon-coral2 {
    background: var(--coral-dark);
    color: var(--white);
}

.icon-gray {
    background: var(--gray-light);
    color: var(--gray);
}

.icon-white {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .badge {
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 8px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, #FFF5F0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,132,95,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.hero-title span {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.hosting-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--teal);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.time-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--yellow);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-badge div {
    display: flex;
    flex-direction: column;
}

.time-badge strong {
    font-size: 1.25rem;
    line-height: 1;
}

.time-badge span {
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.card-traditional {
    border: 2px solid var(--gray-light);
}

.card-fast {
    background: var(--coral);
    color: var(--white);
}

.card-fast h3,
.card-fast p,
.card-fast strong {
    color: var(--white);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-header h3 {
    margin-bottom: 4px;
}

.card-header p {
    font-size: 0.875rem;
}

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

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

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-coral {
    background: rgba(255,255,255,0.3);
    color: var(--white);
}

.step strong {
    display: block;
    margin-bottom: 4px;
}

.step p {
    font-size: 0.875rem;
}

.total-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.total-time strong {
    font-size: 1.5rem;
    color: var(--gray);
}

.total-fast {
    border-top-color: rgba(255,255,255,0.3);
}

.total-fast strong {
    color: var(--white);
    font-size: 2rem;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card .icon-box {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
}

.feature-card .icon-box svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-coral {
    background: var(--coral-light);
    color: var(--coral);
}

.tag-teal {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.tag-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.bonus-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bonus-content h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.bonus-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.bonus-badge {
    text-align: right;
}

.bonus-badge span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

.bonus-badge strong {
    font-size: 1.5rem;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.audience-card {
    border-radius: 20px;
    padding: 28px;
    border-left: 4px solid;
}

.card-coral {
    background: var(--coral-light);
    border-color: var(--coral);
}

.card-teal {
    background: var(--teal-light);
    border-color: var(--teal);
}

.card-yellow {
    background: var(--yellow-light);
    border-color: var(--yellow);
}

.card-coral2 {
    background: #FFF0EB;
    border-color: var(--coral-dark);
}

.audience-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.audience-header h3 {
    margin-bottom: 4px;
}

.audience-header p {
    font-size: 0.95rem;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 64px;
}

.tag-coral2 {
    background: rgba(224, 106, 69, 0.15);
    color: var(--coral-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.consult-banner {
    background: var(--teal);
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consult-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.consult-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
}

.pricing-card {
    background: var(--coral);
    border-radius: 24px;
    padding: 32px;
    color: var(--white);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    color: var(--white);
}

.popular-badge {
    background: var(--white);
    color: var(--coral);
    padding: 8px;
    border-radius: 50%;
}

.pricing-price {
    margin-bottom: 24px;
}

.currency {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.period {
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.value-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    text-align: center;
    margin-bottom: 24px;
}

.value-items {
    margin-bottom: 24px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
}

.value-item:last-child {
    border-bottom: none;
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 18px;
    height: 18px;
}

.value-item span {
    flex: 1;
    color: var(--dark);
}

.value-item strong {
    font-weight: 600;
}

.savings-box {
    background: var(--teal);
    border-radius: 16px;
    padding: 20px 24px;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.savings-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.savings-text span {
    opacity: 0.9;
}

.savings-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

.original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.25rem;
}

.final {
    font-size: 2rem;
    font-weight: 700;
}

.savings-badge {
    width: 100%;
    text-align: right;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 32px;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid;
    display: flex;
    flex-direction: column;
}

.step-card:nth-child(1) { border-color: var(--coral); }
.step-card:nth-child(3) { border-color: var(--teal); }
.step-card:nth-child(5) { border-color: var(--yellow); }

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.label-coral {
    background: var(--coral-light);
    color: var(--coral);
}

.label-teal {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.label-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    flex: 1;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.time-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--coral-light);
    color: var(--coral);
    margin: 0 auto;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}

.step-arrow svg {
    width: 32px;
    height: 32px;
}

.highlight-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 50%, var(--yellow) 100%);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-content h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.highlight-content p {
    color: rgba(255,255,255,0.9);
}

.highlight-badge {
    text-align: right;
}

.highlight-badge span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

.highlight-badge strong {
    font-size: 1.75rem;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    color: var(--white);
}

.stat-coral {
    background: var(--coral);
}

.stat-teal {
    background: var(--teal);
}

.stat-yellow {
    background: var(--yellow);
    color: var(--dark);
}

.stat-coral2 {
    background: var(--coral-dark);
}

.stat-card strong {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.stat-yellow span {
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244,132,95,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 260px;
}

.contact-buttons .btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-buttons .btn span {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.contact-buttons .btn strong {
    font-size: 1.1rem;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    font-weight: 500;
    color: var(--dark);
    box-shadow: var(--shadow);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

.promo-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
    border-radius: 20px;
    padding: 24px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.promo-content h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.promo-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(244, 132, 95, 0.1);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.navbar-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.navbar-links a:hover {
    color: var(--coral);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-contact .btn-nav {
    color: var(--white);
    background: var(--coral);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.navbar-contact .btn-nav:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 132, 95, 0.3);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--cream);
}

.footer .copyright {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive Navigation */
@media (max-width: 900px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-light);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-links.active {
        display: flex;
    }
    
    .navbar-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
    }
    
    .navbar-links a:hover {
        background: var(--coral-light);
    }
    
    .navbar-links a::after {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar-contact {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .vs-badge {
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title span {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-banner,
    .consult-banner,
    .highlight-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .bonus-badge,
    .highlight-badge {
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}
