:root {
    --bg-color: #050505;
    --surface-color: #0D0D0D;
    --surface-accent: #111111;
    --accent-color: #C06C00;
    --accent-hover: #E68A00;
    --text-color: #FFFFFF;
    --muted-color: #888888;
    --transition-smooth: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    --header-height: 100px;
}

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

*, *::before, *::after {
    box-sizing: border-box;
}

/* Noise Grain Texture Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

html, body {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Text Selection */
::selection {
    background: rgba(192, 108, 0, 0.35);
    color: #FFFFFF;
}

::-moz-selection {
    background: rgba(192, 108, 0, 0.35);
    color: #FFFFFF;
}

/* Keyboard Focus Visible */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

/* Page Load Reveal */
@keyframes pageReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: pageReveal 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Entrance Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animations for Grid Items */
.service-card, .member-card, .work-card, .why-card, .pricing-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

section.visible .service-card,
section.visible .member-card,
section.visible .work-card,
section.visible .why-card,
section.visible .pricing-card {
    opacity: 1;
    transform: translateY(0);
}

section.visible .service-card:nth-child(2),
section.visible .member-card:nth-child(2),
section.visible .work-card:nth-child(2),
section.visible .why-card:nth-child(2),
section.visible .pricing-card:nth-child(2) { transition-delay: 0.1s; }

section.visible .service-card:nth-child(3),
section.visible .member-card:nth-child(3),
section.visible .work-card:nth-child(3),
section.visible .why-card:nth-child(3),
section.visible .pricing-card:nth-child(3) { transition-delay: 0.2s; }

section.visible .service-card:nth-child(4),
section.visible .member-card:nth-child(4),
section.visible .work-card:nth-child(4),
section.visible .why-card:nth-child(4),
section.visible .pricing-card:nth-child(4) { transition-delay: 0.3s; }

section.visible .service-card:nth-child(5),
section.visible .member-card:nth-child(5),
section.visible .work-card:nth-child(5),
section.visible .why-card:nth-child(5) { transition-delay: 0.4s; }

section.visible .service-card:nth-child(6),
section.visible .member-card:nth-child(6),
section.visible .work-card:nth-child(6),
section.visible .why-card:nth-child(6) { transition-delay: 0.5s; }

/* Hero Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

#hero .hero-content {
    animation: float 6s ease-in-out infinite;
}

h1,
h2,
h3,
.display-font {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    padding-top: 0.1em; /* Add slight padding to prevent clipping on some browsers */
}

.serif {
    font-family: 'Lora', serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

h2 {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    margin-bottom: 2.5rem;
    background: linear-gradient(to bottom, #FFFFFF 30%, #CCCCCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .serif — already defined above, do not duplicate */

p {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #DDDDDD;
    /* High contrast body text */
    max-width: 70ch;
}

.container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
}

section {
    padding: 160px 0;
    scroll-margin-top: var(--header-height);
}

.label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 50px;
}

.label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--accent-color);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 6%;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
}

nav.scrolled .logo img {
    height: 35px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition-smooth);
    transform-origin: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-smooth);
    opacity: 0.6;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    opacity: 1;
    color: var(--accent-color);
}

.btn-cta {
    background: var(--accent-color);
    color: #000 !important;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: var(--transition-smooth);
    display: inline-block;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(192, 108, 0, 0.25);
    white-space: nowrap;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-cta:hover {
    color: var(--accent-color) !important;
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 108, 0, 0.4);
}

.btn-cta:active {
    transform: translateY(-1px);
    background: #000 !important;
    color: var(--accent-color) !important;
}

.btn-cta:hover::before {
    left: 0;
}

.btn-ghost {
    background: transparent;
    color: var(--text-color);
    padding: 14px 30px;
    border-radius: 0px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.btn-ghost:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.03);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 140px);
    padding-bottom: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 80% 20%, rgba(192, 108, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(192, 108, 0, 0.05) 0%, transparent 40%);
}

.hero-content {
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(192, 108, 0, 0.05);
    color: var(--accent-color);
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 3rem;
    border: 1px solid rgba(192, 108, 0, 0.1);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 5.2rem);
    margin-bottom: 2.5rem;
    color: var(--text-color);
    background: linear-gradient(to bottom, #FFF 30%, #BBB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-sub {
    font-size: clamp(1rem, 4vw, 1.35rem);
    max-width: 100%;
    margin-bottom: 4rem;
    color: #BBBBBB;
    word-wrap: break-word;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 6rem;
}

.tech-stack-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    display: block;
}

.tech-track {
    display: flex;
    gap: 5rem;
    animation: marquee 30s linear infinite;
}

.tech-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #666;
    transition: var(--transition-smooth);
}

.tech-item:hover {
    color: var(--accent-color);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
}

