/* ==========================================================================
   Binary Code Agency Stylesheet - Premium Dark Theme Makeover
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --primary-light: rgba(59, 130, 246, 0.1);
    --primary-glow: rgba(59, 130, 246, 0.25);
    --primary-glow-strong: rgba(59, 130, 246, 0.5);
    --dark: #020617;
    --dark-card: rgba(15, 23, 42, 0.5);
    --dark-border: rgba(255, 255, 255, 0.06);
    --gray: #94A3B8;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Gradient Sets */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #4F46E5 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-bg: linear-gradient(135deg, #090D1A 0%, #030712 50%, #0D1527 100%);
    --gradient-dark: linear-gradient(180deg, #090D1A 0%, #02040A 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --- Base Reset & Scroll --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--dark);
    color: #CBD5E1;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    outline: none;
    border: none;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7.5rem 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-danger:hover {
    background-color: #DC2626;
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.font-green {
    color: #25D366 !important;
}

/* --- Animations & Effects --- */
.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.glow-btn:hover::after {
    opacity: 1;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.2); }
}

.glow-animation {
    animation: glowPulse 3s infinite ease-in-out;
}

/* Scroll Fade In Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.active,
.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- Navbar (Dark Mode) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(9, 13, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    background-color: rgba(9, 13, 26, 0.85);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.navbar.scrolled .nav-container {
    padding: 0.75rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
}

.logo-text {
    color: var(--white);
}

.logo-text span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #94A3B8;
}

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

.nav-links .nav-cta {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    -webkit-text-fill-color: initial;
}

.nav-links .nav-cta:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.35rem;
    background: none;
    color: var(--white);
    cursor: pointer;
}

/* --- Hero Section (Mesh Gradients & Vibrant Shapes) --- */
.hero-section {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 7.5rem;
    background: var(--gradient-bg);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.shape-1 {
    top: -10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0) 70%);
    animation: floatBlob1 20s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0) 70%);
    animation: floatBlob2 25s infinite alternate ease-in-out;
}

.shape-3 {
    top: 25%;
    left: 45%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0) 70%);
    animation: floatBlob1 18s infinite alternate-reverse ease-in-out;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 60px) scale(1.08); }
}

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

.hero-content {
    max-width: 630px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.12);
    color: #60A5FA;
    padding: 0.5rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    border: 1.5px solid rgba(59, 130, 246, 0.25);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-container {
    height: 35px;
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
}

.typing-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #94A3B8;
}

.typed-cursor {
    font-size: 1.45rem;
    color: var(--primary);
    margin-left: 2px;
    animation: cursorBlink 0.8s infinite;
}

.hero-subheadline {
    font-size: 1.12rem;
    color: #94A3B8;
    margin-bottom: 2.25rem;
}

.price-highlight {
    font-weight: 800;
    color: #60A5FA;
    background: rgba(59, 130, 246, 0.15);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.2);
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #94A3B8;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.05rem;
}

