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

:root {
    --primary-black: #000000;
    --primary-red: #dc2626;
    --primary-skyblue: #0ea5e9;
    --background-light: #FDFBF8;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--background-light) 0%, #f8fafc 50%, var(--gray-50) 100%);
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.primary-font {
    font-family: 'Inter', sans-serif;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(220, 38, 38, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
    background: rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--primary-skyblue);
    border: 2px solid rgba(14, 165, 233, 0.3);
    box-shadow: 
        0 4px 16px rgba(14, 165, 233, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary-skyblue) 0%, #0284c7 100%);
    color: var(--white);
    border-color: var(--primary-skyblue);
    box-shadow: 
        0 8px 32px rgba(14, 165, 233, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 16px rgba(220, 38, 38, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.nav-link.cta-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(220, 38, 38, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.ai-graphic {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ai-graphic i {
    font-size: 4rem;
    padding: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.ai-graphic i:nth-child(1) {
    color: var(--primary-red);
}

.ai-graphic i:nth-child(2) {
    color: var(--primary-skyblue);
}

.ai-graphic i:nth-child(3) {
    color: var(--primary-black);
}

.ai-graphic i:hover {
    transform: translateY(-10px) rotate(5deg);
}

.opportunity-section {
    padding: 80px 0;
    position: relative;
}

.opportunity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.opportunity-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.opportunity-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-red {
    color: var(--primary-red);
    font-weight: 700;
}

.services-section {
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 250, 251, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.marketing-funnel-section {
    padding: 80px 0;
    position: relative;
}

.marketing-funnel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.funnel-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.funnel-flow {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 0;
}

.flow-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%, 
        var(--primary-skyblue) 50%, 
        var(--primary-black) 100%);
    border-radius: 1px;
    opacity: 0.3;
}

.funnel-stage {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.funnel-stage:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.35);
}

.funnel-stage:nth-child(1) {
    border-left: 4px solid var(--primary-red);
}

.funnel-stage:nth-child(2) {
    border-left: 4px solid var(--primary-skyblue);
}

.funnel-stage:nth-child(3) {
    border-left: 4px solid var(--primary-black);
}

.funnel-stage:nth-child(4) {
    border-left: 4px solid var(--primary-red);
}

.funnel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.funnel-stage:nth-child(1) .funnel-icon {
    color: var(--primary-red);
}

.funnel-stage:nth-child(2) .funnel-icon {
    color: var(--primary-skyblue);
}

.funnel-stage:nth-child(3) .funnel-icon {
    color: var(--primary-black);
}

.funnel-stage:nth-child(4) .funnel-icon {
    color: var(--primary-red);
}

.funnel-stage h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.funnel-stage .stage-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.funnel-stage p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.feature-highlight {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-skyblue);
}

.feature-highlight h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.feature-highlight p {
    color: var(--text-medium);
    line-height: 1.6;
}

.marketing-hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.marketing-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

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

.marketing-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.marketing-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.examples-section {
    padding: 80px 0;
    position: relative;
}

.examples-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 250, 251, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.video-gallery-container {
    margin: 3rem 0;
}

.gallery-container {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
}

.gallery-gradient {
    position: absolute;
    top: 0;
    height: 100%;
    width: 48px;
    z-index: 10;
}

.gallery-gradient-left {
    left: 0;
    background: linear-gradient(to left, rgba(253, 251, 248, 0) 0%, var(--background-light) 100%);
}

.gallery-gradient-right {
    right: 0;
    background: linear-gradient(to right, rgba(253, 251, 248, 0) 0%, var(--background-light) 100%);
}

.gallery-content {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.gallery-track {
    display: flex;
    height: auto;
    min-height: 200px;
    justify-content: center;
    align-items: center;
    cursor: grab;
    transform-style: preserve-3d;
    width: 100%;
}

.gallery-item {
    position: absolute;
    display: flex;
    height: fit-content;
    align-items: center;
    justify-content: center;
    padding: 8%;
    backface-visibility: hidden;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.video-card:hover {
    transform: scale(1.05);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.gallery-img {
    pointer-events: none;
    height: 180px;
    width: 320px;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
    text-align: center;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.video-overlay h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.marketing-pricing-section {
    padding: 80px 0;
    position: relative;
}

.marketing-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.35);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card:nth-child(2) .service-icon {
    color: var(--primary-skyblue);
}

.service-card:nth-child(3) .service-icon {
    color: var(--primary-black);
}

.service-card:nth-child(4) .service-icon {
    color: var(--primary-red);
}

.service-card:nth-child(1) {
    position: relative;
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 
        0 16px 48px rgba(220, 38, 38, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-card:nth-child(1)::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    }
}

.service-card:nth-child(1) .service-icon {
    color: var(--primary-red);
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.2));
}

.service-card:nth-child(1) h3 {
    color: var(--primary-red);
    font-size: 1.7rem;
}

.service-card:nth-child(1):hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-card:nth-child(5) .service-icon {
    color: var(--primary-skyblue);
}

.service-card:nth-child(6) .service-icon {
    color: var(--primary-black);
}

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

.service-description {
    color: var(--text-medium);
    line-height: 1.6;
}

.service-long {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    color: var(--text-dark);
}

.service-toggle {
    margin-top: 1rem;
    color: var(--primary-skyblue);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.pricing-section {
    padding: 80px 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-dark);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    transition: 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

input:checked + .toggle-slider {
    background: rgba(220, 38, 38, 0.1);
}

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

.save-badge {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Pricing Display */
.yearly-price {
    display: none;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pricing-note p {
    color: var(--text-medium);
    margin: 0;
}

.pricing-note i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.35);
}

.pricing-card.featured {
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 16px 48px rgba(220, 38, 38, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-medium);
}

.pricing-model {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.value-prop {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--primary-skyblue);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.pricing-target {
    background-color: var(--primary-skyblue);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
}

.technology-section {
    padding: 80px 0;
    position: relative;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 250, 251, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

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

.tech-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.35);
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.tech-card:nth-child(1) .tech-icon {
    color: var(--primary-red);
}

.tech-card:nth-child(2) .tech-icon {
    color: var(--primary-skyblue);
}

.tech-card:nth-child(3) .tech-icon {
    color: var(--primary-black);
}

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

.tech-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-skyblue);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-black);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-medium);
    display: block;
    margin-top: 0.25rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 1rem 2rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    color: var(--text-medium);
    font-weight: 600;
    border: 2px dashed var(--gray-300);
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1f2937 100%);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-300);
}

.ai-consultation-tool {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.ai-consultation-tool h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ai-consultation-tool h2 i {
    color: var(--primary-skyblue);
}

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

.consultation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-skyblue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.consultation-form textarea {
    resize: vertical;
    min-height: 100px;
}

#getRecommendation {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#getRecommendation:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.recommendation-result {
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-skyblue);
    box-shadow: var(--shadow-lg);
}

