:root {
    --primary-blue: #1A73E8;
    --primary-blue-dark: #0F5CC8;
    --accent-yellow: #F9AB00;
    --bg: #F5F7FB;
    --text: #1C1E21;
    --text-light: #5F6368;
    --white: #FFFFFF;
    --border: #E0E4EA;
    --shadow: 0 15px 40px rgba(15, 92, 200, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Estedad', 'Vazirmatn', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
}

/* Mobile phone icon - hidden on desktop */
.mobile-phone-icon {
    display: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    order: -1;
}

.brand img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 0;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-blue);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--primary-blue);
}

.site-nav {
    flex: 1;
    margin-right: 1rem;
    display: flex;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.header-contact {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
}

.header-contact a {
    color: inherit;
}

.nav-item > a {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
}

.nav-item > a:hover,
.nav-item > a:focus {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-blue-dark);
}

.has-dropdown {
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
}

.dropdown-label {
    padding-right: 0;
}

.dropdown-toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(26,115,232,0.25);
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-toggle:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 25px rgba(15,92,200,0.2);
}

.google-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    animation: googlePulse 2.5s infinite;
}

@keyframes googlePulse {
    0% { filter: drop-shadow(0 0 0 rgba(66,133,244,0)); }
    50% { filter: drop-shadow(0 0 6px rgba(66,133,244,0.35)); }
    100% { filter: drop-shadow(0 0 0 rgba(66,133,244,0)); }
}

.dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.75rem;
    list-style: none;
    min-width: 180px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    color: var(--text-light);
}

.dropdown li a:hover {
    background: rgba(26,115,232,0.1);
    color: var(--primary-blue-dark);
}

.dropdown li a[href="video.html"]:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

/* Sticky Buttons */
.sticky-action {
    position: fixed;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: var(--shadow);
    z-index: 900;
}

.sticky-phone {
    right: 1rem;
    background: var(--primary-blue);
}

.sticky-whatsapp {
    left: 1rem;
    background: #25D366;
}

/* Hero */
.hero {
    padding: 4rem 0 0.5rem;
    background: linear-gradient(135deg, #EAF2FF, #FFFFFF);
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}


.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-centered {
    text-align: center;
    align-items: center;
}

.hero-centered .lead {
    text-align: center;
}

.hero-centered .hero-actions {
    justify-content: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.lead {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat-card {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 1.2rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat-card strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-blue-dark);
}

.hero-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(26,115,232,0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

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

.btn.primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(15, 92, 200, 0.2);
}

.btn.ghost {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid rgba(26,115,232,0.4);
}

.btn.ghost:hover {
    background: rgba(26,115,232,0.1);
    transform: translateY(-4px);
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-weight: 600;
}

.hero-meta strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
}

.hero-visual img {
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 90%;
    max-width: 90%;
    height: auto;
    background: transparent;
}

/* Sections */
section {
    padding: 4rem 0;
    position: relative;
}

/* Reduce top padding for why section after divider */
.why {
    padding-top: 2rem;
}

/* ============================================
   Simple Section Dividers - Clean & Elegant
   ============================================ */

/* Simple line divider for all sections */
section:not(:first-child):not(.hero):not(.search-hero):not(.banner-hero):not(.video-hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(26, 115, 232, 0.15) 30%,
        rgba(26, 115, 232, 0.3) 50%,
        rgba(26, 115, 232, 0.15) 70%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
    transform: translateY(-1px);
}

/* Subtle glow effect on hover */
section:not(:first-child):not(.hero):not(.search-hero):not(.banner-hero):not(.video-hero)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-1px);
    width: 0;
    height: 1px;
    background: rgba(26, 115, 232, 0.4);
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.3);
    transition: width 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

section:not(:first-child):not(.hero):not(.search-hero):not(.banner-hero):not(.video-hero):hover::after {
    width: 60%;
}

/* Creative Section Dividers - Manual dividers */
.section-divider {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin: -0.5rem 0 0 0;
    padding: 0;
    background: transparent;
    z-index: 1;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Wave Divider Style 1 - Smooth Wave */
.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.divider-wave path {
    fill: var(--white);
    transition: transform 0.3s ease;
}

.section-divider:hover .divider-wave path {
    transform: translateY(-5px);
}

/* Wave Divider Style 2 - Animated Gradient Wave */
.divider-wave-gradient {
    background: linear-gradient(135deg, #E8F0FE 0%, #F0F5FF 50%, #FFFFFF 100%);
}

.divider-wave-gradient svg path {
    fill: url(#waveGradient);
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        d: path('M0,50 Q300,10 600,50 T1200,50 L1200,100 L0,100 Z');
    }
    50% {
        d: path('M0,50 Q300,30 600,50 T1200,50 L1200,100 L0,100 Z');
    }
}

/* Curved Divider */
.divider-curved {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8F0FE 100%);
}

/* Diagonal Divider */
.divider-diagonal {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* Zigzag Divider */
.divider-zigzag {
    background: var(--white);
    position: relative;
}

.divider-zigzag::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        linear-gradient(135deg, transparent 25%, var(--primary-blue-light) 25%, var(--primary-blue-light) 50%, transparent 50%, transparent 75%, var(--primary-blue-light) 75%);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Dots Pattern Divider */
.divider-dots {
    background: var(--white);
    position: relative;
}

.divider-dots::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: 
        radial-gradient(circle, var(--primary-blue-light) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
}

/* Animated Gradient Line */
.divider-gradient-line {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-blue) 20%, 
        var(--primary-blue-light) 50%, 
        var(--primary-blue) 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.divider-gradient-line::before,
.divider-gradient-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-blue);
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.5);
}