.service-card {
    background: #0D0D0D;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(192, 108, 0, 0.5);
    background: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 3rem;
    opacity: 0.6;
    letter-spacing: 0.3em;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
    filter: grayscale(1) brightness(1);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    filter: grayscale(0) brightness(1.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-card p {
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.member-card {
    background: #0D0D0D;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    border-color: rgba(192, 108, 0, 0.5);
    transform: translateY(-15px) scale(1.02);
    background: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.member-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: #1A1A1A;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: var(--transition-smooth);
}

.member-card:hover .member-image img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: var(--accent-color);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-info {
    padding: 1rem 0.5rem;
}

.member-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1;
}

.member-info p {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.role-badge {
    background: var(--accent-color);
    padding: 8px 16px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000;
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.work-card {
    position: relative;
    background: #0D0D0D;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(192, 108, 0, 0.05), transparent);
    z-index: 2;
    transition: var(--transition-smooth);
}

.work-image {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
    padding: 1rem; /* Inset look for premium feel */
    background: #080808;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Image border */
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 20%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 3;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(192, 108, 0, 0.15);
}

.work-card:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-card:hover .work-image img {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.2);
    border-color: rgba(192, 108, 0, 0.4);
}

.work-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.work-card h3 {
    font-size: 2rem;
    margin: 0;
    color: #FFF;
    letter-spacing: 0.02em;
}

.work-card .work-link-icon {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
}

.work-card .work-link-icon::after {
    content: '→';
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.work-card:hover .work-link-icon::after {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .work-grid {
        gap: 1.5rem;
    }
    
    .work-card {
        flex: 0 0 320px;
        aspect-ratio: 16/11;
    }

    .work-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 1.5rem;
    }
    
    .work-card h3 {
        font-size: 1.6rem;
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    position: relative;
    padding: 4rem;
    border-radius: 14px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: none;
    min-height: 420px;
}

.testimonial-card-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    z-index: -1;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(40px);
    border-radius: 10px;
    overflow: hidden;
    outline: 1px solid rgba(255, 255, 255, 0.03);
}

.testimonial-blob {
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.2;
    filter: blur(50px);
    animation: blob-bounce 8s infinite ease;
}

@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

.quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.client-info {
    position: relative;
    z-index: 2;
}

.client-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10rem;
}

.about-text h2 {
    margin-bottom: 4rem;
}

.statement-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.statement-box h4 {
    color: var(--accent-color);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.statement-box p {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #DDDDDD;
}/* Contact Section Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-info .accent-text {
    color: var(--accent-color);
    text-transform: none;
    font-family: 'Lora', serif;
    font-style: italic;
}

.contact-benefits {
    list-style: none;
    margin: 3rem 0;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #CCC;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.contact-email {
    font-size: 1.8rem;
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--accent-color);
}

.book-call {
    color: var(--accent-text);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.book-call:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Form Styles */
.contact-form-container {
    background: #0A0A0A;
    padding: 3.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

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

.form-group label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: #666;
    text-transform: uppercase;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chip {
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #888;
}

.chip:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFF;
}

.chip.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(192, 108, 0, 0.3);
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    color: #FFF;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

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

.submit-btn {
    width: 100%;
    padding: 22px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 1rem;
    font-weight: 800;
}

.submit-btn:hover {
    background: #FFF;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-email {
        font-size: 1.4rem;
    }
}

/* CTA Section / Pre-Footer */
.pre-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pre-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(192, 108, 0, 0.1), transparent 70%);
    z-index: 0;
}

.pre-footer .container {
    position: relative;
    z-index: 1;
}

