:root {
    --bg-main: #F8FAFC;
    --bg-alt: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --border: rgba(15, 23, 42, 0.08);

    --bg-dark: #0F172A;
    --bg-dark-alt: #1E293B;
    --text-light: #F8FAFC;
    --text-light-muted: #94A3B8;
    --border-light: rgba(255, 255, 255, 0.1);

    --cyan: #0284C7;
    --cyan-light: rgba(2, 132, 199, 0.1);
    --purple: #7C3AED;
    --purple-light: rgba(124, 58, 237, 0.1);
    --orange: #EA580C;
    --green: #059669;

    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 50px -10px rgba(2, 132, 199, 0.15);
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.dark-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--text-light);
}

.dark-section p {
    color: var(--text-light-muted);
}

.dark-section .section-title p {
    color: var(--text-light-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: var(--cyan-light);
    color: var(--cyan);
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.dark-section .badge {
    background: rgba(2, 132, 199, 0.2);
    color: #38BDF8;
    border-color: rgba(56, 189, 248, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: var(--cyan-light);
    color: var(--cyan);
}

.dark-section .btn-outline {
    border-color: var(--border-light);
    color: var(--text-light);
}

.dark-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

header:not(.scrolled) .logo,
header:not(.scrolled) .nav-links a,
header:not(.scrolled) .mobile-menu-btn {
    color: var(--text-light);
}

header:not(.scrolled) .nav-links a:hover {
    color: #38BDF8;
}

header.scrolled .logo,
header.scrolled .nav-links a,
header.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

header.scrolled .nav-links a:hover {
    color: var(--cyan);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-only-cta {
    display: none;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15), transparent 70%);
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-dark);
    position: absolute;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    color: var(--text-light);
}

.hc-1 {
    top: 10%;
    right: 5%;
    width: 280px;
    z-index: 2;
    border-left: 4px solid var(--cyan);
}

.hc-2 {
    bottom: 15%;
    left: 0;
    width: 260px;
    animation-delay: 1s;
    border-left: 4px solid var(--purple);
}

.hc-3 {
    top: 40%;
    left: 15%;
    width: 320px;
    z-index: 1;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.marquee-container {
    background: var(--bg-alt);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scroll 30s linear infinite;
    min-width: 200%;
}

.marquee-item {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

#about {
    background: var(--bg-main);
}

.about-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.bento-box:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.bento-large {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg-main));
    position: relative;
    overflow: hidden;
}

#marketing {
    background: var(--bg-alt);
}

.marketing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.marketing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.funnel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.funnel-layer {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.funnel-layer:hover {
    transform: scale(1.02);
}

.f-1 {
    width: 100%;
    border-left: 6px solid var(--cyan);
}

.f-2 {
    width: 85%;
    border-left: 6px solid var(--purple);
}

.f-3 {
    width: 70%;
    border-left: 6px solid var(--orange);
}

.f-4 {
    width: 55%;
    border-left: 6px solid var(--green);
}

.funnel-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#webdev {
    background: var(--bg-main);
}

.browser-mockup {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.browser-top {
    background: #E2E8F0;
    padding: 12px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-content {
    padding: 30px;
    background: var(--bg-alt);
}

.webdev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.webdev-feature {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.ai-core-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-center {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    z-index: 10;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
    color: #fff;
}

.ai-ring {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: spin linear infinite;
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation-duration: 20s;
}

.ring-2 {
    width: 380px;
    height: 380px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.ai-node {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--bg-dark-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cyan);
    font-size: 20px;
}

.n-1 {
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.n-2 {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

#messaging {
    background: var(--bg-main);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--bg-alt);
    border: 12px solid var(--text-main);
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 16px;
    background: var(--text-main);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.chat-screen {
    padding: 50px 20px 20px;
    background: var(--bg-main);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    max-width: 85%;
    font-weight: 500;
}

.msg.bot {
    background: var(--cyan-light);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.msg.user {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

#branding {
    background: var(--bg-alt);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: minmax(250px, auto);
}

.brand-item {
    border-radius: 16px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.brand-item:hover {
    background: var(--purple-light);
    border-color: var(--purple);
    transform: translateY(-5px);
}

.b-tall {
    grid-row: span 2;
}

.b-wide {
    grid-column: span 2;
}

#ecommerce {
    background: var(--bg-main);
}

.server-box {
    background: var(--bg-dark-alt);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}

.server-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.server-icon {
    font-size: 60px;
    color: var(--cyan);
}

#process {
    background: var(--bg-main);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #CBD5E1;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

#comparison {
    background: var(--bg-alt);
    position: relative;
    z-index: 1;
}

.compare-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 1050px;
    margin: 0 auto;
}

.compare-card {
    flex: 1;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    width: 100%;
}

.compare-them {
    background: var(--bg-main);
    border: 1px solid var(--border);
    opacity: 0.9;
}

.compare-us {
    background: var(--bg-dark);
    color: #fff;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.compare-us::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    z-index: -1;
    opacity: 0.5;
    filter: blur(12px);
}

.compare-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.compare-us .compare-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.compare-them .compare-list i {
    color: #EF4444;
    font-size: 1.4rem;
    margin-top: 2px;
}

.compare-us .compare-list i {
    color: #10B981;
    font-size: 1.4rem;
    margin-top: 2px;
}

.winner-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

#metrics {
    background: var(--bg-alt);
    padding: 50px 0;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.metric-card {
    background: var(--bg-alt);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
}

.metric-card h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

#testimonials {
    background: var(--bg-main);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.test-quote {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--cyan);
}

#faq {
    background: var(--bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

details {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

details[open] {
    border-color: var(--cyan);
    background: var(--bg-alt);
    box-shadow: var(--shadow-hover);
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cyan);
    transition: var(--transition);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-light-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {

    .grid-2,
    .grid-3,
    .brand-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-end;
    }

    .timeline-content {
        width: calc(100% - 80px);
    }

    .hero-visual {
        display: none;
    }

    .grid-2.hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .b-tall,
    .b-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .mobile-only-cta {
        display: block;
    }

    section {
        padding: 60px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-alt);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        transition: var(--transition);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-main) !important;
    }

    .nav-cta {
        display: none;
    }

    .grid-2,
    .grid-3,
    .brand-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-bento {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .webdev-grid {
        grid-template-columns: 1fr;
    }

    .marquee-track {
        gap: 40px;
    }

    .f-1,
    .f-2,
    .f-3,
    .f-4 {
        width: 100%;
    }

    .compare-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .compare-us {
        transform: scale(1);
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {

    .phone-notch {
        width: 90px;
        height: 9px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        width: calc(100% - 60px);
        padding: 20px;
    }

    .timeline-dot {
        width: 30px;
        height: 30px;
        left: 20px;
        border-width: 2px;
    }

    .timeline::before {
        left: 20px;
    }

    .phone-mockup {
        width: 260px;
        height: 520px;
        border-width: 8px;
    }

    .chat-screen {
        padding-top: 40px;
    }
}

.cta-wrapper {
    padding: 80px 0;
}

.premium-cta-box {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-alt));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.premium-cta-left {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 300px;
}

.premium-cta-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0.7;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 40px 0 80px;
    }

    .premium-cta-box {
        padding: 50px 24px;
        border-radius: 24px;
        gap: 50px;
    }

    .premium-cta-left,
    .premium-cta-right {
        min-width: 100%;
    }

    .premium-cta-right {
        padding: 40px 24px;
        width: 100%;
    }

    .premium-cta-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}