/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #1a2951;
    --white: #ffffff;
    --text-dark: #333;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navbar styles extracted from your stylesheet (scope: header + nav + dropdown + mobile) */

/* MAIN HEADER */
.main-header {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EEEEEE;
}

/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

/* LOGO */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: auto;
}

.header-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: #113768;
    border-radius: 16px;
    border: 2px solid rgba(17, 55, 104, 0.15);
    box-shadow: 0 4px 16px rgba(21, 57, 106, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.header-logo .logo-icon:hover {
    transform: scale(1.05);
}

.header-logo .h-letter {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.header-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: #113768;
}

.header-logo .company-main {
    font-size: 1rem;
    font-weight: 700;
    color: #113768;
    letter-spacing: 0.5px;
}

.header-logo .company-sub {
    font-size: 0.7rem;
    color: #7C7C7C;
    letter-spacing: 0.5px;
}

/* NAVIGATION */
.header-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-left .nav-link,
.header-nav-right .nav-link {
    color: #222222;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav-left .nav-link:hover,
.header-nav-right .nav-link:hover {
    color: #3A68B8;
}

.header-nav-left .nav-link.active,
.header-nav-right .nav-link.active {
    color: #3A68B8;
}

.header-nav-left .nav-link.active::after,
.header-nav-right .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3A68B8;
}

/* CTA BUTTON */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A68B8;
    border-radius: 999px;
    color: #3A68B8;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #3A68B8;
    color: #FFFFFF;
}

/* MOBILE MENU TOGGLE */
.header-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 40px;
}

.header-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-menu.active span:nth-child(2) {
    opacity: 0;
}

.header-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #EEEEEE;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: #F7F7F7;
    color: #3A68B8;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 50%, #fff 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    color: #1a2951;
    padding: 0;
    max-width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a2951;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #0066cc, #ff9800);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-top: 32px;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.character-3d {
    position: relative;
    width: 300px;
    height: 450px;
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.character-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: bounce3d 3s ease-in-out infinite;
}

@keyframes bounce3d {
    0%, 100% {
        transform: translateY(0) translateZ(0);
    }
    50% {
        transform: translateY(-30px) translateZ(20px);
    }
}

/* Professional Marketing Illustration - Korean Minimalist Style */
.marketing-illustration-3d {
    position: relative;
    width: 500px;
    height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.dashboard-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float-dashboard 8s ease-in-out infinite;
}

@keyframes float-dashboard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Analytics Dashboard */
.analytics-dashboard {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) translateZ(40px);
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(100, 100, 100, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 20px;
    animation: card-float 6s ease-in-out infinite;
    border: 1px solid rgba(230, 235, 240, 0.8);
}

@keyframes card-float {
    0%, 100% { transform: translateX(-50%) translateZ(40px) translateY(0); }
    50% { transform: translateX(-50%) translateZ(40px) translateY(-8px); }
}

.dashboard-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 210, 225, 0.2);
}

.header-title {
    font-size: 11px;
    font-weight: 600;
    color: #6b7b8f;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.metric-box {
    flex: 1;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid rgba(200, 210, 225, 0.3);
}

.metric-label {
    font-size: 9px;
    color: #8a9aaf;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.metric-number {
    font-size: 18px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 4px;
}

.metric-change {
    font-size: 10px;
    font-weight: 600;
}

.metric-change.positive {
    color: #7ea89f;
}

.metric-change.positive::before {
    content: '↑ ';
}

.traffic-graph {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.4) 0%, rgba(250, 251, 252, 0.2) 100%);
    border-radius: 10px;
    padding: 8px;
}

.traffic-chart {
    width: 100%;
    height: 100%;
}

/* SEO Performance Card */
.seo-chart-card {
    position: absolute;
    top: 250px;
    left: 20px;
    width: 200px;
    height: 180px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(100, 110, 130, 0.1);
    animation: card-slide 7s ease-in-out infinite;
    transform: translateZ(30px);
    border: 1px solid rgba(220, 228, 235, 0.6);
}

@keyframes card-slide {
    0%, 100% { transform: translateZ(30px) translateX(0); }
    50% { transform: translateZ(30px) translateX(5px); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 210, 225, 0.2);
}

.card-title {
    color: #6b7b8f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: #7ea89f;
}

