/* SCALOREX - Main Stylesheet */

/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    --primary-color: #00CED1;
    --primary-dark: #00A8AA;
    --secondary-color: #1B3B6F;
    --secondary-dark: #132A4F;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-color);
}

/* ========================================
   UTILITIES
   ======================================== */

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

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

.text-left {
    text-align: left;
}

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

.text-success {
    color: var(--success);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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

.btn-nav {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: #ffffff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    justify-content: center;
}

.hero-trust .trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.badge i {
    color: var(--primary-color);
}

.hero-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Fade animations */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Hero Slider - Fade Effect */
.hero-slider-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-slider {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #f5f5f5;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    opacity: 0;
}

.hero-slide.active {
    animation: fadeIn 0.4s ease-in forwards;
    z-index: 10;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    border-radius: 8px;
    padding: 0.875rem 2rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider {
        aspect-ratio: 16 / 9;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-slider {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .hero-cta {
        flex-direction: column;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat h3 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--secondary-color);
}

.stat p {
    margin: 0;
    color: var(--text-light);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f2847 100%);
    padding: 1.75rem 0;
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

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

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0;
}

.counter {
    display: inline-block;
}

/* Stats - Tablet */
@media (max-width: 768px) {
    .stats-section {
        padding: 1.25rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .stat-icon {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-number h3 {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

/* Stats - Mobile */
@media (max-width: 480px) {
    .stats-section {
        padding: 0.75rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 0.25rem;
    }

    .stat-icon {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }
}

/* ========================================
   PARTNER CHANNELS MARQUEE
   ======================================== */

.partner-channels-section {
    padding: 2.5rem 0 2rem;
    background: var(--bg-light);
    overflow: hidden;
}

.partner-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.partner-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin: 0;
}

.partner-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* 4 items × (80px avatar + ~120px text width + 3rem gap ≈ 200px + 48px gap) = ~992px per set */
        transform: translateX(calc(-248px * 4));
    }
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.channel-item:hover {
    transform: translateY(-4px);
}

.channel-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
        linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-item:hover .channel-avatar {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
}

.channel-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}

.channel-subs {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 206, 209, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Partner Channels - Tablet */
@media (max-width: 768px) {
    .partner-channels-section {
        padding: 1.75rem 0 1.25rem;
    }

    .partner-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .partner-header {
        margin-bottom: 1rem;
    }

    .marquee-track {
        gap: 2rem;
        animation-duration: 20s;
    }

    .channel-item {
        min-width: 130px;
        padding: 0.75rem 1rem;
        gap: 0.35rem;
    }

    .channel-avatar {
        width: 64px;
        height: 64px;
    }

    .channel-name {
        font-size: 0.75rem;
    }

    .channel-subs {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 40px;
    }

    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-198px * 4));
        }
    }
}

/* Partner Channels - Mobile */
@media (max-width: 480px) {
    .partner-channels-section {
        padding: 1.25rem 0 1rem;
    }

    .partner-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .partner-header {
        margin-bottom: 0.75rem;
    }

    .marquee-track {
        gap: 1.25rem;
        animation-duration: 16s;
    }

    .channel-item {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }

    .channel-avatar {
        width: 52px;
        height: 52px;
        border-width: 2px;
    }

    .channel-name {
        font-size: 0.65rem;
    }

    .channel-subs {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 25px;
    }

    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 4));
        }
    }
}

/* ========================================
   GROWTH SLIDER SECTION
   ======================================== */

.growth-slider-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 60px;
    /* Space for arrows */
    position: relative;
}

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}


.growth-slide {
    flex: 0 0 100%;
    /* Take full width of container */
    scroll-snap-align: center;
    display: flex;
    gap: 20px;
    box-sizing: border-box;
    /* Optional: round the group or style the group like the screenshot */
    background: #0B1B3D;
    /* Match screenshot dark blue */
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.growth-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 9;
    background: var(--bg-white);
}

.growth-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.growth-slide:hover .growth-image-wrapper img {
    transform: scale(1.02);
}

