:root {
    --blue-primary: #ec4899;
    --blue-dark: #9d174d;
    --blue-light: #fce7f3;
    --red-accent: #f472b6;
    --red-hover: #f9a8d4;
    --white: #ffffff;
    --bg-main: #fdf2f8;
    --bg-surface: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --gradient-blue: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    --gradient-red: linear-gradient(135deg, #db2777 0%, #f9a8d4 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(236, 72, 153, 0.10) 0%, transparent 70%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(236, 72, 153, 0.25);
    --shadow-red-glow: 0 0 20px rgba(244, 114, 182, 0.25);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1200px;
    --section-padding: 40px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; }
p { margin: 0; color: var(--text-secondary); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
}

section { padding: var(--section-padding) 0; position: relative; overflow-x: clip; }

.section-header { margin-bottom: 24px; text-align: center; }
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: var(--blue-light);
    color: var(--blue-primary);
    border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-title { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 10px; color: var(--text-primary); }
.section-subtitle { font-size: 15px; max-width: 560px; margin: 0 auto; color: var(--text-secondary); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; font-weight: 600; font-size: 15px;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    transition: var(--transition); gap: 8px;
}
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(236, 72, 153, 0.35);
}
.btn-primary.shadow-glow { box-shadow: var(--shadow-glow); }

.btn-secondary {
    background: var(--blue-light);
    color: var(--text-primary);
    border: 1px solid rgba(236, 72, 153, 0.2);
}
.btn-secondary:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--blue-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--blue-primary);
    color: var(--blue-primary);
}
.btn-outline:hover {
    background: var(--blue-light);
}

.btn-white {
    background: white; color: var(--blue-dark);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(236, 72, 153, 0.15);
}
.navbar.scrolled .logo-text { color: var(--text-primary); }
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--blue-primary); }
.navbar.scrolled .mobile-menu-btn span { background: var(--text-primary); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 6px; }
.logo-icon { height: 32px; width: 32px; object-fit: contain; border-radius: 6px; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; transition: color 0.3s; }
.logo-text .highlight { color: var(--blue-primary); }
.navbar.scrolled .logo-text .highlight { color: var(--red-accent); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-weight: 600; color: var(--text-primary); font-size: 15px; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--blue-primary); }
.nav-cta {
    padding: 10px 20px; border-radius: 100px; font-size: 14px;
    background: var(--gradient-blue); color: white; box-shadow: none;
}
.nav-cta:hover { background: var(--gradient-blue); transform: none; box-shadow: var(--shadow-glow); }
.navbar.scrolled .nav-cta {
    background: var(--gradient-blue); color: white;
    box-shadow: var(--shadow-md);
}
.navbar.scrolled .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(236, 72, 153, 0.35);
}

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }

.hero {
    position: relative;
    padding-top: 120px; padding-bottom: 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 40%, #fbcfe8 100%);
    min-height: auto;
}

.hero-container {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; z-index: 3;
    max-width: 720px; margin: 0 auto;
}

.badge-wrapper {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(236, 72, 153, 0.08); padding: 6px 6px 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(236, 72, 153, 0.2);
    margin-bottom: 14px; font-size: 13px; color: var(--text-secondary);
}
.badge-new {
    background: var(--blue-primary); color: white;
    padding: 2px 8px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
}

.hero-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800; letter-spacing: -1px; margin-bottom: 10px; color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-strap {
    font-size: 14px; font-weight: 600; color: var(--text-secondary);
    margin-bottom: 8px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-subtitle {
    font-size: 14px; margin-bottom: 18px; line-height: 1.6; max-width: 600px;
    color: var(--text-secondary); margin-left: auto; margin-right: auto;
}
.hero-usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 22px 0;
    max-width: 520px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.hero-usp-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    text-align: left;
}
.hero-usp-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.hero-usp-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
}
.hero-usp-text small {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 11px;
}
@media (max-width: 480px) {
    .hero-usps { grid-template-columns: 1fr; }
}