.divider-gradient-line::before {
    left: 20%;
    animation: pulse 2s ease-in-out infinite;
}

.divider-gradient-line::after {
    right: 20%;
    animation: pulse 2s ease-in-out infinite 1s;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Modern Geometric Divider */
.divider-geometric {
    height: 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.divider-geometric::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 48%, var(--primary-blue-light) 49%, var(--primary-blue-light) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, var(--primary-blue) 49%, var(--primary-blue) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.15;
    animation: geometricMove 20s linear infinite;
}

@keyframes geometricMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, -60px -60px;
    }
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-center {
    text-align: center;
}

.section-lead.center {
    text-align: center;
}

.feature-grid,
.services-grid,
.benefits-grid,
.testimonial-grid,
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
}

.services-grid {
    text-align: center;
}

.section-center {
    text-align: center;
}

.section-lead.center {
    text-align: center;
}

.services-grid {
    text-align: center;
}

.feature-grid article,
.services-grid article,
.services-grid .service-card-link,
.benefits-grid article,
.pricing-grid article,
.testimonial-grid article,
.stat-card,
.chart-card,
.contact-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-grid .service-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    height: 100%;
}

.services-grid .service-card-link article {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}

.feature-grid article:hover,
.services-grid article:hover,
.services-grid .service-card-link:hover,
.benefits-grid article:hover,
.pricing-grid article:hover,
.testimonial-grid article:hover,
.stat-card:hover,
.chart-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px rgba(15, 92, 200, 0.12);
}

.services-grid .service-card-link:hover article {
    transform: none;
    box-shadow: none;
}

.services-grid #service-video.service-card-link:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 25px 40px rgba(255, 0, 0, 0.15);
}

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

.benefits-grid {
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.benefits-grid article {
    min-height: 190px;
}

.section-lead {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.mini-form-section {
    background: var(--white);
}

.mini-form-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.mini-form label,
.contact-card label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--text);
}

.mini-form input,
.contact-card input,
.contact-card textarea {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-family: inherit;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.compact-card {
    width: min(640px, 100%);
}

.btn.full-width {
    width: 100%;
}

.contact-chart {
    background: linear-gradient(135deg, #FDFDFC, #F0F5FF);
}

.contact-chart-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
}

.chart-card,
.contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    width: min(640px, 100%);
}

.chart-switch {
    display: inline-flex;
    background: var(--bg);
    border-radius: 999px;
    padding: 0.3rem;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.chart-toggle {
    border: none;
    background: transparent;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chart-toggle.active {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(26,115,232,0.15);
}

.chart-legend {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-light);
}

.chart-legend .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 0.25rem;
}

.dot.blue { background: var(--primary-blue); }
.dot.yellow { background: var(--accent-yellow); }

fieldset {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    margin: 1rem 0;
}

.radio {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    gap: 0.4rem;
}

.services-grid article .service-link,
.services-grid .service-card-link .service-link {
    display: inline-flex;
    margin-top: auto;
    color: var(--primary-blue);
    font-weight: 600;
    align-self: center;
    padding-top: 1rem;
}

.stats {
    background: var(--white);
}

.stats-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.stat-card {
    text-align: center;
    font-weight: 600;
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-blue-dark);
}