/* Slider Arrow Controls */
.slider-container {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--secondary-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .slider-container {
        padding: 20px 50px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .growth-slider-section {
        padding: 60px 0;
    }

    .slider-container {
        padding: 15px 40px;
    }

    .slider-track {
        gap: 20px;
    }

    .growth-slide {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .growth-slider-section {
        padding: 50px 0;
    }

    .slider-container {
        padding: 10px 20px;
    }

    .slider-track {
        gap: 15px;
    }

    .growth-slide {
        padding: 10px;
        gap: 10px;
        border-radius: 12px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 0px;
    }

    .slider-next {
        right: 0px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

/* Growth Slider Pagination Dots */
.growth-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0 5px;
}

.growth-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.growth-dot.active {
    width: 32px;
    border-radius: 20px;
    background: var(--primary-color);
}

.growth-dot:hover:not(.active) {
    background: #a0aec0;
    transform: scale(1.15);
}

@media (max-width: 480px) {
    .growth-slider-dots {
        gap: 8px;
        padding: 15px 0 5px;
    }

    .growth-dot {
        width: 10px;
        height: 10px;
    }

    .growth-dot.active {
        width: 26px;
    }
}

/* ========================================
   THUMBNAIL SLIDER SECTION
   ======================================== */

.thumbnail-slider-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.thumbnail-slider-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: 0;
    position: relative;
}

.thumbnail-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: thumbnailScroll 50s linear infinite;
}

.thumbnail-slider-container:hover .thumbnail-slider-track {
    animation-play-state: paused;
}

.thumbnail-card {
    width: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 4px solid var(--bg-white);
    background: #f0f0f0;
    flex-shrink: 0;
}

.thumbnail-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.thumbnail-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.thumbnail-card:hover img {
    transform: scale(1.1);
}

@keyframes thumbnailScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-615px * 4 - 120px));
    }
}

/* Thumbnail Slider - Tablet */
@media (max-width: 1024px) {
    .thumbnail-card {
        width: 510px;
    }

    @keyframes thumbnailScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-485px * 4 - 120px));
        }
    }
}

@media (max-width: 768px) {
    .thumbnail-slider-section {
        padding: 60px 0;
    }

    .thumbnail-slider-container {
        padding: 15px 0;
    }

    .thumbnail-slider-track {
        gap: 20px;
        animation: thumbnailScroll 40s linear infinite;
    }

    .thumbnail-card {
        width: 400px;
    }

    @keyframes thumbnailScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-384px * 4 - 80px));
        }
    }
}

@media (max-width: 480px) {
    .thumbnail-slider-section {
        padding: 50px 0;
    }

    .thumbnail-slider-container {
        padding: 10px 0;
    }

    .thumbnail-slider-track {
        gap: 15px;
        animation: thumbnailScroll 35s linear infinite;
    }

    .thumbnail-card {
        width: 290px;
        border-radius: 12px;
        border: 2px solid var(--bg-white);
    }

    @keyframes thumbnailScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-275px * 4 - 60px));
        }
    }
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Professional section badge & header */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(0, 206, 209, 0.05));
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 206, 209, 0.2);
}

.section-badge i {
    font-size: 0.8rem;
}

.growth-section-header {
    margin-bottom: 3rem;
}

.growth-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.growth-section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .growth-section-header h2 {
        font-size: 1.85rem;
    }

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

    .section-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
}