.card-status i {
    font-size: 6px;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.seo-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.seo-metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-icon {
    font-size: 20px;
}

.metric-info {
    flex: 1;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: #4a5568;
    line-height: 1.2;
}

.metric-text {
    font-size: 9px;
    color: #8a9aaf;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranking-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-label {
    font-size: 9px;
    color: #6b7b8f;
    width: 38px;
    flex-shrink: 0;
}

.rank-progress {
    flex: 1;
    height: 6px;
    background: rgba(200, 210, 225, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.rank-fill {
    height: 100%;
    background: linear-gradient(90deg, #b4c5dc 0%, #8a9fc4 100%);
    border-radius: 3px;
    animation: fill-progress 2s ease-in-out;
}

@keyframes fill-progress {
    from { width: 0%; }
}

.rank-percent {
    font-size: 10px;
    font-weight: 600;
    color: #6b7b8f;
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

/* Digital Channels Panel */
.channels-panel {
    position: absolute;
    top: 70px;
    right: 30px;
    width: 160px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(100, 110, 130, 0.08);
    animation: panel-float 8s ease-in-out infinite;
    transform: translateZ(25px);
    border: 1px solid rgba(230, 235, 240, 0.8);
}

@keyframes panel-float {
    0%, 100% { transform: translateZ(25px) translateY(0); }
    50% { transform: translateZ(25px) translateY(-5px); }
}

.panel-title {
    font-size: 10px;
    font-weight: 600;
    color: #6b7b8f;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.channel-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #edf0f5 100%);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    color: #8a9fc4;
    box-shadow: 0 2px 8px rgba(100, 110, 130, 0.06);
    transition: transform 0.3s ease;
}

.channel-box:hover {
    transform: translateY(-2px);
}

.channel-box span {
    font-size: 9px;
    font-weight: 600;
    color: #6b7b8f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* KPI Badges */
.kpi-badge {
    position: absolute;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(100, 110, 130, 0.1);
    animation: kpi-float 6s ease-in-out infinite;
    transform: translateZ(20px);
    border: 1px solid rgba(230, 235, 240, 0.8);
    min-width: 110px;
}

.kpi-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #b4c5dc 0%, #a8b8d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.kpi-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kpi-value {
    font-weight: 700;
    color: #4a5568;
    font-size: 16px;
    line-height: 1;
}

.kpi-label {
    font-size: 9px;
    color: #8a9aaf;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-1 {
    top: 340px;
    right: 40px;
    animation-delay: 0s;
}

.kpi-2 {
    bottom: 110px;
    left: 50px;
    animation-delay: 1s;
}

.kpi-3 {
    bottom: 70px;
    right: 90px;
    animation-delay: 2s;
}

@keyframes kpi-float {
    0%, 100% { transform: translateZ(20px) translateY(0); }
    50% { transform: translateZ(20px) translateY(-6px); }
}



/* Background Gradient Circles */
.illustration-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-gradient-circle {
    position: absolute;
    border-radius: 50%;
    animation: gradient-pulse 10s ease-in-out infinite;
}

.circle-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 210, 225, 0.06) 0%, transparent 70%);
    animation-delay: 0s;
}

.circle-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 195, 220, 0.04) 0%, transparent 70%);
    animation-delay: 3s;
}

@keyframes gradient-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

/* Remove old decorative elements */
.hero-illustration::before,
.hero-illustration::after {
    display: none;
}

.cartoon-character {
    display: none;
}