.recommendation-result.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.recommendation-header i {
    color: var(--primary-skyblue);
    font-size: 1.2rem;
}

.recommendation-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-black);
}

.recommendation-content {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.recommendation-content h5 {
    color: var(--primary-red);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.recommendation-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.recommendation-content li {
    margin-bottom: 0.5rem;
}

.recommendation-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.recommendation-footer p {
    margin-bottom: 0.5rem;
}

.recommendation-footer strong {
    color: var(--primary-red);
}

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

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: var(--primary-skyblue);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-status.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-skyblue);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-300);
}

.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    background-color: #b91c1c;
}

.chatbot-toggle i {
    color: var(--white);
    font-size: 1.5rem;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: none;
    flex-direction: column;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
}

.chatbot-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.chatbot-header p {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.chatbot-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-close:hover {
    color: var(--primary-red);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message {
    background-color: var(--gray-100);
    color: var(--text-dark);
    align-self: flex-start;
}

.user-message {
    background-color: var(--primary-skyblue);
    color: var(--white);
    align-self: flex-end;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary-skyblue);
}

.chatbot-input button {
    padding: 0.75rem 1rem;
    background-color: var(--primary-skyblue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background-color: #0284c7;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Mobile First - Small phones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-link.cta-button {
        margin: 0.5rem 1rem;
        display: inline-block;
        width: auto;
    }

    .hero-section {
        padding: 100px 0 60px;
        width: 100%;
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cta-button {
        width: 90%;
        max-width: 280px;
        text-align: center;
        padding: 14px 20px;
        display: block;
    }

    .ai-graphic {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ai-graphic i {
        font-size: 2.5rem;
        padding: 1.2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .opportunity-text {
        font-size: 1rem;
        line-height: 1.5;
    }

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

    .service-card:nth-child(1) {
        transform: scale(1);
    }

    .service-card:nth-child(1) .service-icon {
        font-size: 2.8rem;
    }

    .service-card:nth-child(1) h3 {
        font-size: 1.3rem;
    }

    .service-card:nth-child(1)::before {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
        top: -8px;
    }

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

    .service-card h3 {
        font-size: 1.25rem;
    }

    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .tech-icon {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .ai-consultation-tool {
        padding: 1.25rem;
    }

    .ai-consultation-tool h2 {
        font-size: 1.3rem;
    }

    .consultation-form input,
    .consultation-form textarea,
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }

    .chatbot-container {
        width: calc(100vw - 40px);
        max-width: 280px;
        height: 350px;
        right: 10px;
        bottom: 70px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .chatbot-toggle i {
        font-size: 1.3rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .client-logos {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }

    .logo-placeholder {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-link.cta-button {
        margin: 0.5rem 1rem;
        display: inline-block;
        width: auto;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        display: flex;
    }

    .cta-button {
        width: 80%;
        max-width: 300px;
    }

    .ai-graphic {
        flex-direction: row;
        gap: 1.5rem;
    }

    .ai-graphic i {
        font-size: 3rem;
        padding: 1.5rem;
    }

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

    .opportunity-text {
        font-size: 1.3rem;
    }

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

    .service-card:nth-child(1) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

    .tech-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .chatbot-container {
        width: 320px;
        height: 450px;
    }
}

/* Large tablets and small laptops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-button {
        width: auto;
        min-width: 180px;
    }

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

    .service-card:nth-child(1) {
        grid-column: 1 / -1;
        max-width: 700px;
        margin: 0 auto;
    }

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

    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .tech-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-content {
        gap: 3rem;
    }
}

/* Marketing page specific mobile styles */
@media (max-width: 480px) {
    .marketing-hero-title {
        font-size: 2rem;
    }

    .marketing-hero-subtitle {
        font-size: 1rem;
    }

    .gallery-container {
        height: 250px;
    }

    .gallery-img {
        height: 100px;
        width: 180px;
    }

    .video-overlay i {
        font-size: 1.5rem;
    }

    .video-overlay h5 {
        font-size: 0.9rem;
    }

    .video-overlay p {
        font-size: 0.75rem;
    }

    .funnel-stage {
        padding: 1.25rem;
    }

    .funnel-icon {
        font-size: 2.2rem;
    }

    .marketing-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-highlight {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .marketing-hero-title {
        font-size: 2.75rem;
    }

    .marketing-hero-subtitle {
        font-size: 1.3rem;
    }

    .gallery-container {
        height: 320px;
    }

    .gallery-img {
        height: 140px;
        width: 240px;
    }

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

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

    .feature-highlight:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
} 