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

:root {
    --primary-blue: #4C8DFF;
    --primary-purple: #A47CFF;
    --text-dark: #111111;
    --text-gray: #64748b;
    --bg-light: #F5F5FA;
    --bg-white: #F3F4F6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
    --glow: 0 0 40px rgba(76, 141, 255, 0.25);
    --glow-purple: 0 0 40px rgba(164, 124, 255, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    border: none;
    padding: 13px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(76, 141, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 141, 255, 0.4);
}

.btn-secondary {
    background: rgba(76, 141, 255, 0.08);
    color: var(--primary-blue);
    border: 2px solid rgba(76, 141, 255, 0.3);
    padding: 12px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 141, 255, 0.3);
}

.btn-secondary-small {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-small:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    margin-bottom: 32px;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 32px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(234, 67, 53, 0.2) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 188, 5, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.2) 0%, transparent 70%);
    bottom: 30%;
    left: 15%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    animation: heroFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #1967D2;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    animation: badgeFadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-title {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #202124;
    letter-spacing: -0.035em;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.title-line {
    display: block;
    animation: titleSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

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

.hero-subtitle {
    font-size: 20px;
    color: #5F6368;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.4s;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: buttonsFadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.5s;
}

.hero-micro-tagline {
    font-size: 14px;
    color: #5F6368;
    margin-top: 0;
    font-weight: 400;
}

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

.btn-hero-primary {
    background: #1A73E8;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-hero-primary:hover {
    background: #1765CC;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: transparent;
    color: #1A73E8;
    border: 2px solid #1A73E8;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
    background: rgba(26, 115, 232, 0.08);
    border-color: #1765CC;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scrollFadeIn 2s ease-out backwards;
    animation-delay: 1s;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, #DADCE0 50%, transparent 100%);
    animation: scrollMove 2s ease-in-out infinite;
}

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

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

/* Sections */
section {
    padding: 100px 24px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: #1A73E8;
    margin: 0 auto 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #202124;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #444444;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Value Statement */
#value-statement {
    background: #FAFAFA;
}

.value-text {
    text-align: center;
    font-size: 20px;
    color: #5F6368;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid #E8EAED;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.15);
    border-color: #1A73E8;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: #1A73E8;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 115, 232, 0.08);
    border-radius: 16px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #202124;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
}

.section-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* Who We Help */
#who-we-help {
    background: #FAFAFA;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 32px;
}

.benefits-list li {
    font-size: 18px;
    color: #5F6368;
    padding: 20px 0;
    border-bottom: 1px solid #E8EAED;
    position: relative;
    padding-left: 40px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #1A73E8;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.closing-line {
    text-align: center;
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 72px;
    height: 72px;
    background: #1A73E8;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.35);
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #202124;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
}

/* Benefits Grid */
#why-mazboot {
    background: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 40px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #E8EAED;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.15);
    border-color: #1A73E8;
}

.benefit-card h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #1A73E8;
    border-radius: 2px;
    margin-right: 12px;
    vertical-align: middle;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #202124;
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: #FFFFFF;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #E8EAED;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.15);
    border-color: #1A73E8;
}

.pricing-card.featured {
    border-color: #1A73E8;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.15);
    position: relative;
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1A73E8;
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
    letter-spacing: 0.5px;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-note {
    text-align: center;
    font-size: 15px;
    color: #5F6368;
    margin-top: 48px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #202124;
    letter-spacing: -0.01em;
}

.pricing-subtitle {
    font-size: 15px;
    color: #5F6368;
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card ul li {
    font-size: 15px;
    color: #444444;
    padding: 14px 0;
    border-bottom: 1px solid #E8EAED;
    position: relative;
    padding-left: 32px;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(26, 115, 232, 0.1);
    color: #1A73E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1A73E8;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Real Problems */
#real-problems {
    background: #FAFAFA;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.problem-item {
    font-size: 17px;
    color: #444444;
    padding: 24px 24px 24px 60px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E8EAED;
    font-style: italic;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.problem-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-item:hover {
    background: #FFFFFF;
    border-color: #1A73E8;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.check-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #1A73E8;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

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

.faq-item {
    margin-bottom: 12px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8EAED;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #1A73E8;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #202124;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: #1A73E8;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #5F6368;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #1A73E8;
}

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

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
}

/* Contact */
#contact {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.contact-direct {
    text-align: center;
    font-size: 16px;
    color: #444444;
    margin: 0 auto 32px;
    max-width: 600px;
}

.contact-direct a {
    color: #1A73E8;
    text-decoration: none;
    font-weight: 500;
}

.contact-direct a:hover {
    text-decoration: underline;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 16px 18px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #1A73E8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.contact-form button {
    margin-top: 8px;
    background: #1A73E8;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.contact-form button:hover {
    background: #1765CC;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #81C784;
}

.form-message.error {
    display: block;
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF5350;
}

/* Premium Footer */
#footer {
    background: #202124;
    color: #E8EAED;
}

/* Zone 1: CTA Strip */
.footer-cta-strip {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(164, 124, 255, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 24px;
}

.cta-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-strip-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-strip-text p {
    font-size: 16px;
    color: #9AA0A6;
    margin: 0;
}

.cta-strip-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-footer-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-footer-primary:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn-footer-primary svg {
    width: 20px;
    height: 20px;
}

.btn-footer-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Main Footer Content */
.footer-main {
    padding: 80px 24px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Zone 2: Brand Column */
.footer-brand {
    max-width: 380px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4C8DFF, #A47CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-trust {
    font-size: 14px;
    color: #4C8DFF;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    color: #9AA0A6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-location {
    font-size: 13px;
    color: #5F6368;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Zone 3: Problem-Based Navigation */
.footer-problems h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    margin-bottom: 14px;
}

.problem-list a {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 16px;
}

.problem-list a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4C8DFF;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.problem-list a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.problem-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Zone 4: Contact Column */
.footer-contact-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.contact-methods {
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    font-size: 12px;
    color: #5F6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-link {
    color: #4C8DFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #6BA3FF;
    transform: translateX(2px);
}

.response-time {
    font-size: 14px;
    color: #9AA0A6;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(76, 141, 255, 0.08);
    border-left: 3px solid #4C8DFF;
    border-radius: 4px;
}

.contact-hint {
    font-size: 13px;
    color: #5F6368;
    line-height: 1.6;
    font-style: italic;
}

/* Zone 5: Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #5F6368;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-strip-text h3 {
        font-size: 24px;
    }

    .cta-strip-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-footer-primary,
    .btn-footer-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        padding: 60px 24px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-brand {
        grid-column: 1;
    }
}

/* Focus On Section */
#focus-on {
    background: #FFFFFF;
    padding: 80px 24px;
}

.focus-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.focus-region {
    text-align: center;
    font-size: 15px;
    color: #5F6368;
    margin: 0;
}

.focus-tag {
    background: #FFFFFF;
    color: #202124;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #DADCE0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.focus-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #1A73E8;
    color: #1A73E8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    #hero {
        padding: 0 20px;
    }

    .floating-shape {
        filter: blur(60px);
    }

    .shape-1 { width: 250px; height: 250px; }
    .shape-2 { width: 220px; height: 220px; }
    .shape-3 { width: 200px; height: 200px; }
    .shape-4 { width: 180px; height: 180px; }

    .scroll-indicator {
        display: none;
    }

    section h2 {
        font-size: 38px;
    }

    .section-intro {
        font-size: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
