/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a56db;
    --primary-dark: #1e40af;
    --secondary-color: #fbbf24;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    --white: #ffffff;
    --yellow-bg: #fef3c7;
    --blue-dark: #1e3a5f;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== Skip to Content ===== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* ===== Focus Visible ===== */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color, #4F46E5);
    outline-offset: 2px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Global section overflow control */
section {
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-login {
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
}

.btn-login:hover {
    color: var(--primary-color);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-icon {
    color: var(--primary-color);
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--dark-color);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--yellow-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-color);
}

.hero-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.hero-note a:hover {
    color: var(--primary-dark);
}

/* Hero Illustration */
.hero-image {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-illustration {
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.illustration-main {
    position: relative;
    z-index: 2;
}

.browser-window {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    background: var(--light-color);
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #22c55e; }

.browser-content {
    padding: 30px;
    min-height: 300px;
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
}

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

.product-card {
    background: var(--white);
    border-radius: 8px;
    height: 150px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f3f4f6 100%);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 10px;
    background: var(--light-gray);
    border-radius: 4px;
}

.illustration-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco-plant {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50% 50% 0 0;
}

.deco-plant.left {
    left: -20px;
    bottom: 20px;
}

.deco-plant.right {
    right: -20px;
    bottom: 40px;
    width: 60px;
    height: 100px;
}

.deco-person {
    position: absolute;
    right: 50px;
    top: 20px;
    width: 60px;
    height: 100px;
    background: linear-gradient(180deg, #1e3a5f 0%, #1e3a5f 30%, #fbbf24 30%, #fbbf24 100%);
    border-radius: 30px 30px 0 0;
}

/* ===== Builder Section ===== */
.builder-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.builder-image {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.stack-item.main {
    position: relative;
    z-index: 1;
}

.mockup-screen {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.mockup-header {
    height: 50px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.mockup-content {
    display: flex;
    min-height: 280px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--light-color);
    border-right: 1px solid var(--light-gray);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.mockup-product {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 12px;
}

.mockup-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-details::before,
.mockup-details::after {
    content: '';
    height: 12px;
    background: var(--light-gray);
    border-radius: 4px;
}

.mockup-details::before {
    width: 80%;
}

.mockup-details::after {
    width: 60%;
}

.stack-item.secondary {
    position: absolute;
    top: 20px;
    right: -20px;
    z-index: 2;
}

.floating-card {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.card-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
}

.stack-item.tertiary {
    position: absolute;
    bottom: 0;
    left: -30px;
    z-index: 2;
}

.floating-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.builder-content {
    padding-right: 40px;
    max-width: 100%;
    overflow: hidden;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-desc {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    overflow: hidden;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--dark-color);
    transition: var(--transition);
}

.tag i {
    color: var(--success-color);
    font-size: 12px;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tag:hover i {
    color: var(--white);
}

.webinar-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--gray-color);
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.stats-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stats-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
}

.stats-counter {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: baseline;
}

.stats-counter .currency {
    font-size: 36px;
    margin-right: 5px;
}

.stats-counter .decimal {
    font-size: 24px;
    opacity: 0.7;
}

.stats-illustration {
    position: relative;
    width: 300px;
    height: 200px;
}

.rocket {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 60px;
    color: var(--secondary-color);
    transform: rotate(-45deg);
}

.stats-chart {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
}

.chart-line {
    width: 100%;
    height: 100%;
}

.chart-animate {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawChart 2s ease forwards;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background: var(--light-color);
    overflow: hidden;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 25px;
}

.feature-illustration {
    height: 180px;
    background: var(--light-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

/* Domain Feature */
.domain-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
}

.url-bar {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.http {
    color: var(--gray-color);
}

.domain-text {
    color: var(--dark-color);
    font-weight: 500;
}

.domain-visual {
    margin-top: 20px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    border-radius: 8px;
}

/* All in One Feature */
.dashboard-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dash-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.dash-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.stat-item {
    flex: 1;
    background: var(--light-color);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.stat-icon {
    color: var(--primary-color);
}

.dash-store {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
}

/* Payment Feature */
.payment-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 85%;
}

.pay-icon {
    width: 60px;
    height: 40px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pay-icon:hover {
    transform: scale(1.1);
}

.pay-icon.visa { color: #1a1f71; }
.pay-icon.mastercard { color: #eb001b; }
.pay-icon.paypal { color: #003087; }
.pay-icon.apple { color: #000; }

.pay-more {
    width: 60px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.testimonials-decoration {
    position: absolute;
    top: -20px;
    right: -100px;
    display: flex;
    gap: 10px;
}

.deco-person-1,
.deco-person-2 {
    width: 40px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fbbf24 0%, #f97316 100%);
}

.deco-person-2 {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.testimonials-slider {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 30px;
    width: calc(25% - 23px);
    min-width: 260px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 14px;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.author-info span {
    font-size: 12px;
    color: var(--gray-color);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    max-width: 400px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 25px;
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-color);
}

.cta-illustration {
    width: 400px;
    height: 300px;
    position: relative;
}

.cta-people {
    position: relative;
    width: 100%;
    height: 100%;
}

.person {
    position: absolute;
    border-radius: 50%;
}

.person-1 {
    width: 120px;
    height: 180px;
    background: linear-gradient(180deg, #1e3a5f 0%, #1e3a5f 40%, var(--primary-color) 40%, var(--primary-color) 100%);
    border-radius: 60px 60px 0 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.person-2 {
    width: 80px;
    height: 130px;
    background: linear-gradient(180deg, #fbbf24 0%, #fbbf24 35%, #1e3a5f 35%, #1e3a5f 100%);
    border-radius: 40px 40px 0 0;
    left: 20%;
    bottom: 0;
}

.person-3 {
    width: 90px;
    height: 140px;
    background: linear-gradient(180deg, #f97316 0%, #f97316 40%, #22c55e 40%, #22c55e 100%);
    border-radius: 45px 45px 0 0;
    right: 20%;
    bottom: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.footer-brand .logo {
    margin-bottom: 10px;
}

.copyright {
    font-size: 13px;
    color: var(--gray-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-nav-links {
    margin-bottom: 30px;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    display: block;
    padding: 10px 0;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-buttons .btn-primary {
    justify-content: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== New Pages Styles ===== */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--yellow-bg) 0%, var(--white) 100%);
    position: relative;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 500px;
    margin: 0 auto;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* ===== About Page Styles ===== */

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-illustration {
    position: relative;
    padding: 40px;
}

.story-main-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 80px;
    color: var(--white);
}

.story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.badge-text {
    font-size: 12px;
    color: var(--gray-color);
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-color);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--light-color);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.team-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-placeholder i {
    font-size: 40px;
    color: var(--white);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-role {
    font-size: 13px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Join Section */
.join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.join-content {
    text-align: center;
    color: var(--white);
}

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

.join-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.join-content .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.join-content .btn-primary:hover {
    background: var(--light-color);
}

/* ===== Contact Page Styles ===== */

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 16px;
    transition: var(--transition);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.info-card a,
.info-card address {
    font-size: 14px;
    color: var(--primary-color);
    font-style: normal;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 0 0 100px;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* FAQ Teaser */
.faq-teaser {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-teaser-content {
    text-align: center;
}

.faq-teaser-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.faq-teaser-content p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* ===== Pricing Page Styles ===== */

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.toggle-label {
    font-size: 14px;
    color: var(--gray-color);
    cursor: pointer;
}

.toggle-label .save-badge {
    background: var(--success-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 5px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-gray);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

input:checked + .toggle-slider {
    background: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    overflow: hidden;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-color);
}

.plan-price {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 25px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    vertical-align: top;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--gray-color);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark-color);
}

.plan-features li i {
    width: 20px;
    color: var(--success-color);
}

.plan-features li.disabled {
    color: var(--gray-color);
}

.plan-features li.disabled i {
    color: var(--light-gray);
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--light-color);
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table td {
    font-size: 14px;
    color: var(--dark-color);
}

.text-green { color: var(--success-color); }
.text-red { color: #ef4444; }

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-color);
}

.faq-question i {
    transition: var(--transition);
    color: var(--gray-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.7;
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Pricing CTA */
.pricing-cta {
    padding: 80px 0;
    background: var(--light-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== FAQ Page Styles ===== */

.faq-search {
    position: relative;
    max-width: 500px;
    margin: 30px auto 0;
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-categories-section {
    padding: 40px 0;
    background: var(--white);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.faq-content-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 50px;
}

.faq-group-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.still-questions {
    padding: 80px 0;
    background: var(--light-color);
}

.questions-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.questions-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.questions-content p {
    font-size: 15px;
    color: var(--gray-color);
}

/* ===== Blog Page Styles ===== */

.featured-post-section {
    padding: 0 0 60px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.featured-image {
    position: relative;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 60px;
    color: rgba(255,255,255,0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.post-date,
.post-read {
    font-size: 13px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-categories-section {
    padding: 40px 0;
    background: var(--white);
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-cat-btn {
    padding: 10px 24px;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.blog-grid-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
}

.blog-card-image .image-placeholder {
    height: 100%;
}

.blog-card-image .image-placeholder i {
    font-size: 40px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content .post-meta {
    margin-bottom: 15px;
}

.blog-card-content .post-category {
    background: var(--light-color);
    color: var(--primary-color);
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more .btn-outline {
    cursor: pointer;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--light-color);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    color: var(--white);
}

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

.newsletter-content p {
    font-size: 15px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    min-width: 280px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    white-space: nowrap;
}

/* ===== Footer Grid (New Pages) ===== */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 30px;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray-color);
    margin: 15px 0 20px;
    line-height: 1.6;
}

.footer-links-group h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 14px;
    color: var(--gray-color);
}

.footer-links-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-color);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

@keyframes rocket {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    50% {
        transform: rotate(-45deg) translateY(-20px);
    }
}

@keyframes wave {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounceSlow 2s ease-in-out infinite;
}

.animate-rocket {
    animation: rocket 2s ease-in-out infinite;
}

.animate-wave {
    animation: wave 2s ease-in-out infinite;
}

/* Delay Classes */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.scroll-animate.visible {
    opacity: 1;
}

.scroll-animate.fade-up {
    transform: translateY(30px);
}

.scroll-animate.fade-up.visible {
    transform: translateY(0);
}

.scroll-animate.slide-right {
    transform: translateX(-30px);
}

.scroll-animate.slide-right.visible {
    transform: translateX(0);
}

.scroll-animate.slide-left {
    transform: translateX(30px);
}

.scroll-animate.slide-left.visible {
    transform: translateX(0);
}

.scroll-animate.slide-up {
    transform: translateY(30px);
}

.scroll-animate.slide-up.visible {
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .builder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .builder-content {
        padding-right: 0;
        order: -1;
        max-width: 100%;
        overflow: hidden;
    }
    
    .category-tags {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        width: calc(50% - 15px);
    }
    
    /* New Pages Responsive */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 250px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        overflow: hidden;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        overflow: hidden;
    }
    
    .stats-illustration {
        margin-top: 30px;
    }
    
    .stats-counter {
        font-size: 36px;
        justify-content: center;
    }
    
    .testimonials-track {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 40px;
    }
    
    .cta-illustration {
        width: 100%;
        max-width: 400px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-decoration {
        display: none;
    }
    
    /* New Pages Responsive 768px */
    .page-title {
        font-size: 32px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .questions-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .faq-cat-btn {
        white-space: nowrap;
    }
    
    .story-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .stats-counter {
        font-size: 26px;
    }
    
    .stats-illustration {
        width: 100%;
        max-width: 200px;
        height: 120px;
    }
    
    .cta-illustration {
        height: 200px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .builder-section {
        padding: 60px 0;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .story-section {
        padding: 60px 0;
    }
    
    .story-illustration {
        padding: 20px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .category-tags {
        gap: 8px;
    }
    
    .tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* New Pages Responsive 480px */
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .join-content h2 {
        font-size: 26px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-title {
        font-size: 18px;
    }
    
    .cta-box {
        padding: 35px 20px;
    }
    
    .cta-box h2 {
        font-size: 24px;
    }
    
    .newsletter-card {
        padding: 35px 20px;
    }
    
    .newsletter-content h2 {
        font-size: 20px;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        font-size: 18px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        height: 130px;
    }
    
    .browser-content {
        padding: 20px;
    }
    
    .floating-card,
    .floating-image {
        display: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-up,
    .animate-scale-in,
    .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .animate-float,
    .animate-bounce-slow,
    .animate-rocket,
    .animate-wave {
        animation: none !important;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn-primary,
    .btn-large {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .cta-box h2 {
        font-size: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-card {
        height: 110px;
    }
}