/* Breadcrumb */
.breadcrumb {
    background: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb .container {
    display: flex;
    gap: 10px;
    color: #666;
}

.breadcrumb .current {
    color: #1a237e;
    font-weight: 600;
}

.separator {
    color: #999;
}

/* Introduction Section */
.intro-section {
    padding: 60px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

/* Exhibition Section */
.exhibition-section {
    padding: 80px 0;
    background: #fafafa;
}

.exhibition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exhibition-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.exhibition-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exhibition-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s, color 0.3s;
}

.read-more:hover {
    gap: 15px;
    color: #0052a3;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0 40px;
    text-align: center;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    padding: 40px 0 80px;
    background: white;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-auto-rows: minmax(200px, auto);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-card:first-child {
    grid-row: span 3;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:first-child img {
    height: 100%;
    min-height: 600px;
}

.service-icon {
    padding: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #c62828;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-content h4 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.service-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Services Table Section */
.services-table-section {
    padding: 80px 0;
    background: white;
}

.service-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: transparent;
}

.service-box {
    border: 2px solid #1a237e;
    padding: 45px 40px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-box:hover {
    background: #f8f9fa;
    border-color: #0066cc;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e5e7eb;
}

.service-header i {
    font-size: 32px;
    color: #0066cc;
    min-width: 40px;
    transition: transform 0.3s ease;
}

.service-box:hover .service-header i {
    transform: scale(1.1);
}

.service-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 16px;
    color: #555;
    line-height: 2.2;
    padding-left: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-box:hover .service-list li {
    color: #333;
}

/* Contact CTA */
.contact-cta {
    background: #f5f5f5;
    padding: 40px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text h3 {
    font-size: 24px;
    color: #1a237e;
    font-weight: 700;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-circle {
    width: 60px;
    height: 60px;
    background: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    font-size: 12px;
    color: #666;
}

.contact-info .phone {
    font-size: 18px;
    font-weight: 700;
    color: #1a237e;
}

.contact-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #0052a3;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    text-align: center;
}

.newsletter-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-label {
    display: inline-block;
    color: #ff9800;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.newsletter-section h2 {
    font-size: 32px;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 640px;
    width: 100%;
    gap: 12px;
}

.newsletter-form input,
.newsletter-form button {
    height: 52px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #ff9800;
}

.newsletter-form button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #f57c00;
}



/* Quick Service Highlights Section */
.quick-services-section {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
}

.quick-services-section::before {
    display: none;
}

.quick-services-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2951;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header .section-title::after {
    display: none;
}

.section-header .section-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    margin-top: 10px;
}

.services-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1150px;
    margin: 0 auto;
}

.service-highlight-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-highlight-card::before {
    display: none;
}

.service-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
    border-color: #0066cc;
    background: #ffffff;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #0066cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.icon-wrapper::before {
    display: none;
}

.service-highlight-card:hover .icon-wrapper {
    transform: scale(1.05);
    background: #ff9800;
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.3);
}

.icon-wrapper i {
    font-size: 32px;
    color: white;
}

.service-highlight-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a2951;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-highlight-card:hover h3 {
    color: #0066cc;
}

.service-highlight-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-highlight-card:hover p {
    color: #555;
}

/* Main Service Grid Section */
.main-service-grid-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.main-service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.premium-service-card {
    background: white;
    padding: 55px 45px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.08);
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(255, 152, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-service-card:hover::before {
    opacity: 1;
}

.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.service-card-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.25);
}

.service-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0066cc, #ff9800);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.premium-service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.35);
}

.premium-service-card:hover .service-card-icon::after {
    opacity: 0.3;
}

.service-card-icon i {
    font-size: 42px;
    color: white;
    transition: transform 0.4s ease;
}

.premium-service-card:hover .service-card-icon i {
    transform: scale(1.15);
}

.service-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a2951;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.premium-service-card:hover .service-card-title {
    color: #0066cc;
}

.service-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.premium-service-card:hover .service-card-description {
    color: #555;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.4s ease;
}

.learn-more-link:hover::after,
.premium-service-card:hover .learn-more-link::after {
    width: 100%;
}

.learn-more-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.learn-more-link:hover i,
.premium-service-card:hover .learn-more-link i {
    transform: translateX(8px);
}

.premium-service-card:hover .learn-more-link {
    color: #0052a3;
    gap: 15px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-us-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.why-image-column {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 30px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-badge i {
    font-size: 28px;
    color: #0066cc;
}

.trust-badge span {
    font-size: 16px;
    font-weight: 700;
    color: #1a2951;
}

.why-content-column {
    padding-left: 20px;
}

.section-label {
    display: inline-block;
    color: #0066cc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: #ff9800;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a2951;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

.why-reasons-list {
    margin-bottom: 40px;
}

.reason-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.reason-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.25);
}

.reason-item:hover .reason-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.35);
}

.reason-icon i {
    font-size: 28px;
    color: white;
}

.reason-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2951;
    margin-bottom: 8px;
    line-height: 1.3;
}

.reason-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.why-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.primary-cta-btn {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
    gap: 18px;
}