.pre-footer h2 {
    background: linear-gradient(to bottom, #FFFFFF 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.pre-footer p {
    color: #BBBBBB;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.btn-dark {
    background: var(--accent-color);
    color: #000;
    border-radius: 0;
    padding: 25px 60px;
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-dark:hover {
    background: #000;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(192, 108, 0, 0.2);
}

.btn-dark:active {
    transform: translateY(2px);
    background: #000 !important;
    color: var(--accent-color) !important;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 35px;
}

.footer-tagline {
    color: var(--accent-color);
    font-family: 'Lora', serif;
    font-style: italic;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-about {
    max-width: 400px;
    font-size: 0.95rem;
    color: #AAAAAA;
}

.footer-links h5,
.footer-contact h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.footer-contact p svg {
    color: var(--accent-color);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.footer-contact a {
    color: #888;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-contact p:hover svg {
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(192, 108, 0, 0.3);
    transform: translateY(-3px);
}

.footer-legal a {
    color: #444;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.8rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    section {
        padding: 100px 0;
        scroll-margin-top: 80px;
    }

    .container {
        padding: 0 8%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .team-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 2000;
        /* Extremely high to be above everything */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full screen width for cleaner feel */
        height: 100vh;
        background: #080808;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 40px;
        transition: var(--transition-smooth);
        z-index: 1500;
        border-left: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 2rem;
        /* Larger links for mobile */
    }

    /* Hamburger Animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--accent-color);
    }

    .nav-toggle.active span:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--accent-color);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-cta,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .tech-track {
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem !important;
        /* Extremely safe size for 320px screens */
        line-height: 1.2;
        letter-spacing: 0.02em;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: normal;
    }

    h2 {
        font-size: 2.1rem;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .container {
        padding: 0 10%;
        /* More padding on mobile */
    }

    #hero {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 80px;
    }

    .nav-toggle {
        display: flex;
        z-index: 9999;
        /* Higher than mobile menu */
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
}


/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 40px;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

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

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFF;
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--accent-color);
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(192, 108, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 108, 0, 0.3);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(192, 108, 0, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #080808;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 40px;
        transition: var(--transition-smooth);
        z-index: 1500;
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        opacity: 1;
    }

    .nav-links .btn-cta {
        width: auto;
        padding: 18px 30px;
        font-size: 1rem;
        margin-top: 1rem;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 2000;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-cta, .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 0.9rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-cta {
        color: #000 !important; /* Force black text on orange background */
    }

    .btn-ghost {
        color: #FFF !important;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-about {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

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

    .footer-legal a {
        margin: 0 10px;
    }

    .services-grid,
    .work-grid,
    .team-grid,
    .testimonial-grid,
    .about-highlight,
    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
        letter-spacing: 0em;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .container {
        padding: 0 5%;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 8px 12px;
        margin-bottom: 1.5rem;
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 2.5rem;
    }

    #hero {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .btn-cta, .btn-ghost {
        padding: 14px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
}

/* Success Overlay Styles */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 2rem;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: #000;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 50px rgba(192, 108, 0, 0.4);
    animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes success-pop {
    0% { transform: scale(0) rotate(-45deg); }
    100% { transform: scale(1) rotate(0); }
}

.success-content h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    color: #FFF;
}

.success-content p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Why Choose Us Section Styles */
#why-choose-us {
    background: var(--bg-color);
    padding: 160px 0;
}

.why-header {
    margin-bottom: 5rem;
    text-align: left;
}

.why-header h2 {
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #FFFFFF 30%, #CCCCCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-header p {
    margin: 0;
    max-width: 850px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--muted-color);
    line-height: 1.65;
}

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

.why-card {
    background: #0D0D0D;
    padding: 3.5rem 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(192, 108, 0, 0.4);
    background: #111111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.why-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.why-svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-color);
    stroke-width: 1.8px;
}

.why-card-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: none;
    letter-spacing: -0.01em;
    margin: 0;
}

.why-card p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #999999;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 100px 0;
    }

    .why-header {
        margin-bottom: 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Pricing Section Styles */
#pricing {
    background: #050505;
    padding: 160px 0;
}

.pricing-header {
    margin-bottom: 5rem;
    text-align: left;
}

.pricing-header h2 {
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #FFFFFF 30%, #CCCCCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    margin: 0;
    max-width: 800px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--muted-color);
    line-height: 1.65;
}

/* Tabs Switcher Styles */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 10px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: #FFF;
}

.tab-btn.active {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 5px 15px rgba(192, 108, 0, 0.2);
}

.pricing-grid {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.pricing-grid.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    opacity: 1;
    transform: translateY(0);
}

/* Disable stagger delays and speed up transitions on tab switch */
.pricing-grids-container.tab-switched .pricing-card {
    transition: opacity 0.25s ease-out, transform 0.25s ease-out !important;
    transition-delay: 0s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.pricing-card {
    background: #0D0D0D;
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card.highlighted {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(192, 108, 0, 0.1);
    background: linear-gradient(180deg, #0E0E0E 0%, #080808 100%);
}

.pricing-card.highlighted:hover {
    box-shadow: 0 30px 60px rgba(192, 108, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--accent-color);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    border-radius: 20px;
}

.pricing-card-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: none;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.plan-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: var(--muted-color);
    line-height: 1.5;
}

.pricing-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2.5rem 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #CCCCCC;
    line-height: 1.4;
}

.feature-bullet {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.95rem;
}

.pricing-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 1.5rem;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
}

.btn-plan-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn-plan-cta:hover {
    border-color: var(--accent-color);
    background: rgba(192, 108, 0, 0.05);
}

.btn-plan-cta.highlighted-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    box-shadow: 0 10px 25px rgba(192, 108, 0, 0.2);
}

.btn-plan-cta.highlighted-btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 15px 35px rgba(192, 108, 0, 0.35);
}

@media (max-width: 1024px) {
    .pricing-grid.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #pricing {
        padding: 100px 0;
    }
    
    .pricing-tabs-container {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 12px;
        margin-bottom: 2.5rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-tabs-container::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
    }
    
    .pricing-grid.active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 3rem 2rem;
    }

    .pricing-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

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

/* Submit Button Loading State */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    #hero .hero-content {
        animation: none;
    }

    .tech-track {
        animation: none;
    }

    .testimonial-blob {
        animation: none;
    }
}