.hero-buttons { display: flex; gap: 12px; margin-bottom: 16px; justify-content: center; }
.hero .btn-primary {
    background: var(--gradient-blue); color: white;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}
.hero .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}
.hero .btn-secondary {
    background: rgba(236, 72, 153, 0.08); color: var(--text-primary);
    border: 1px solid rgba(236, 72, 153, 0.25);
}
.hero .btn-secondary:hover {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.5);
}

.hero-payments {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(236, 72, 153, 0.15);
}
.hero-payments span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.intro-section {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}
.intro-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.intro-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}
.intro-lead {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.intro-highlight {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}
.intro-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 12px;
}
.intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}
.intro-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.intro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-primary);
}
@media (max-width: 900px) {
    .intro-container {
        max-width: 100%;
    }
}

.what-you-get {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
}
.what-you-get .container {
    max-width: var(--container-width);
}
.what-you-get-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--blue-primary);
    text-align: center;
    margin-bottom: 10px;
}
.what-you-get-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.what-card {
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.what-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}
.what-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    color: var(--blue-primary);
}
.what-icon svg {
    width: 24px;
    height: 24px;
}
.what-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.what-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .what-you-get-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
    }
    .what-you-get-title {
        margin-bottom: 32px;
    }
}

.steps-section { background: var(--bg-surface); }
.steps-grid {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px;
}
.step-card {
    background: var(--bg-main); border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-lg); padding: 22px 20px; text-align: center;
    flex: 1; max-width: 280px; transition: var(--transition);
}
.step-card:hover { border-color: rgba(236, 72, 153, 0.25); box-shadow: var(--shadow-md); }
.step-number {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-blue); border-radius: 50%; font-size: 18px; font-weight: 700;
    color: white; margin: 0 auto 12px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.step-arrow { color: var(--blue-primary); opacity: 0.4; }
.step-arrow svg { width: 28px; height: 28px; }
.steps-cta { text-align: center; color: var(--text-secondary); font-size: 14px; }

.reviews-section { background: var(--bg-main); }

.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
    background: var(--bg-surface); border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-lg); padding: 20px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(236, 72, 153, 0.25); box-shadow: var(--shadow-md); }
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author strong { display: block; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
.review-author span { font-size: 12px; color: var(--text-light); }

.pricing { background: var(--bg-surface); }

.screen-tabs {
    display: flex; justify-content: center; gap: 0; margin-bottom: 28px;
    background: var(--bg-main); border-radius: var(--radius-full); padding: 6px;
    width: fit-content; margin-left: auto; margin-right: auto;
    border: 1px solid rgba(236, 72, 153, 0.15); box-shadow: var(--shadow-sm);
}
.screen-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: var(--radius-full); border: none; background: transparent;
    color: var(--text-secondary); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.screen-tab:hover { color: var(--text-primary); }
.screen-tab.active {
    background: var(--gradient-blue); color: white;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}
.pop-label {
    background: var(--red-accent); color: white;
    font-size: 10px; font-weight: 700; padding: 2px 6px;
    border-radius: 4px; text-transform: uppercase;
}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; align-items: stretch; }

.pricing-card {
    background: var(--bg-main); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(236, 72, 153, 0.1);
    position: relative; transition: var(--transition); display: flex; flex-direction: column;
}
.pricing-card .card-content {
    display: flex; flex-direction: column; flex: 1; padding: 22px 20px;
}
.pricing-card .card-content > .btn {
    margin-top: auto; width: auto; align-self: center;
    padding: 12px 32px; font-size: 14px;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
    transform: scale(1.05); border: 2px solid var(--blue-primary);
    box-shadow: var(--shadow-md); z-index: 2;
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); }

.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-blue); color: white;
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap;
}
.plan-label-tag {
    display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--blue-primary); background: var(--blue-light);
    padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.plan-label-tag.featured { color: var(--blue-dark); background: rgba(236, 72, 153, 0.12); }

.pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.plan-desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.plan-price { margin-bottom: 4px; }
.price-big {
    font-size: 42px; font-weight: 800; color: var(--blue-primary); letter-spacing: -1px;
}
.price-per { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.savings-tag {
    display: inline-block; font-size: 12px; font-weight: 600; color: #16a34a;
    background: #dcfce7; padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 16px;
}
.divider { height: 1px; background: rgba(236, 72, 153, 0.12); margin-bottom: 16px; }

.feature-list { flex: 1; margin-bottom: 14px; list-style: none; }
.feature-list li {
    margin-bottom: 7px; display: flex; align-items: center; gap: 8px; font-size: 13px;
    color: var(--text-secondary);
}
.feature-list li.highlight { font-weight: 700; color: var(--text-primary); }
.feature-list .check {
    width: 20px; height: 20px; background: #dcfce7; color: #16a34a;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    margin-bottom: 12px;
}
.pricing-guarantee svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.pricing-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 10px;
}
.pricing-secure svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
    padding-top: 8px;
}
.section-cta .btn {
    position: relative;
    overflow: hidden;
}
.section-cta .btn::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}
.section-cta .btn:hover::after {
    transform: translateX(4px);
}
.intro-container .section-cta {
    text-align: center;
}

.faq-section { background: var(--bg-surface); }
.faq-accordion-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
    background: var(--bg-main); border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(236, 72, 153, 0.25); }
.faq-item.active { border-color: var(--blue-primary); box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%; padding: 14px 18px; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 700; color: var(--text-primary);
    cursor: pointer; text-align: left; gap: 16px;
}
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--blue-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-primary); transition: 0.3s;
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--blue-primary); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
    padding: 0 20px 20px; color: var(--text-secondary); line-height: 1.7; font-size: 15px;
}
.faq-answer-inner p { margin-bottom: 10px; color: var(--text-secondary); font-size: 15px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.cta-final { padding-bottom: 0; margin-bottom: -30px; position: relative; z-index: 10; overflow: hidden; }
.cta-box {
    background: var(--gradient-blue);
    border-radius: var(--radius-lg);
    padding: 48px 32px; text-align: center;
    color: white;
    box-shadow: 0 20px 60px -10px rgba(236, 72, 153, 0.35);
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); pointer-events: none;
}
.cta-content h2 { font-size: 26px; margin-bottom: 10px; }
.cta-content p { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
.cta-buttons-row { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}
.cta-trust-badges { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; opacity: 0.85; color: rgba(255,255,255,0.9); }
.trust-badge svg { width: 16px; height: 16px; }

.footer {
    background: #fdf2f8;
    padding-top: 56px;
    padding-bottom: 0;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}
.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 36px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-brand .logo { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand .logo-icon { height: 28px; width: 28px; }
.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 14px;
    margin-bottom: 0;
    max-width: 520px;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--blue-primary); }

.footer-col {
    text-align: center;
}
.footer-col h3 { display: none; }

.footer-contact-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.footer-contact-list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-contact-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--blue-primary);
}

.footer .logo-text { color: var(--text-primary); }
.footer .logo-text .highlight { color: var(--red-accent); }

.footer-legal {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}
.footer-legal a {
    color: var(--text-secondary);
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--blue-primary); }
.footer-legal-sep {
    color: rgba(236, 72, 153, 0.3);
    margin: 0 12px;
    font-size: 13px;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}
.footer-payments span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-top: 1px solid rgba(236, 72, 153, 0.1);
    padding: 20px 0;
}

.page-hero {
    padding: 130px 0 50px;
    background: var(--bg-surface);
    text-align: center;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}
.page-hero-inner { max-width: 640px; margin: 0 auto; }
.page-hero-title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800; color: var(--text-primary);
    margin-bottom: 14px; letter-spacing: -1px;
}
.page-hero-accent { color: var(--blue-primary); }
.page-hero-desc {
    font-size: 16px; color: var(--text-secondary);
    max-width: 500px; margin: 0 auto; line-height: 1.6;
}

.guide-content { padding: var(--section-padding) 0; background: var(--bg-main); }
.guide-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }

.guide-nav { position: sticky; top: 90px; height: fit-content; }
.guide-nav ul { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0; }
.guide-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; color: var(--text-secondary);
    background: var(--bg-surface); border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    transition: var(--transition);
}
.guide-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.guide-nav-link:hover { color: var(--blue-primary); border-color: rgba(236, 72, 153, 0.25); }
.guide-nav-link.active {
    color: var(--blue-primary); border-color: var(--blue-primary);
    background: var(--blue-light);
}

.guide-main { min-width: 0; }
.guide-section {
    background: var(--bg-surface); border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px;
    transition: var(--transition);
}
.guide-section:hover { border-color: rgba(236, 72, 153, 0.2); box-shadow: var(--shadow-sm); }
.guide-section h2 {
    font-size: 22px; font-weight: 700; color: var(--text-primary);
    margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.guide-section h3 {
    font-size: 16px; font-weight: 700; color: var(--blue-primary);
    margin: 24px 0 12px; padding-top: 16px;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}
.guide-section h3:first-of-type { border-top: none; padding-top: 0; margin-top: 20px; }
.guide-section p {
    color: var(--text-secondary); margin-bottom: 14px;
    line-height: 1.7; font-size: 15px;
}
.guide-section ol, .guide-section ul {
    margin-left: 20px; margin-bottom: 16px; padding: 0;
}
.guide-section ol { list-style: decimal; }
.guide-section ul { list-style: disc; }
.guide-section li {
    color: var(--text-secondary); margin-bottom: 8px;
    line-height: 1.6; font-size: 14px;
}
.guide-section li strong { color: var(--text-primary); }
.guide-section code {
    background: rgba(236, 72, 153, 0.1); padding: 2px 8px;
    border-radius: 4px; font-family: 'Courier New', monospace;
    font-size: 13px; color: var(--blue-primary); font-weight: 600;
}

.guide-help-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px;
}
.guide-help-card {
    background: var(--bg-main); border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md); padding: 24px; text-align: center;
    transition: var(--transition);
}
.guide-help-card:hover { border-color: rgba(236, 72, 153, 0.25); box-shadow: var(--shadow-sm); }
.guide-help-icon {
    width: 48px; height: 48px; margin: 0 auto 12px;
    background: var(--blue-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-primary);
}
.guide-help-icon svg { width: 22px; height: 22px; }
.guide-help-card h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.guide-help-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }

@media (max-width: 1024px) {
    .hero-container { text-align: center; gap: 40px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-payments { margin: 0 auto; }
    .hero-strap { margin-left: auto; margin-right: auto; text-align: center; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-5px); }
    .footer-grid { gap: 24px; }
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-surface); flex-direction: column; padding: 24px;
        box-shadow: var(--shadow-lg); border-top: 1px solid rgba(236, 72, 153, 0.1);
    }
    .navbar .nav-links .nav-link { color: var(--text-secondary); }
    .navbar .nav-links .nav-link:hover { color: var(--blue-primary); }
    .navbar .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .hero { padding-top: 100px; padding-bottom: 60px; }
    .hero-title { font-size: 28px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 14px; }
    .hero-buttons .btn-lg { padding: 12px 20px; font-size: 14px; }
    .steps-grid { flex-direction: column; gap: 16px; }
    .step-arrow { transform: rotate(90deg); }
    .step-card { max-width: 100%; width: 100%; }
    .reviews-grid { grid-template-columns: 1fr; }
    .screen-tabs { flex-direction: row; border-radius: var(--radius-full); width: 100%; padding: 4px; }
    .screen-tab { justify-content: center; border-radius: var(--radius-full); padding: 8px 14px; font-size: 13px; flex: 1; white-space: nowrap; }
    .pop-label { font-size: 8px; padding: 2px 4px; }
    .guide-grid { grid-template-columns: 1fr; }
    .guide-nav { position: static; }
    .guide-nav ul { flex-direction: row; flex-wrap: wrap; }
    .guide-nav-link { font-size: 13px; padding: 8px 12px; }
    .guide-section { padding: 24px; }
    .guide-help-grid { grid-template-columns: 1fr; }
    .footer-grid { gap: 20px; }
    .footer-contact-list { flex-direction: column; gap: 10px; }
    .footer-about { margin-left: auto; margin-right: auto; }
    .footer-contact-list li a { justify-content: center; }
    .whatsapp-float { left: 14px; bottom: 14px; }
    .whatsapp-btn { width: 52px; height: 52px; }
    .whatsapp-btn svg { width: 28px; height: 28px; }
    .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-wrap: wrap; gap: 8px; }
    .hero-buttons .btn { padding: 12px 18px; font-size: 14px; }
    .cta-buttons-row { flex-direction: column; align-items: center; }
    .cta-buttons-row .btn { width: auto; text-align: center; padding: 12px 28px; font-size: 14px; }
    .badge-wrapper { font-size: 11px; padding: 4px 4px 4px 12px; }
    .cta-trust-badges { flex-direction: column; gap: 10px; }
}