.testimonials {
    background: linear-gradient(135deg, #FFFFFF, #EEF4FF);
}

.testimonial-grid span {
    display: block;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.pricing-grid article ul {
    list-style: none;
    margin: 1rem 0;
    color: var(--text-light);
}

.pricing-grid .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Plan badge (محبوب‌ترین) - بالای باکس مثل برچسب، روی متن نمی‌افتد */
.pricing-card-popular {
    position: relative;
    overflow: visible;
}
.plan-badge {
    position: absolute;
    top: -11px;
    right: 12px;
    background: linear-gradient(135deg, #c62828 0%, #e65100 50%, #ff8f00 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(198, 40, 40, 0.45), 0 1px 0 rgba(255,255,255,0.2) inset;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
    z-index: 2;
}

.pricing-grid.pricing-wide {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

/* صفحه اصلی: باکس‌های تعرفه کشیده‌تر (عمودی) */
.pricing-grid.pricing-wide article {
    padding: 2.25rem 1.5rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-grid.pricing-wide article h3 {
    margin-bottom: 0.75rem;
}

.pricing-grid.pricing-wide article .price {
    margin-bottom: 0.25rem;
}

.pricing-grid.pricing-wide article p {
    margin-bottom: 0.5rem;
}

/* دکمه تماس با ما در تعرفه‌ها کمی کوچک‌تر */
.pricing-grid.pricing-wide .btn.primary {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
}

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

.cta-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.cta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.cta-center h2 {
    margin-bottom: 0;
}

.cta-center p {
    margin: 0;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.cta-actions .btn {
    min-width: 200px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-actions .btn.primary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.cta-actions .btn.primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-actions .btn.ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-actions .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-container,
.cta-actions {
    justify-content: center;
    text-align: center;
}

.btn.glow {
    position: relative;
    overflow: hidden;
}

.btn.glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn.glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(255,255,255,0.4), 0 0 40px rgba(255,255,255,0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn.glow:hover::after,
.btn.glow:hover::before {
    opacity: 1;
}

.cta .btn.ghost {
    border-color: var(--white);
    color: var(--white);
}

.about {
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.site-footer {
    background: #0F172A;
    color: #E8ECF7;
    padding: 3rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.site-footer a {
    color: #E8ECF7;
}

.site-footer ul {
    list-style: none;
    margin-top: 0.75rem;
}

.site-footer ul li {
    margin-bottom: 0.4rem;
}

.footer-copy {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #BFC5D6;
}

/* ============================================
   Mobile Menu - Fresh Design
   ============================================ */

/* Hide mobile menu and overlay in desktop by default */
.mobile-menu,
.mobile-menu *,
.menu-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Desktop: Explicitly hide mobile menu */
@media (min-width: 961px) {
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: fixed !important;
        left: -9999px !important;
        top: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        z-index: -1 !important;
    }
    
    .mobile-menu * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }
    
    .menu-overlay.active {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 960px) {
    /* Show mobile menu in mobile */
    .mobile-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: fixed !important;
        left: auto !important;
        top: 0 !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        overflow: visible !important;
    }
    
    .mobile-menu * {
        display: revert !important;
        visibility: revert !important;
        opacity: revert !important;
        pointer-events: revert !important;
    }
    
    .menu-overlay {
        display: block !important;
        visibility: visible !important;
    }
    
    .menu-overlay.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Hide desktop menu */
    .site-nav {
        display: none !important;
    }

    /* Show hamburger button - Always visible and on top */
    .nav-toggle {
        display: flex !important;
        order: 1;
        margin-right: 0;
        z-index: 1003 !important;
        position: relative !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        background: var(--white) !important;
        border-radius: 8px !important;
        padding: 0.5rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        flex-shrink: 0;
    }
    
    .nav-toggle.active {
        z-index: 1003 !important;
        position: relative !important;
    }

    /* Hide header contact in mobile */
    .header-contact {
        display: none;
    }

    /* Mobile header layout: menu (right) | logo (center) | phone (left) */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        gap: 0.75rem;
    }
    
    /* Hide desktop navigation on mobile */
    .site-nav {
        display: none !important;
    }
    
    /* Menu button - right side (RTL) */
    .nav-toggle {
        display: flex !important;
        order: 1;
        flex-shrink: 0;
    }
    
    /* Logo - center */
    .brand {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    /* Phone icon - left side (RTL) */
    .mobile-phone-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--white);
        border: 2px solid var(--text);
        border-radius: 8px;
        color: var(--text);
        font-size: 1.5rem;
        text-decoration: none;
        order: 3;
        flex-shrink: 0;
    }

    .mobile-phone-icon span {
        display: block;
        line-height: 1;
    }

    .brand img {
        height: 45px;
        max-width: 150px;
    }

    /* Hide top visual on youtube-ads page - mobile only */
    .video-hero-image,
    .video-hero-image img,
    .youtube-icon-wrapper,
    .youtube-icon-wrapper svg {
        display: none !important;
    }

    /* Hide top visual on app-ads page - mobile only */
    .app-icon-wrapper,
    .app-icon-wrapper svg,
    .app-ad-display {
        display: none !important;
    }

    /* Mobile Menu Container - Standard Simple Implementation */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
    }

    .mobile-menu-header .brand {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-blue);
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #333;
        padding: 0;
        margin: 0;
        min-width: 40px;
    }

    .mobile-menu-close:hover {
        background: #f0f0f0;
    }

    /* Mobile Menu Content - Simple Scrollable */
    .mobile-menu-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 2rem 1rem;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
    }

    .mobile-menu-item {
        display: block;
        margin: 0 0 1.75rem 0;
        padding: 0;
    }

    .mobile-menu-item:last-child {
        margin-bottom: 0;
    }

    .mobile-menu-link {
        display: block;
        padding: 1.75rem 1.5rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        border: none;
        transition: background 0.2s ease;
        min-height: 70px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        margin: 0;
        border-radius: 0;
        background: transparent;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: #f5f5f5;
        color: var(--primary-blue);
    }

    /* Mobile Dropdown */
    .mobile-dropdown {
        background: rgba(26, 115, 232, 0.05);
        padding: 0;
        margin: 0;
        list-style: none;
        display: block;
    }

    .mobile-dropdown-item {
        width: 100%;
    }

    .mobile-dropdown-link {
        display: block;
        padding: 0.875rem 1.5rem 0.875rem 2.5rem;
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s ease, color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .mobile-dropdown-link:hover,
    .mobile-dropdown-link:active {
        background: rgba(26, 115, 232, 0.15);
        color: var(--primary-blue);
    }

    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
    }
}

/* Banner Page Styles */
.banner-hero {
    background: linear-gradient(135deg, #E8F0FE 0%, #F0F5FF 30%, #F8FAFC 60%, #FFFFFF 100%);
    padding: 4rem 0;
}

.banner-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-hero-content {
    text-align: center;
}

.banner-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1A73E8 0%, #0F5CC8 50%, #1A73E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.banner-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

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

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.banner-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.hero-features li {
    padding: 0.75rem 0;
    padding-right: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.hero-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.banner-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-hero-image img {
    width: 85%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.banner-hero-image img:hover {
    transform: scale(1.05);
}

.display-demand {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F0F5FF 100%);
    padding: 4rem 0;
}

.display-demand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.display-box,
.demand-box {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.display-box:hover,
.demand-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 92, 200, 0.15);
}

.display-box h3,
.demand-box h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.display-box ul,
.demand-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.display-box ul li,
.demand-box ul li {
    padding: 0.75rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text);
}

.display-box ul li::before,
.demand-box ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
    line-height: 0.8;
}

.box-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.why-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F0F5FF 100%);
    padding: 4rem 0;
}