@media (max-width: 480px) {
    .growth-section-header h2 {
        font-size: 1.5rem;
    }

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

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 2.25rem;
    color: var(--danger);
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.problem-impact {
    margin-top: 1.25rem;
}

.impact-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.impact-badge.danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

/* Problem Section - Tablet */
@media (max-width: 768px) {
    .problem-section {
        padding: 3.5rem 0;
    }

    .problem-grid {
        gap: 1rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .problem-card p {
        font-size: 0.85rem;
    }

    .impact-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }
}

/* Problem Section - Mobile (2x2 grid) */
@media (max-width: 480px) {
    .problem-section {
        padding: 2.5rem 0;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .problem-card {
        padding: 1rem;
        border-radius: 10px;
    }

    .problem-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .problem-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .problem-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .problem-impact {
        margin-top: 0.75rem;
    }

    .impact-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ========================================
   SERVICES
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: var(--success);
    margin-top: 0.25rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.step-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-duration {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* How It Works - Tablet */
@media (max-width: 768px) {
    .how-it-works {
        padding: 3.5rem 0;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step:not(:last-child)::after {
        left: 30px;
        top: 60px;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .step-duration {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* How It Works - Mobile */
@media (max-width: 480px) {
    .how-it-works {
        padding: 2.5rem 0;
    }

    .process-timeline {
        max-width: 100%;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1.25rem;
        width: 100%;
    }

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

    .step-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .step-duration {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        margin-top: 0.75rem;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: none;
}

.testimonial-card.active-group {
    display: block;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.result strong {
    color: var(--success);
    font-size: 1.25rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Testimonials - Mobile: single card slider */
@media (max-width: 768px) {
    .testimonials-slider {
        display: block;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.85;
}

.cta-note i {
    margin-right: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 1.5rem;
    margin-left: -35px;
    margin-right: 0;
    transition: var(--transition);
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0.85;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

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

/* ========================================
   PORTFOLIO PAGE
   ======================================== */

/* Portfolio Stats */
.portfolio-stats {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f2847 100%);
    padding: 3rem 0;
    color: var(--text-white);
}

.portfolio-stats .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.portfolio-stats .stat-item {
    padding: 1.5rem 1rem;
    position: relative;
}

.portfolio-stats .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--text-white);
}

.portfolio-stats .stat-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Case Studies Section */
.case-studies {
    background: var(--bg-light);
    padding: 5rem 0;
}

.case-study {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.case-study:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #0f2847);
    color: var(--text-white);
    flex-wrap: wrap;
    gap: 1rem;
}

.case-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    color: var(--text-white);
}

.case-niche {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 400;
}

.case-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.case-badge.success {
    background: rgba(0, 206, 209, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(0, 206, 209, 0.4);
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: start;
}

.case-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-section h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
}

.case-section h4 i {
    font-size: 1rem;
    color: var(--primary-color);
}

.case-section>p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* Problem & Solution Lists */
.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--danger);
}

.problem-list li::before {
    content: '✕';
    color: var(--danger);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.6rem 0.75rem;
    background: rgba(0, 206, 209, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.solution-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Results Metrics */
.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.metric {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.metric:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.metric-value .growth {
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-left: 0.25rem;
}

/* Case Study Testimonial Box */
.case-visual {
    display: flex;
    align-items: center;
}

.testimonial-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-box .stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-box p {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.testimonial-box .author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-box .author strong {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.testimonial-box .author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Thumbnail Gallery Section */
.thumbnail-gallery {
    padding: 5rem 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    text-align: center;
}

.comparison-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.comparison-slider:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.before-side,
.after-side {
    position: relative;
    padding: 0;
}

.before-side .label,
.after-side .label {
    position: absolute;
    top: 0.75rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    z-index: 2;
}

.before-side .label {
    left: 0.75rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.after-side .label {
    right: 0.75rem;
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.thumbnail-mockup {
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.thumbnail-mockup.generic {
    background: linear-gradient(135deg, #f1f3f5 0%, #dee2e6 100%);
}

.thumbnail-mockup.professional {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f2847 100%);
}

.mockup-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.mockup-content i {
    font-size: 2rem;
}

.thumbnail-mockup.generic .mockup-content i {
    color: #adb5bd;
}

.thumbnail-mockup.professional .mockup-content i {
    color: var(--primary-color);
}

.mockup-content p {
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}

.thumbnail-mockup.generic .mockup-content p {
    color: #868e96;
}

.thumbnail-mockup.professional .mockup-content p {
    color: rgba(255, 255, 255, 0.85);
}

.ctr-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ctr-badge.bad {
    background: rgba(220, 53, 69, 0.12);
    color: var(--danger);
}

.ctr-badge.good {
    background: rgba(0, 206, 209, 0.2);
    color: var(--primary-color);
}

.gallery-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.gallery-description strong {
    color: var(--secondary-color);
}

/* Results Summary Section */
.results-summary {
    background: var(--bg-light);
    padding: 5rem 0;
}

.summary-content {
    text-align: center;
}

.summary-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.summary-content .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.summary-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.summary-stat {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.summary-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Page - Tablet Responsive */
@media (max-width: 1024px) {
    .case-content {
        grid-template-columns: 1fr;
    }

    .case-visual {
        justify-content: center;
    }

    .testimonial-box {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .portfolio-stats .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .portfolio-stats .stat-item:not(:last-child)::after {
        display: none;
    }

    .portfolio-stats .stat-item h3 {
        font-size: 2rem;
    }

    .case-header {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .case-title h3 {
        font-size: 1.25rem;
    }

    .case-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .portfolio-stats .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .portfolio-stats .stat-item h3 {
        font-size: 1.5rem;
    }

    .portfolio-stats .stat-item p {
        font-size: 0.7rem;
    }

    .case-header {
        padding: 1.25rem;
    }

    .case-title h3 {
        font-size: 1.1rem;
    }

    .case-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .case-content {
        padding: 1.25rem;
    }

    .case-section h4 {
        font-size: 1rem;
    }

    .results-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .metric {
        padding: 0.75rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    .metric-value {
        font-size: 0.9rem;
    }

    .thumbnail-mockup {
        min-height: 150px;
        padding: 1.5rem 1rem;
    }

    .summary-stat {
        font-size: 2.25rem;
    }

    .summary-card {
        padding: 1.75rem 1.25rem;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 5rem 0;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }



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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

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

    .nav-links {
        flex-direction: column;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .problem-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}