.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-tooltip {
    background: var(--text-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-surface);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(236, 72, 153, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.cookie-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.cookie-content {
    flex: 1;
    min-width: 0;
}
.cookie-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}
.cookie-content a {
    color: var(--blue-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-content a:hover {
    color: var(--text-primary);
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 4px;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.cookie-btn-accept {
    background: var(--blue-primary);
    color: white;
}
.cookie-btn-accept:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(236, 72, 153, 0.2);
}
.cookie-btn-reject:hover {
    background: rgba(236, 72, 153, 0.06);
    color: var(--text-primary);
    border-color: rgba(236, 72, 153, 0.3);
}
.cookie-btn-settings {
    background: transparent;
    color: var(--text-light);
    padding: 10px 14px;
    font-size: 13px;
}
.cookie-btn-settings:hover {
    color: var(--blue-primary);
}

.cookie-settings-panel {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}
.cookie-settings-panel.open {
    display: block;
}
.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}
.cookie-setting-row:last-child {
    border-bottom: none;
}
.cookie-setting-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.cookie-setting-info p {
    font-size: 12px;
    color: var(--text-light);
}
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(236, 72, 153, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--blue-primary);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}
.cookie-save-row {
    padding-top: 12px;
    text-align: right;
}
.cookie-btn-save {
    background: var(--blue-primary);
    color: white;
}
.cookie-btn-save:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    .cookie-icon { display: none; }
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* SEO Landing Pages */
.seo-section {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
}
.seo-section.seo-alt {
    background: var(--bg-surface);
}
.seo-container {
    max-width: 800px;
    margin: 0 auto;
}
.seo-container p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.seo-container p:last-child {
    margin-bottom: 0;
}
.seo-container a {
    color: var(--blue-primary);
    text-decoration: underline;
}
.seo-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 20px;
}
.seo-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.seo-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.seo-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

.seo-comparison {
    margin: 24px 0;
    overflow-x: auto;
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.seo-table th, .seo-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}
.seo-table thead th {
    background: rgba(236, 72, 153, 0.06);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 13px;
}
.seo-table td {
    color: var(--text-secondary);
}
.seo-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}
.seo-table td strong {
    color: var(--blue-primary);
}

.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}
.seo-benefit {
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
}
.seo-benefit h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.seo-benefit p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}
.seo-alt .seo-benefit {
    background: var(--bg-main);
}

.seo-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}
.seo-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
}
.seo-alt .seo-feature-item {
    background: var(--bg-main);
}
.seo-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(236, 72, 153, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-primary);
}
.seo-feature-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.seo-feature-item p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

.seo-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}
.seo-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.seo-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}
.seo-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.seo-step p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