.why-banner-content {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.why-banner-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text);
    margin: 1rem 0;
}

.why-choose-us {
    background: linear-gradient(135deg, #FDFDFC 0%, #F8FAFC 50%, #FFFFFF 100%);
    padding: 4rem 0;
}

.why-choose-mega-card {
    margin-top: 3rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(15, 92, 200, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.1);
    position: relative;
    overflow: hidden;
}

.why-choose-mega-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(15, 92, 200, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(15, 92, 200, 0.2);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.why-item:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(26, 115, 232, 0.3));
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.banner-pricing {
    background: linear-gradient(135deg, #FDFDFC 0%, #F8FAFC 30%, #F0F5FF 70%, #E8F0FE 100%);
    padding: 4rem 0;
}

.banner-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.banner-pricing-grid .pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.banner-pricing-grid .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 92, 200, 0.2);
}

.banner-pricing-grid .pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.banner-pricing-grid .pricing-card .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.banner-pricing-grid .pricing-card .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
}

.banner-pricing-grid .pricing-card.pricing-card-popular {
    overflow: visible;
}

.banner-faq {
    background: linear-gradient(135deg, #F0F5FF 0%, #F8FAFC 50%, #FFFFFF 100%);
    padding: 4rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 30px rgba(15, 92, 200, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.banner-cta {
    background: linear-gradient(135deg, #1A73E8 0%, #0F5CC8 50%, #1A73E8 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.banner-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-form-section {
    background: linear-gradient(135deg, #E8F0FE 0%, #F0F5FF 50%, #FFFFFF 100%);
    padding: 4rem 0;
}

.contact-form-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-section .contact-card {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* Button Animations */
.animated-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.animated-btn:hover::before {
    width: 300px;
    height: 300px;
}

.animated-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(15, 92, 200, 0.3);
}

@media (max-width: 992px) {
    .banner-hero .container {
        grid-template-columns: 1fr;
    }

    .banner-hero-content {
        order: -1;
    }

    .banner-hero-content h1 {
        font-size: 2rem;
    }

    .banner-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-choose-mega-card {
        padding: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .banner-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive adjustments for section dividers */
@media (max-width: 640px) {
    section:not(:first-child):not(.hero):not(.search-hero):not(.banner-hero):not(.video-hero)::after {
        width: 50%;
    }

    .banner-hero {
        padding: 2rem 0;
    }

    .banner-hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-features li {
        font-size: 1rem;
    }

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

    .banner-cta {
        padding: 3rem 0;
    }

    .banner-cta h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .banner-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-actions {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-actions .btn {
        flex: 1 1 auto;
        min-width: 200px;
        max-width: 300px;
    }

    .why-choose-mega-card {
        padding: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-icon {
        font-size: 2.5rem;
    }

    .why-content h3 {
        font-size: 1.1rem;
    }

    .why-content p {
        font-size: 0.9rem;
    }

    .display-demand,
    .why-banner,
    .why-choose-us,
    .banner-pricing,
    .banner-faq,
    .banner-cta,
    .contact-form-section {
        padding: 2rem 0 !important;
    }
    
    /* Banner Page - Reduced spacing for all grids in mobile */
    .banner-pricing-grid {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .banner-pricing-grid .pricing-card {
        padding: 1.5rem 1rem !important;
    }
    
    .display-demand-grid,
    .why-choose-grid {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .display-demand-card,
    .why-choose-search-card {
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 640px) {
    .hero-meta {
        flex-direction: column;
    }

    .sticky-action {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    /* Home Page - Reduced spacing for all grids in mobile */
    .pricing,
    .benefits,
    .services,
    .why,
    .testimonials,
    .stats {
        padding: 2rem 0 !important;
    }
    
    .pricing-grid,
    .benefits-grid,
    .services-grid,
    .feature-grid,
    .testimonial-grid {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .pricing-grid article,
    .benefits-grid article,
    .services-grid article,
    .services-grid .service-card-link article,
    .feature-grid article,
    .testimonial-grid article {
        padding: 1.5rem 1rem !important;
    }
    
    .stat-cards {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .stat-card {
        padding: 1.5rem 1rem !important;
    }
}

/* ============================================
   Search Network Page Styles
   ============================================ */

/* Hero Section */
.search-hero {
    background: linear-gradient(135deg, #1A73E8 0%, #0F5CC8 30%, #1A73E8 60%, #0F5CC8 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.search-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.search-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.search-hero-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.search-hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-hero-actions .btn {
    min-width: 220px;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-hero-actions .btn.primary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.search-hero-actions .btn.primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.search-hero-actions .btn.ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.search-hero-actions .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.search-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.search-hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.search-hero-image img:hover {
    transform: scale(1.05);
}

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

/* Key Message Section */
.search-key-message {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8F0FE 50%, #F0F5FF 100%);
    padding: 4rem 0;
    position: relative;
}

.key-message-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.key-message-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.key-message-results {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.result-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(15, 92, 200, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 92, 200, 0.2);
}

/* PPC Benefits Section */
.search-benefits {
    background: var(--white);
    padding: 5rem 0;
}

.ppc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.ppc-benefit-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 16px 16px 12px 12px;
    padding: 1.75rem 1.25rem;
    border: 2px solid rgba(26, 115, 232, 0.15);
    border-top: 6px solid var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.ppc-benefit-card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -3px 10px rgba(26, 115, 232, 0.25);
    z-index: 1;
}

.ppc-benefit-card::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15), 0 3px 8px rgba(26, 115, 232, 0.3);
    z-index: 2;
}


.ppc-benefit-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(15, 92, 200, 0.25);
    border-color: rgba(26, 115, 232, 0.3);
    border-top-color: var(--primary-blue-dark);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
}

.ppc-benefit-card:hover::before {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    box-shadow: 0 -4px 15px rgba(26, 115, 232, 0.35);
    width: 55px;
    height: 14px;
}

.ppc-benefit-card:hover::after {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.2), 0 4px 12px rgba(26, 115, 232, 0.4);
    transform: translateX(-50%) scale(1.2);
    width: 18px;
    height: 18px;
}


.ppc-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-top: 0;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.ppc-benefit-card:hover h3 {
    color: var(--primary-blue);
}

.ppc-benefit-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    transition: color 0.3s ease;
    margin: 0;
    flex-grow: 1;
}

/* Why Choose Us Section */
.search-why-choose {
    background: linear-gradient(135deg, #E8F0FE 0%, #F0F5FF 50%, #FFFFFF 100%);
    padding: 5rem 0;
}

.why-choose-search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.why-choose-search-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 16px 16px 12px 12px;
    padding: 1.75rem 1.25rem;
    border: 2px solid rgba(26, 115, 232, 0.15);
    border-top: 6px solid var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.why-choose-search-card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -3px 10px rgba(26, 115, 232, 0.25);
    z-index: 1;
}

.why-choose-search-card::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15), 0 3px 8px rgba(26, 115, 232, 0.3);
    z-index: 2;
}

.why-choose-search-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(15, 92, 200, 0.25);
    border-color: rgba(26, 115, 232, 0.3);
    border-top-color: var(--primary-blue-dark);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
}

.why-choose-search-card:hover::before {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    box-shadow: 0 -4px 15px rgba(26, 115, 232, 0.35);
    width: 55px;
    height: 14px;
}

.why-choose-search-card:hover::after {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.2), 0 4px 12px rgba(26, 115, 232, 0.4);
    transform: translateX(-50%) scale(1.2);
    width: 18px;
    height: 18px;
}

.why-choose-search-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-top: 0;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.why-choose-search-card:hover h3 {
    color: var(--primary-blue);
}

.why-choose-search-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    transition: color 0.3s ease;
    margin: 0;
    flex-grow: 1;
}

/* Process Section */
.search-process {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8F0FE 50%, #F0F5FF 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.search-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 92, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.search-process .process-steps {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
    width: 100% !important;
}

.search-process .process-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem 1.25rem !important;
    background: var(--white) !important;
    border: 2px solid #000000 !important;
    border-radius: 8px !important;
    position: relative !important;
}

.search-process .step-number {
    width: 40px !important;
    height: 40px !important;
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
}

.search-process .step-content h3 {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Pricing Section */
.search-pricing {
    background: linear-gradient(135deg, #E8F0FE 0%, #F0F5FF 50%, #FFFFFF 100%);
    padding: 5rem 0;
}

.search-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.search-pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.search-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 92, 200, 0.2);
    border-color: var(--primary-blue);
}

.search-pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}
.search-pricing-card .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.search-pricing-card .btn {
    width: 100%;
    margin-top: auto;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.search-pricing-card.pricing-card-popular {
    overflow: visible;
}

/* Final CTA Section */
.search-cta {
    background: linear-gradient(135deg, #1A73E8 0%, #0F5CC8 50%, #1A73E8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.search-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.search-cta .cta-center {
    position: relative;
    z-index: 1;
}

.search-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.search-cta .btn {
    min-width: 280px;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Styles for Search Page */
@media (max-width: 992px) {
    .search-hero .container {
        grid-template-columns: 1fr;
    }

    .search-hero-content {
        order: -1;
    }

    .search-hero-title {
        font-size: 2.2rem;
    }

    .search-hero-lead {
        font-size: 1.1rem;
    }

    .ppc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .search-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .search-process .process-steps {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 640px) {
    .search-hero {
        padding: 4rem 0 3rem;
    }

    .search-hero-title {
        font-size: 1.8rem;
    }

    .search-hero-lead {
        font-size: 1rem;
    }

    .search-hero-actions {
        flex-direction: column;
    }

    .search-hero-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .key-message-text {
        font-size: 1.1rem;
    }

    .key-message-results {
        flex-direction: column;
        gap: 1rem;
    }

    .result-item {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

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

    .why-choose-search-grid {
        grid-template-columns: 1fr;
    }


    /* Search Page - Reduced spacing for all grids in mobile */
    .search-benefits,
    .search-process,
    .search-pricing {
        padding: 2rem 0 !important;
    }
    
    .ppc-benefits-grid,
    .why-choose-search-grid {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .ppc-benefit-card,
    .why-choose-search-card {
        padding: 1.5rem 1rem !important;
    }

    .search-process .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    .search-process .process-step {
        padding: 1.25rem 1rem !important;
    }

    .search-process .step-number {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .search-process .step-content h3 {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .search-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .search-pricing-grid .pricing-card {
        padding: 1.5rem 1rem !important;
    }

    .search-cta h2 {
        font-size: 1.8rem;
    }

    .search-cta .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================
   Video Ads Page Styles
   ============================================ */

/* Video Hero Section */
.video-hero {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 30%, #FF0000 60%, #CC0000 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.youtube-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.youtube-icon-wrapper svg {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.youtube-icon-wrapper svg:hover {
    transform: scale(1.1);
}

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

.video-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.video-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.video-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.video-hero-actions .btn {
    min-width: 200px;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-hero-actions .btn.primary {
    background: var(--white);
    color: #FF0000;
    border: 2px solid var(--white);
}

.video-hero-actions .btn.primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-hero-actions .btn.ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.video-hero-actions .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.video-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.youtube-ads-preview {
    width: 100%;
    max-width: 600px;
}

.video-placeholder {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
}

/* What is Video Ads Section */
.video-what-is {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F0F5FF 100%);
    padding: 4rem 0;
}

.video-what-is-content {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.video-what-is-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Video Pricing Section */
.video-pricing {
    background: var(--white);
    padding: 4rem 0;
}

.video-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-pricing-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(15, 92, 200, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-pricing-card.pricing-card-popular {
    overflow: visible;
}

.video-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #CC0000, #FF0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.video-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

.video-pricing-card:hover::before {
    transform: scaleX(1);
}

.video-pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.video-pricing-card .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3.2rem;
}

.video-pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.video-pricing-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 50%, #FF4444 100%);
    color: var(--white);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.video-pricing-btn:hover {
    background: linear-gradient(135deg, #FF5252 0%, #FF4444 50%, #FF3333 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

.video-pricing-btn svg {
    flex-shrink: 0;
}

/* Video Benefits Section */
.video-benefits {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F5FF 100%);
    padding: 4rem 0;
}

.video-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.video-benefits-grid .video-benefit-card {
    flex: 0 0 calc(20% - 1.2rem);
    min-width: 220px;
    max-width: 280px;
}

/* Responsive: On smaller screens, show fewer cards per row */
@media (max-width: 1400px) {
    .video-benefits-grid .video-benefit-card {
        flex: 0 0 calc(25% - 1.2rem);
        min-width: 200px;
    }
}

@media (max-width: 1200px) {
    .video-benefits-grid .video-benefit-card {
        flex: 0 0 calc(33.333% - 1.2rem);
        min-width: 220px;
    }
}

.video-benefit-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(15, 92, 200, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.6);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.video-benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg) translateY(-5px);
    filter: drop-shadow(0 4px 12px rgba(255, 68, 68, 0.3));
}

.video-benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.video-benefit-card:hover h3 {
    color: #FF4444;
}

.video-benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Video Why Choose Section */
.video-why-choose {
    background: var(--white);
    padding: 4rem 0;
}

.video-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.video-why-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(15, 92, 200, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-why-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF0000, #CC0000);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.video-why-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.12);
}

.video-why-item:hover::before {
    transform: scaleY(1);
}

.video-why-item .why-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.video-why-item:hover .why-icon {
    transform: scale(1.2) rotate(-5deg);
}

.video-why-item .why-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.6;
}

/* Video Process Section */
.video-process {
    background: linear-gradient(135deg, #F0F5FF 0%, #FFFFFF 50%, #F8FAFC 100%);
    padding: 4rem 0;
}

.video-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

/* Process flow connector lines */
.video-process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 0, 0, 0.2) 0%, 
        rgba(255, 0, 0, 0.3) 25%,
        rgba(255, 0, 0, 0.3) 75%,
        rgba(255, 0, 0, 0.2) 100%);
    z-index: 0;
    border-radius: 2px;
}

.video-process-step {
    position: relative;
    z-index: 1;
}

.video-process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(15, 92, 200, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #CC0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.video-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

.video-process-step:hover::after {
    transform: scaleX(1);
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(255, 82, 82, 0.9));
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.25);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.video-process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.95), rgba(255, 68, 68, 0.95));
}

/* Process step animation on load */
@keyframes processFlow {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-process-step:nth-child(1) {
    animation: processFlow 0.5s ease-out 0.1s both;
}

.video-process-step:nth-child(2) {
    animation: processFlow 0.5s ease-out 0.2s both;
}

.video-process-step:nth-child(3) {
    animation: processFlow 0.5s ease-out 0.3s both;
}

.video-process-step:nth-child(4) {
    animation: processFlow 0.5s ease-out 0.4s both;
}

.video-process-step:nth-child(5) {
    animation: processFlow 0.5s ease-out 0.5s both;
}

.video-process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.6;
}

/* Video FAQ Section */
.video-faq {
    background: var(--white);
    padding: 4rem 0;
}

.video-faq-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(15, 92, 200, 0.08);
    transition: all 0.3s ease;
}

.video-faq-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.video-faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.video-faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.video-faq-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.video-faq-item ul li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.video-faq-item ul li::before {
    content: '▶';
    position: absolute;
    right: 0;
    color: #FF0000;
    font-size: 0.8rem;
}

/* Video CTA Section */
.video-cta {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 50%, #FF0000 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.video-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-cta .cta-center {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.video-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.video-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.video-cta .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-cta .btn {
    min-width: 220px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.video-cta .btn.primary {
    background: var(--white);
    color: #FF0000;
    border: 2px solid var(--white);
}

.video-cta .btn.primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-cta .btn.ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.video-cta .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Styles for Video Page */
@media (max-width: 1024px) {
    .video-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-process-grid::before {
        display: none;
    }

    .video-benefits-grid .video-benefit-card {
        flex: 0 0 calc(33.333% - 1.2rem);
        min-width: 220px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .video-hero .container {
        grid-template-columns: 1fr;
    }

    .video-hero-image {
        order: -1;
    }

    .video-hero-content h1 {
        font-size: 2rem;
    }

    .video-hero-subtitle {
        font-size: 1.1rem;
    }

    .video-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-why-choose-grid {
        grid-template-columns: 1fr;
    }

    .video-benefits-grid .video-benefit-card {
        flex: 0 0 calc(50% - 1.2rem);
        min-width: 220px;
        max-width: 100%;
    }

    .video-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-cta h2 {
        font-size: 1.8rem;
    }

    .video-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    /* Video Process Section - Mobile: Stack vertically with reduced spacing */
    .video-process {
        padding: 2rem 0;
    }
    
    .video-process-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .video-process-grid::before {
        display: none !important;
    }
    
    .video-process-step {
        padding: 1.25rem 1rem !important;
        margin-bottom: 0 !important;
    }
    
    .process-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin: 0 auto 0.75rem !important;
    }
    
    .video-process-step h3 {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    
    .video-hero {
        padding: 3rem 0;
    }

    .video-hero-content h1 {
        font-size: 1.6rem;
    }

    /* Video Pricing Section - Mobile: Reduced spacing */
    .video-pricing {
        padding: 2rem 0 !important;
    }
    
    .video-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .video-pricing-card {
        padding: 1.5rem 1rem !important;
    }

    /* Video Benefits Section - Mobile: Reduced spacing */
    .video-benefits {
        padding: 2rem 0 !important;
    }
    
    .video-benefits-grid {
        flex-wrap: wrap !important;
        justify-content: center !important;
        overflow-x: visible !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }

    .video-benefits-grid .video-benefit-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
    }

    /* Video Why Choose Section - Mobile: Reduced spacing */
    .video-why-choose {
        padding: 2rem 0 !important;
    }
    
    .video-why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .video-why-item {
        padding: 1.5rem 1rem !important;
    }

    /* Video FAQ Section - Mobile: Reduced spacing */
    .video-faq {
        padding: 2rem 0 !important;
    }
    
    .video-faq-list {
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .video-faq-item {
        padding: 1.5rem 1rem !important;
    }

    .video-cta {
        padding: 3rem 0;
    }

    .video-cta h2 {
        font-size: 1.5rem;
    }

    .video-cta .btn {
        width: 100%;
        min-width: auto;
    }
}

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

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1A73E8 0%, #0F5CC8 30%, #1A73E8 60%, #0F5CC8 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 4rem 0 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: rotatePattern 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

/* About Introduction Section */
.about-intro {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F0F5FF 100%);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(26, 115, 232, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(249, 171, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.about-intro .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
}

.about-intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    font-weight: 700;
    max-width: 100%;
    text-align: center;
    position: relative;
}

.about-intro-text::before {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-yellow));
    border-radius: 2px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .about-intro-text::before {
        display: none;
    }
}

/* Values Section */
.about-values {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 171, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-values .container {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 18px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 6px 25px rgba(15, 92, 200, 0.08);
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(15, 92, 200, 0.15);
    border-color: rgba(26, 115, 232, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Expertise Section */
.about-expertise {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F5FF 100%);
    position: relative;
}

.about-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(26, 115, 232, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-expertise .container {
    position: relative;
    z-index: 1;
}

.expertise-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.75rem 2.25rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 18px rgba(15, 92, 200, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.expertise-item:hover::before {
    transform: scaleY(1);
}

.expertise-item:hover {
    transform: translateX(-8px) translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 92, 200, 0.12);
    border-color: rgba(26, 115, 232, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
}

.expertise-icon {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: bold;
    min-width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    transition: transform 0.4s ease;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-item span:last-child {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.6;
}

/* Process Section */
.about-process {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.about-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(26, 115, 232, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(249, 171, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.about-process .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-step {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 25px rgba(15, 92, 200, 0.08);
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(15, 92, 200, 0.15);
    border-color: rgba(26, 115, 232, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 100%);
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.process-step:hover .process-number {
    transform: scale(1.08);
}

.process-step:hover .process-number::after {
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--primary-blue) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 2px,
            rgba(255, 255, 255, 0.05) 4px
        );
    animation: rotatePattern 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

.about-cta-content .btn {
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-cta-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-cta-content .btn:hover::before {
    left: 100%;
}

.about-cta-content .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }

    .about-intro {
        padding: 4rem 0;
    }

    .about-intro-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-intro-text::before {
        display: none;
    }

    .about-intro {
        padding: 3.5rem 0;
    }

    .about-values,
    .about-expertise,
    .about-process {
        padding: 3.5rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .expertise-list {
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .expertise-item {
        padding: 1.5rem 1.75rem;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .expertise-item:hover {
        transform: translateY(-8px);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .process-step {
        padding: 2rem 1.75rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .about-cta {
        padding: 4rem 0;
    }

    .about-cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-cta-content .btn {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
    }
}

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

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1A73E8 0%, #0F5CC8 30%, #1A73E8 60%, #0F5CC8 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: rotatePattern 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

.contact-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: 0 0 1rem 0;
    font-weight: 600;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Contact Info Section */
.contact-info-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F0F5FF 100%);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(26, 115, 232, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(249, 171, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-info-section .container {
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(15, 92, 200, 0.1);
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(15, 92, 200, 0.15);
    border-color: rgba(26, 115, 232, 0.25);
}

.contact-info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 171, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-form-section .container {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 92, 200, 0.12);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 15px 50px rgba(15, 92, 200, 0.18);
}

.contact-form-card h2 {
    font-size: 2rem;
    color: var(--primary-blue-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-card label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-card label span {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.contact-form-card input {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: var(--bg);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
    background: var(--white);
}

.contact-form-card .btn {
    margin-top: 0.5rem;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 2.5rem 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   App Campaigns Page Styles
   ============================================ */

/* App Hero Section */
.app-hero {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 30%, #FBBC04 60%, #EA4335 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.app-hero-content {
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.app-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.app-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.app-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.app-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.app-hero-actions .btn {
    min-width: 200px;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.app-hero-actions .btn.primary {
    background: var(--white);
    color: #4285F4;
    border: 2px solid var(--white);
}

.app-hero-actions .btn.primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.app-hero-actions .btn.ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.app-hero-actions .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* App Ad Display Section */
.app-ad-display {
    padding: 4rem 0;
    background: var(--white);
}

.app-ad-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-ad-preview {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.app-icon-small {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.app-ad-content {
    text-align: center;
}

.app-ad-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.app-ad-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.install-btn {
    background: #4285F4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-btn:hover {
    background: #357ae8;
    transform: scale(1.05);
}

/* App What Is Section */
.app-what-is {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.app-what-is-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.app-what-is-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.app-what-is-content p.center {
    text-align: center;
}

/* App Benefits Section */
.app-benefits {
    padding: 4rem 0;
    background: var(--white);
}

.app-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.app-benefit-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.app-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.3);
}

.app-benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.app-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

/* App Why Choose Section */
.app-why-choose {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F0F5FF 0%, #FFFFFF 100%);
}

.app-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.app-why-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.app-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.15);
}

.app-why-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.app-why-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.app-why-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* App Process Section */
.app-process {
    padding: 4rem 0;
    background: var(--white);
}

.app-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.app-process-step {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.app-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.15);
}

.app-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.app-process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.app-process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* App Pricing Section */
.app-pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.app-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.app-pricing-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-pricing-card.pricing-card-popular {
    overflow: visible;
}

.app-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC04, #EA4335);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.app-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.3);
}

.app-pricing-card:hover::before {
    transform: scaleX(1);
}

.app-pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.app-pricing-card .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.app-pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* App CTA Section */
.app-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    text-align: center;
    color: var(--white);
}

.app-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.app-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.app-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-cta-actions .btn {
    min-width: 200px;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.app-cta-actions .btn.primary {
    background: var(--white);
    color: #4285F4;
}

.app-cta-actions .btn.ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Form Messages - Inline Success/Error */
.form-message {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #81C784;
}

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

/* Success Button State */
.btn.primary.success {
    background: #4CAF50;
    color: var(--white);
    border-color: #4CAF50;
    cursor: default;
}

.btn.primary.success:hover {
    background: #4CAF50;
    transform: none;
    box-shadow: var(--shadow);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* App FAQ Section */
.app-faq {
    padding: 4rem 0;
    background: var(--white);
}

.app-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.app-faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.08);
    transition: all 0.3s ease;
}

.app-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.15);
}

.app-faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.app-faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

/* Responsive Styles for App Page */
@media (max-width: 1200px) {
    .app-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-why-grid,
    .app-process-steps,
    .app-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .app-hero-content h1 {
        font-size: 2rem;
    }

    .app-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .app-why-grid,
    .app-process-steps,
    .app-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .app-hero {
        padding: 3rem 0;
    }

    .app-hero-content h1 {
        font-size: 1.6rem;
    }

    .app-benefits,
    .app-why-choose,
    .app-process,
    .app-pricing,
    .app-faq {
        padding: 2rem 0;
    }

    .app-benefits-grid,
    .app-why-grid,
    .app-process-steps,
    .app-pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .app-benefit-card,
    .app-why-item,
    .app-process-step,
    .app-pricing-card {
        padding: 1.5rem 1rem;
    }

    .app-faq-list {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .app-faq-item {
        padding: 1.5rem 1rem;
    }

    .app-cta {
        padding: 3rem 0;
    }

    .app-cta h2 {
        font-size: 1.5rem;
    }

    .app-cta-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ───────────────────────────────────────────────────────────────────────
   Mobile: hide content / hero / banner images (keep header logo + icons).
   Targets every content image (all live under /assets/images/) plus their
   visual wrapper containers so no empty layout gap is left behind.
   The header logo (.brand img → /logo-rectangle.png) and inline icons
   (.google-icon) are NOT under /assets/images/, so they stay visible.
   ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-visual,
    .about-intro-image,
    .search-hero-image,
    .banner-hero-image,
    .video-hero-image,
    .app-ad-visual,
    img[src*="/assets/images/"] {
        display: none !important;
    }
}