.primary-cta-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.primary-cta-btn:hover i {
    transform: translateX(5px);
}

.secondary-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.secondary-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.secondary-link:hover::after {
    width: 100%;
}

.secondary-link:hover {
    color: #0052a3;
    padding-left: 5px;
}

/* Results & Success Stories Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2951 0%, #0d1a35 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.results-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.results-label {
    display: inline-block;
    color: #ff9800;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.results-title {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.results-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #ff9800);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 102, 204, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-content {
    position: relative;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1;
    display: inline-block;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #ff9800;
}

.stat-plus,
.stat-percent {
    font-size: 36px;
    font-weight: 800;
    color: #ff9800;
    display: inline-block;
    margin-left: 5px;
}

.stat-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 15px 0 8px;
    line-height: 1.3;
}

.stat-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.stat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-badge {
    opacity: 1;
}

.stat-badge i {
    font-size: 18px;
    color: #4caf50;
}

.results-cta {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.results-cta .cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.results-cta .cta-button {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.results-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.5);
    gap: 18px;
}

.results-cta .cta-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.results-cta .cta-button:hover i {
    transform: translateX(5px);
}


/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 991px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0;
        min-height: auto;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-illustration {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }

    .marketing-illustration-3d {
        width: 100%;
        height: 100%;
    }

    .analytics-dashboard {
        width: 280px;
        height: 160px;
        top: 50px;
        left: 10px;
        padding: 14px;
    }

    .seo-chart-card {
        width: 180px;
        height: 160px;
        top: 230px;
        left: 10px;
        padding: 14px;
    }

    .channels-panel {
        width: 150px;
        top: 50px;
        right: 10px;
        padding: 14px;
    }

    .kpi-badge {
        padding: 10px 14px;
        min-width: 100px;
    }

    .kpi-1 {
        top: 260px;
        right: 20px;
    }

    .kpi-2 {
        bottom: 100px;
        left: 30px;
    }

    .kpi-3 {
        bottom: 60px;
        right: 60px;
    }

    /* Services Grid - 2 Columns */
    .services-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Typography */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Spacing */
    .quick-services-section,
    .main-service-grid-section,
    .why-choose-us-section,
    .results-section {
        padding: 60px 0;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 576px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Hero Section - Stack to 1 Column */
    .hero-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Hide complex illustration elements */
    .hero-illustration {
        height: 180px;
        margin-top: 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .marketing-illustration-3d {
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .dashboard-container,
    .analytics-dashboard,
    .seo-chart-card,
    .channels-panel,
    .kpi-badge,
    .kpi-1,
    .kpi-2,
    .kpi-3,
    .illustration-background,
    .bg-gradient-circle {
        display: none !important;
    }

    /* Intro Section */
    .intro-section {
        padding: 35px 0;
    }

    .intro-section-container {
        padding: 0 20px;
    }

    .intro-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Quick Services Section */
    .quick-services-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .quick-services-section-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .section-header .section-title {
        font-size: 1.5rem;
    }

    .section-header .section-subtitle {
        font-size: 0.85rem;
    }

    .services-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .service-highlight-card {
        padding: 20px 12px;
        min-width: 0;
        width: 100%;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }

    .service-highlight-card h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .service-highlight-card p {
        font-size: 0.75rem;
    }

    /* Main Services Grid */
    .main-service-grid-section {
        padding: 40px 0;
    }

    .main-service-grid-container {
        padding: 0 20px;
    }

    .main-services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .premium-service-card {
        padding: 22px 18px;
    }

    .service-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .service-card-icon i {
        font-size: 26px;
    }

    .service-card-title {
        font-size: 1rem;
    }

    .service-card-description {
        font-size: 0.85rem;
    }

    /* Why Choose Us */
    .why-choose-us-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .why-choose-us-container {
        padding: 0 20px;
    }

    .why-choose-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .why-image-column {
        width: 100%;
    }

    .image-wrapper {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
    }

    .why-content-column {
        width: 100%;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .why-title {
        font-size: 1.4rem;
    }

    .why-intro {
        font-size: 0.85rem;
    }

    .why-reasons-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .reason-item {
        padding: 15px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .reason-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .reason-icon i {
        font-size: 18px;
    }

    .reason-content h3 {
        font-size: 0.9rem;
    }

    .reason-content p {
        font-size: 0.8rem;
    }

    .why-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .primary-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* Results Section */
    .results-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .results-section-container {
        padding: 0 20px;
    }

    .results-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .results-label {
        font-size: 0.7rem;
    }

    .results-title {
        font-size: 1.4rem;
    }

    .results-subtitle {
        font-size: 0.85rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 22px 18px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 22px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.4rem;
    }

    .stat-title {
        font-size: 0.95rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .results-cta {
        text-align: center;
        margin-top: 25px;
    }

    .results-cta .cta-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .results-cta .cta-button {
        width: 100%;
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    /* Contact CTA */
    .contact-cta {
        padding: 35px 20px;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-text h3 {
        font-size: 1.2rem;
    }

    .contact-info .phone {
        font-size: 1.2rem;
    }

    .contact-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-section h2 {
        font-size: 1.3rem;
    }

    .newsletter-section p {
        font-size: 0.85rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px;
    }
}




/* Tablet Portrait & Small Laptops (max-width: 768px) */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Hero Section - Stack vertically */
    .hero-section {
        min-height: auto;
        padding: 40px 0;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title::after {
        width: 80px;
        height: 4px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 16px;
        margin-top: 24px;
    }

    /* Illustration - Responsive sizing */
    .hero-illustration {
        width: 100%;
        max-width: 100%;
        height: 350px;
        overflow: hidden;
    }

    .marketing-illustration-3d {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .dashboard-container {
        transform: scale(0.7);
        transform-origin: center center;
    }

    .analytics-dashboard,
    .seo-chart-card,
    .channels-panel {
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .kpi-badge {
        display: none;
    }

    .character-3d-enhanced {
        width: 280px;
        height: 380px;
    }

    .char-head {
        width: 90px;
        height: 90px;
    }

    .char-body {
        width: 120px;
        height: 140px;
    }

    .icon-badge {
        font-size: 32px;
    }

    /* Intro Section */
    .intro-section {
        padding: 40px 0;
    }

    .intro-section-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .intro-content {
        max-width: 100%;
    }

    .intro-content p {
        font-size: 15px;
    }

    /* Quick Services Section */
    .quick-services-section {
        padding: 50px 0;
        overflow: hidden;
    }

    .quick-services-section-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .section-header {
        text-align: center;
    }

    .section-header .section-title {
        font-size: 26px;
    }

    .section-header .section-subtitle {
        font-size: 14px;
    }

    .services-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        overflow: visible;
        overflow-x: visible;
        padding: 0;
        margin: 0;
    }

    .service-highlight-card {
        padding: 25px 15px;
        min-width: 0;
        width: 100%;
    }

    .icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }

    .service-highlight-card h3 {
        font-size: 14px;
    }

    .service-highlight-card p {
        font-size: 12px;
    }

    /* Main Service Grid Section */
    .main-service-grid-section {
        padding: 50px 0;
    }

    .main-service-grid-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .main-services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .premium-service-card {
        padding: 25px 18px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .service-card-icon i {
        font-size: 28px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-description {
        font-size: 13px;
    }

    /* Why Choose Us Section */
    .why-choose-us-section {
        padding: 50px 0;
        overflow: hidden;
    }

    .why-choose-us-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .why-choose-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .why-image-column {
        width: 100%;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
    }

    .why-content-column {
        width: 100%;
    }

    .why-title {
        font-size: 28px;
    }

    .why-intro {
        font-size: 15px;
    }

    .reason-item {
        flex-direction: row;
        gap: 15px;
    }

    .reason-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .reason-icon i {
        font-size: 22px;
    }

    .reason-content h3 {
        font-size: 15px;
    }

    .reason-content p {
        font-size: 13px;
    }

    .why-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Results Section */
    .results-section {
        padding: 50px 0;
        overflow: hidden;
    }

    .results-section-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .results-header {
        text-align: center;
    }

    .results-title {
        font-size: 28px;
    }

    .results-subtitle {
        font-size: 14px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-plus,
    .stat-percent {
        font-size: 28px;
    }

    .stat-title {
        font-size: 16px;
    }

    .stat-description {
        font-size: 13px;
    }

    .results-cta {
        text-align: center;
    }
}
    
/* Mobile Landscape (max-width: 640px) */
/* Mobile Landscape (max-width: 640px) */
@media (max-width: 640px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 18px;
        max-width: 100%;
    }

    /* Hero Section */
    .hero-section {
        padding: 35px 0;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 18px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    /* Hide complex illustration on mobile - show simple version */
    .hero-illustration {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .marketing-illustration-3d {
        width: 100%;
        max-width: 200px;
        height: 200px;
    }

    .dashboard-container,
    .analytics-dashboard,
    .seo-chart-card,
    .channels-panel,
    .kpi-badge,
    .illustration-background {
        display: none !important;
    }

    .character-3d-enhanced {
        width: 240px;
        height: 320px;
    }

    .floating-elements {
        display: none;
    }

    /* Quick Services */
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .services-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-highlight-card {
        padding: 20px 12px;
    }

    .service-highlight-card h3 {
        font-size: 13px;
    }

    .service-highlight-card p {
        font-size: 11px;
    }

    /* Main Services */
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .premium-service-card {
        padding: 25px 18px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-description {
        font-size: 13px;
    }

    /* Why Choose Us */
    .why-choose-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-intro {
        font-size: 14px;
    }

    .reason-item {
        padding: 15px;
    }

    .reason-content h3 {
        font-size: 14px;
    }

    .reason-content p {
        font-size: 12px;
    }

    /* Results Section */
    .results-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 18px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-title {
        font-size: 15px;
    }

    .cta-banner-title {
        font-size: 24px;
    }

    .cta-banner-subtitle {
        font-size: 14px;
    }

    .cta-banner-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 0;
        min-height: auto;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 14px;
        margin-top: 18px;
    }

    /* Illustration - Scale down for mobile */
    .hero-illustration {
        width: 100%;
        height: 150px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .marketing-illustration-3d {
        width: 100%;
        max-width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .dashboard-container,
    .analytics-dashboard,
    .seo-chart-card,
    .channels-panel,
    .kpi-badge,
    .kpi-1,
    .kpi-2,
    .kpi-3,
    .illustration-background,
    .bg-gradient-circle {
        display: none !important;
    }

    .character-3d-enhanced {
        width: 200px;
        height: 280px;
    }

    .char-head {
        width: 70px;
        height: 70px;
        top: 15px;
    }

    .char-neck {
        width: 35px;
        height: 25px;
        top: 115px;
    }

    .char-body {
        width: 90px;
        height: 100px;
        top: 135px;
    }

    .char-arm {
        width: 35px;
        top: 150px;
    }

    .upper-arm,
    .lower-arm {
        height: 40px;
    }

    .char-hand {
        width: 30px;
        height: 30px;
    }

    .char-legs {
        bottom: 10px;
    }

    .thigh,
    .shin {
        height: 45px;
    }

    .bg-circle.circle-1 {
        width: 250px;
        height: 250px;
    }

    .bg-circle.circle-2 {
        width: 320px;
        height: 320px;
    }

    .bg-circle.circle-3 {
        width: 400px;
        height: 400px;
    }

    /* Intro Section */
    .intro-section {
        padding: 30px 0;
    }

    .intro-section-container {
        padding: 0 15px;
    }

    .intro-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Quick Services Section */
    .quick-services-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .quick-services-section-container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 25px;
        text-align: center;
    }

    .section-header .section-title {
        font-size: 22px;
    }

    .section-header .section-subtitle {
        font-size: 13px;
    }

    .services-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .service-highlight-card {
        padding: 20px 15px;
        min-width: 0;
        width: 100%;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .icon-wrapper i {
        font-size: 22px;
    }

    .service-highlight-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-highlight-card p {
        font-size: 12px;
    }

    /* Main Service Grid Section */
    .main-service-grid-section {
        padding: 40px 0;
    }

    .main-service-grid-container {
        padding: 0 15px;
    }

    .main-services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .premium-service-card {
        padding: 22px 16px;
        border-radius: 12px;
    }

    .service-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .service-card-icon i {
        font-size: 26px;
    }

    .service-card-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .service-card-description {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .learn-more-link {
        font-size: 13px;
    }

    /* Why Choose Us Section */
    .why-choose-us-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .why-choose-us-container {
        padding: 0 15px;
    }

    .why-choose-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .why-image-column {
        width: 100%;
    }

    .image-wrapper {
        max-width: 100%;
        border-radius: 12px;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .why-content-column {
        width: 100%;
    }

    .section-label {
        font-size: 11px;
        padding-left: 25px;
    }

    .section-label::before {
        width: 18px;
    }

    .why-title {
        font-size: 22px;
    }

    .why-intro {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .why-reasons-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .reason-item {
        padding: 14px;
        margin-bottom: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .reason-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .reason-icon i {
        font-size: 18px;
    }

    .reason-content {
        flex: 1;
    }

    .reason-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .reason-content p {
        font-size: 12px;
    }

    .why-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .primary-cta-btn {
        padding: 14px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .secondary-link {
        font-size: 13px;
        text-align: center;
    }

    /* Results Section */
    .results-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .results-section-container {
        padding: 0 15px;
    }

    .results-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .results-label {
        font-size: 11px;
    }

    .results-title {
        font-size: 22px;
    }

    .results-subtitle {
        font-size: 13px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 22px 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .stat-icon i {
        font-size: 22px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-plus,
    .stat-percent {
        font-size: 22px;
    }

    .stat-title {
        font-size: 14px;
        margin: 10px 0 5px;
    }

    .stat-description {
        font-size: 12px;
    }

    .stat-badge {
        top: 12px;
        right: 12px;
    }

    .results-cta {
        text-align: center;
    }

    .results-cta .cta-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .results-cta .cta-button {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 12px;
    }

    /* Hero */
    .hero-container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-illustration {
        height: 120px;
    }

    .marketing-illustration-3d {
        max-width: 120px;
        height: 120px;
    }

    /* Intro */
    .intro-section-container {
        padding: 0 12px;
    }

    .intro-content p {
        font-size: 13px;
    }

    /* Quick Services */
    .quick-services-section-container {
        padding: 0 12px;
    }

    .section-header .section-title {
        font-size: 20px;
    }

    .section-header .section-subtitle {
        font-size: 12px;
    }

    .services-strip {
        gap: 10px;
    }

    .service-highlight-card {
        padding: 16px 12px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }

    .service-highlight-card h3 {
        font-size: 13px;
    }

    .service-highlight-card p {
        font-size: 11px;
    }

    /* Main Services */
    .main-service-grid-container {
        padding: 0 12px;
    }

    .premium-service-card {
        padding: 18px 14px;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
    }

    .service-card-icon i {
        font-size: 24px;
    }

    .service-card-title {
        font-size: 14px;
    }

    .service-card-description {
        font-size: 11px;
    }

    /* Why Choose Us */
    .why-choose-us-container {
        padding: 0 12px;
    }

    .why-title {
        font-size: 20px;
    }

    .why-intro {
        font-size: 13px;
    }

    .reason-item {
        padding: 12px;
        gap: 10px;
    }

    .reason-icon {
        width: 38px;
        height: 38px;
    }

    .reason-icon i {
        font-size: 16px;
    }

    .reason-content h3 {
        font-size: 13px;
    }

    .reason-content p {
        font-size: 11px;
    }

    /* Results */
    .results-section-container {
        padding: 0 12px;
    }

    .results-title {
        font-size: 20px;
    }

    .results-subtitle {
        font-size: 12px;
    }

    .stat-card {
        padding: 18px 14px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-plus,
    .stat-percent {
        font-size: 20px;
    }

    .stat-title {
        font-size: 13px;
    }

    .stat-description {
        font-size: 11px;
    }

    .results-cta .cta-text {
        font-size: 13px;
    }

    .results-cta .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ========================================
   ENHANCED MOBILE LAYOUT IMPROVEMENTS
   ======================================== */

/* Global mobile improvements - prevent horizontal scroll */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Better touch targets for mobile */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improved section spacing */
    section {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Typography scaling for mobile */
    h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    h2 {
        font-size: clamp(1.25rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    h3 {
        font-size: clamp(1rem, 4vw, 1.5rem);
        line-height: 1.4;
    }
    
    p {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
    
    /* Stack grid layouts on mobile */
    .services-strip,
    .main-services-grid,
    .stats-grid,
    .why-choose-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    /* Full-width cards on mobile */
    .service-highlight-card,
    .premium-service-card,
    .stat-card,
    .reason-item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Better button styling for mobile */
    .cta-button,
    .contact-btn,
    .primary-cta-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    section {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
}