/* Vector Hero Image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60% 40% 50% 50% / 50% 45% 55% 50%;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    max-width: 480px;
    margin: 0 auto;
    animation: floatShape 6s ease-in-out infinite, morphBlob 16s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% {
        border-radius: 60% 40% 50% 50% / 50% 45% 55% 50%;
    }
    33% {
        border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
    }
    66% {
        border-radius: 55% 45% 60% 40% / 55% 35% 65% 45%;
    }
    100% {
        border-radius: 60% 40% 50% 50% / 50% 45% 55% 50%;
    }
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 2;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 2;
}

.hero-vector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    z-index: 1;
}

.hero-visual:hover .hero-vector-img {
    transform: scale(1.05);
}

/* --- Urgency Banner --- */
.urgency-banner {
    background: linear-gradient(90deg, #090D1A 0%, var(--primary) 50%, #4F46E5 100%);
    color: var(--white);
    padding: 1.25rem 0;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.urgency-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.urgency-tag {
    background-color: #EF4444;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.urgency-text strong {
    color: #FCD34D;
}

.urgency-link {
    font-weight: 700;
    color: #FCD34D;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.urgency-link:hover {
    color: var(--white);
}

/* --- Section Headers --- */
.section-header {
    max-width: 650px;
    margin: 0 auto 4.5rem auto;
}

.subtitle {
    display: inline-block;
    color: #60A5FA;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    background: rgba(59, 130, 246, 0.15);
    padding: 0.25rem 0.85rem;
    border-radius: 40px;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
}

/* --- Services Section (Dark Mode) --- */
.services-section {
    background-color: #030712;
}

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

.service-card {
    position: relative;
    background-color: var(--dark-card);
    padding: 3rem 2.25rem;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(59, 130, 246, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: #60A5FA;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.3);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.85rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

.services-discuss-cta {
    margin-top: 3.5rem;
    font-size: 1.05rem;
    color: #94A3B8;
}

.btn-discuss-whatsapp {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-discuss-whatsapp:hover {
    color: #60A5FA;
}

.btn-discuss-whatsapp i {
    color: #25D366;
}

/* --- Portfolio Showcase (Dark Mode) --- */
.portfolio-section {
    background-color: #090D1A;
}

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

.portfolio-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(59, 130, 246, 0.4);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #020617;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-image-wrapper img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 26, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: var(--transition);
}

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

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: #60A5FA;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.5;
}

/* --- Why Choose Us Section (Dark Mode) --- */
.why-us-section {
    background-color: #030712;
}

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

.why-us-item {
    background-color: var(--dark-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.why-us-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.why-us-icon {
    font-size: 2rem;
    color: #60A5FA;
    margin-bottom: 0.5rem;
}

.why-us-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

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

/* --- Pricing Section (Beautiful Dark Theme) --- */
.pricing-section {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

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

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 2.75rem 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(99, 102, 241, 0.15);
}

.pricing-card.popular {
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.25);
    padding: 3.5rem 1.5rem;
}

.pricing-card.popular:hover {
    border-color: #60A5FA;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.4);
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.15rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.25);
    display: inline-flex;
    white-space: nowrap;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.pricing-header .price sup {
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    top: -0.7rem;
}

.pricing-header .price .period {
    font-size: 1.15rem;
    font-weight: 600;
    color: #94A3B8;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #94A3B8;
    letter-spacing: normal;
    text-transform: none;
}

.price-subtext {
    font-size: 0.78rem;
    font-weight: 700;
    color: #38BDF8;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(56, 189, 248, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pricing-card.popular .price-subtext {
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.15);
}

.price-subtitle {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
    min-height: 38px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #E2E8F0;
    line-height: 1.4;
}

.pricing-features li i {
    font-size: 0.9rem;
}

.pricing-features li i.fa-check {
    color: var(--success);
}

.pricing-features li i.fa-xmark {
    color: rgba(239, 68, 68, 0.3);
}

.pricing-features li.disabled {
    color: #475569;
    opacity: 0.55;
    text-decoration: line-through;
}

/* Neon Highlights for Hosting */
.pricing-features li .highlight-text {
    color: #38BDF8;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
    font-weight: 700;
}

.pricing-card.popular .pricing-features li .highlight-text {
    color: #FBBF24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.25);
    font-weight: 800;
}

.badge-bonus {
    background: var(--gradient-gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    text-transform: uppercase;
    margin-left: 0.25rem;
}

.pricing-card .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Testimonials Section (Dark Mode) --- */
.testimonials-section {
    background-color: #090D1A;
}

.testimonials-carousel-wrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-stars {
    color: #FCD34D;
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #E2E8F0;
    line-height: 1.7;
}

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

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 2px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.client-info h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.client-info span {
    font-size: 0.82rem;
    color: var(--gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot-indicator.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* --- Contact & Lead Form Section (Dark Mode) --- */
.contact-section {
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08) 0%, var(--dark) 60%);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-info-block h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--white);
}

.contact-info-block p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.urgency-subbox {
    display: flex;
    gap: 0.85rem;
    background-color: rgba(239, 68, 68, 0.06);
    border: 1px dashed rgba(239, 68, 68, 0.35);
    border-radius: 8px;
    padding: 1.25rem;
    color: #EF4444;
    font-size: 0.88rem;
    margin-bottom: 2.5rem;
}

.urgency-subbox i {
    font-size: 1.2rem;
    margin-top: 2px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.c-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.contact-item .whatsapp-link {
    font-weight: 700;
    color: #60A5FA;
}

.contact-item h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Lead Form Block Styling */
.contact-form-block {
    background-color: var(--dark-card);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lead-form h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.lead-form p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 2.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E2E8F0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(9, 13, 26, 0.6);
    color: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: rgba(9, 13, 26, 0.95);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-height: 20px;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

/* --- Footer (Dark Mode) --- */
.footer {
    background-color: #02040A;
    color: var(--white);
    padding: 5.5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-2px);
}

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

.footer-links-grid h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-links-grid ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-grid a {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-links-grid a:hover {
    color: var(--white);
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748B;
}

/* --- Back to Top & Floating Elements --- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--dark);
    color: var(--white);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- Modals Setup --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 26, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    color: var(--danger);
}

/* Admin Login Layout (Private Pages) */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, var(--dark) 100%);
    padding: 1.5rem;
}

.admin-login-card {
    background-color: #0d1527;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    width: 100%;
    max-width: 420px;
    padding: 3rem;
}

.error-msg {
    color: var(--danger);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.4rem;
    min-height: 15px;
    display: block;
}

/* SEO Dashboard App Page Wrapper */
.admin-dashboard-wrapper {
    min-height: 100vh;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.seo-dashboard-container {
    background-color: #0d1527;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    width: 100%;
    max-width: 1080px;
    height: 85vh;
    display: flex;
    overflow: hidden;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    width: 100%;
    height: 100%;
}

.dashboard-sidebar {
    background-color: #060a13;
    color: var(--white);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
}

.sidebar-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.sidebar-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
}

.sidebar-header span {
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.sidebar-menu li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94A3B8;
    transition: var(--transition-fast);
}

.sidebar-menu li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.sidebar-menu li.active {
    background-color: var(--primary);
    color: var(--white);
}

.dashboard-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow-y: auto;
}

.dashboard-status-banner {
    background-color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.dashboard-status-banner.success {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.dashboard-status-banner.error {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.dashboard-tab-content {
    display: none;
    flex-grow: 1;
}

.dashboard-tab-content.active {
    display: block;
}

.dashboard-tab-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.dashboard-tab-content p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.dashboard-tab-content .form-group label {
    font-weight: 600;
    color: #CBD5E1;
}

.dashboard-tab-content .form-group input,
.dashboard-tab-content .form-group textarea {
    background-color: #090d1a;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.dashboard-tab-content .form-group input:focus,
.dashboard-tab-content .form-group textarea:focus {
    border-color: var(--primary);
}

.code-textarea {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    background-color: #060a13 !important;
}

.warning-text {
    color: #F59E0B;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
}

.dashboard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.mode-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mode-badge.server-mode {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

/* --- Checkout / Payment Page Layout --- */
.payment-wrapper {
    min-height: 100vh;
    padding: 8rem 0 4rem 0;
    background-color: var(--dark);
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.08) 0%, var(--dark) 100%);
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-card-block {
    background-color: var(--dark-card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.payment-card-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

/* Order Summary */
.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.order-summary-row.total {
    border-bottom: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    padding-top: 1.5rem;
}

.bonus-list {
    margin-top: 1.25rem;
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px dashed rgba(16, 185, 129, 0.25);
    border-radius: 8px;
    padding: 1rem;
}

.bonus-list h5 {
    color: #10B981;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-list li {
    font-size: 0.85rem;
    color: #34D399;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Payment Methods */
.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.payment-option {
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.25rem;
    transition: var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.02);
}

.payment-option:hover {
    border-color: var(--primary);
    background-color: rgba(59, 130, 246, 0.06);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.payment-option-header i {
    font-size: 1.25rem;
    color: var(--primary);
}

.payment-option p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.bank-details-box {
    margin-top: 0.75rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.85rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: #CBD5E1;
    border: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.5;
}

.checkout-btn {
    margin-top: 2rem;
    display: flex;
    width: 100%;
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .payment-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 960px) {
    .seo-dashboard-container {
        flex-direction: column;
        height: 90vh;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .dashboard-sidebar {
        padding: 1.25rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .sidebar-header {
        margin-bottom: 0;
    }
    
    .sidebar-menu {
        flex-direction: row;
        margin: 0;
        gap: 0.25rem;
    }
    
    .sidebar-menu li {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .sidebar-footer {
        display: none;
    }
    
    .dashboard-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #090d1a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.25rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .typing-container {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 2rem;
    }
    
    .pricing-card.popular {
        padding: 2.75rem 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-block {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .testimonials-carousel {
        height: 380px;
    }
}