.seo-cta-box {
    text-align: center;
    margin: 32px 0 0;
    padding: 32px;
    background: rgba(236, 72, 153, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(236, 72, 153, 0.1);
}
.seo-cta-sub {
    font-size: 13px !important;
    color: var(--text-light) !important;
    margin-top: 12px;
}

.seo-devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.seo-device {
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.seo-device h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.seo-device p {
    font-size: 13px !important;
    margin-bottom: 0 !important;
}
.seo-alt .seo-device {
    background: var(--bg-main);
}

@media (max-width: 640px) {
    .seo-benefits-grid,
    .seo-devices-grid { grid-template-columns: 1fr; }
    .seo-feature-item { flex-direction: column; }
    .seo-step { flex-direction: column; }
}

/* Order Page */
.order-section {
    padding: var(--section-padding) 0;
    background: var(--bg-main);
}
.order-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}
.order-summary h2,
.order-form-wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.order-summary-card {
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}
.order-plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}
.order-plan-row:last-child { border-bottom: none; }
.order-plan-label {
    font-size: 14px;
    color: var(--text-secondary);
}
.order-plan-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}
.order-plan-total { padding-top: 14px; margin-top: 4px; border-top: 2px solid rgba(236, 72, 153, 0.15); border-bottom: none; }
.order-price {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--blue-primary) !important;
}
.order-includes {
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}
.order-includes h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.order-includes ul { list-style: none; padding: 0; margin: 0; }
.order-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.order-includes .check {
    width: 18px; height: 18px; background: #dcfce7; color: #16a34a;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.order-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-full);
    padding: 10px 16px;
}
.order-guarantee svg { width: 16px; height: 16px; flex-shrink: 0; }

.order-form-wrapper {
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.order-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}
.form-group input {
    padding: 14px 16px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}
.form-group input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-error {
    font-size: 12px;
    color: #ef4444;
    min-height: 16px;
}
.order-submit {
    margin-top: 4px;
    position: relative;
}
.order-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}
.order-submit-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.order-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}
.order-secure-note svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 768px) {
    .order-grid { grid-template-columns: 1fr; }
    .order-form-wrapper { padding: 24px; }
}

/* Thank You Page */
.thankyou-section {
    padding: 120px 0 var(--section-padding);
    background: var(--bg-main);
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.thankyou-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.thankyou-icon svg { width: 40px; height: 40px; }
.thankyou-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.thankyou-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.thankyou-details {
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
    text-align: left;
}
.thankyou-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}
.thankyou-detail-row:last-child { border-bottom: none; }
.thankyou-detail-row span { color: var(--text-secondary); }
.thankyou-detail-row strong { color: var(--text-primary); }
.thankyou-email-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    background: rgba(236, 72, 153, 0.05);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 28px;
}
.thankyou-email-notice > svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--blue-primary);
    margin-top: 2px;
}
.thankyou-email-notice p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.thankyou-email-notice p:last-child { margin-bottom: 0; }
.thankyou-next-steps {
    text-align: left;
    margin-bottom: 28px;
}
.thankyou-next-steps h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}
.thankyou-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.thankyou-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.thankyou-step-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.thankyou-step strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.thankyou-step p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}
.thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════ */
/* BLOG PAGE                                   */
/* ═══════════════════════════════════════════ */

.blog-hero {
    padding-top: 120px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 40%, #fbcfe8 100%);
    text-align: center;
}
.blog-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-pillars-section {
    padding: 40px 0 60px;
}
.blog-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-pillar-card {
    background: var(--bg-surface);
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pillar-icon svg {
    width: 24px;
    height: 24px;
    color: var(--blue-primary);
}

.pillar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.pillar-title a {
    color: inherit;
}
.pillar-title a:hover {
    color: var(--blue-primary);
}

.pillar-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pillar-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.pillar-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
.pillar-links li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-primary);
    opacity: 0.4;
    flex-shrink: 0;
    transition: var(--transition);
}
.pillar-links li a:hover {
    color: var(--blue-primary);
    padding-left: 4px;
}
.pillar-links li a:hover::before {
    opacity: 1;
}
.pillar-links li:last-child a {
    border-bottom: none;
}

.pillar-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-primary);
    margin-top: auto;
}
.pillar-read-more:hover {
    color: var(--blue-dark);
}

@media (max-width: 900px) {
    .blog-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blog-pillars-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}
