:root {
    --bg-color: #0C0C0C;
    --surface-color: #1A1A1A;
    --primary-accent: #FF7043;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-dark: #000000;
    --border-subtle: #2A2A2A;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

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

.highlight {
    color: var(--primary-accent);
}

.preheading {
    display: block;
    font-family: var(--font-body);
    color: var(--primary-accent);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--text-dark);
    border-radius: 30px;
    padding: 12px 30px;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 112, 67, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid #505050;
    border-radius: 30px;
    padding: 12px 30px;
}

.btn-secondary:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: var(--text-dark);
}

.btn-dark {
    background-color: #1F1F1F;
    color: var(--text-primary);
    border-radius: 8px;
    padding: 10px 20px;
}

.full-width {
    width: 100%;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
    justify-content: flex-start;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: none;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(12, 12, 12, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

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

.logo-highlight {
    color: var(--primary-accent);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
}

.star-rating {
    margin-bottom: 20px;
    color: var(--primary-accent);
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 10px;
}

.hero-heading {
    font-size: clamp(1.75rem, 6vw, 4rem);
    margin-bottom: 24px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.trusted-by {
    margin-top: 40px;
}

.trusted-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.logos-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 20px 0;
}

.logos-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

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

.logo-item {
    width: 70px;
    height: 35px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

.logo-item:hover {
    color: var(--text-primary);
    opacity: 1;
    transform: scale(1.1);
}

/* Services Section (Bento Grid) */
.services-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
}

.bento-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-accent);
}

.col-span-2 {
    grid-column: span 2;
}

.row-span-2 {
    grid-row: span 2;
}

.col-span-1 {
    grid-column: span 1;
}

.row-span-1 {
    grid-row: span 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Bento Visuals */
.card-visual {
    margin-top: 20px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Web Design Visual */
.web-design-visual .wireframe-container {
    width: 80%;
    height: 80%;
    border: 1px solid var(--primary-accent);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 5px;
}

.wf-header {
    height: 15%;
    background: rgba(255, 112, 67, 0.2);
    border-radius: 2px;
}

.wf-body {
    flex: 1;
    display: flex;
    gap: 5px;
}

.wf-sidebar {
    width: 25%;
    background: rgba(255, 112, 67, 0.1);
    border-radius: 2px;
}

.wf-content {
    flex: 1;
    background: rgba(255, 112, 67, 0.1);
    border-radius: 2px;
}

.bento-card:hover .web-design-visual .wf-sidebar {
    animation: pulse-width 2s infinite;
}

/* Web Dev Visual */
.web-dev-visual {
    padding: 0;
    align-items: stretch;
    height: 100%;
    min-height: 300px;
}

.dev-pipeline {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 10px;
}

.code-window,
.ui-window {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.window-header,
.ui-header {
    height: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
}

.win-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.code-lines {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cline {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.cline.indent {
    margin-left: 15px;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.pipeline-flow {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-arrow {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 112, 67, 0.2), var(--primary-accent));
    position: relative;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--primary-accent);
}

.ui-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-box {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.ui-row {
    display: flex;
    gap: 8px;
}

.ui-item {
    flex: 1;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.bento-card:hover .web-dev-visual .flow-arrow {
    height: 120%;
    transition: height 1s ease;
}

/* Copywriting Visual */
.copywriting-visual {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.text-block {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.text-block.short {
    width: 60%;
}

.bento-card:hover .copywriting-visual .text-block {
    animation: type-effect 1s steps(20) forwards;
}

/* CMS Visual */
.cms-visual {
    padding: 0;
}

.cms-interface {
    width: 100%;
    height: 100%;
    display: flex;
}

.cms-sidebar {
    width: 30px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    gap: 8px;
}

.cms-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-accent);
    border-radius: 50%;
}

.cms-line {
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.cms-main {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cms-header-bar {
    height: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.cms-content-blocks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cms-block {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.cms-block.short {
    width: 70%;
}

.bento-card:hover .cms-visual .cms-block {
    background: rgba(255, 112, 67, 0.2);
    transition: background 0.3s ease;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.two-column-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.column-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.column-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-logo {
    background: var(--surface-color);
    border: 1px solid var(--border-subtle);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.tech-logo:hover {
    border-color: var(--primary-accent);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Tools Grid Animation */
.tools-grid-container {
    display: flex;
    gap: 15px;
    height: 350px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.tools-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.tools-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tools-column.slide-up .tools-track {
    animation: slide-up 20s linear infinite;
}

.tools-column.slide-down .tools-track {
    animation: slide-down 20s linear infinite;
}

@keyframes slide-up {
    0% {
        transform: translateY(0);
    }

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

@keyframes slide-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.tool-square {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-square img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 2px solid var(--primary-accent);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.testimonial-handle {
    font-size: 0.9rem;
    color: var(--primary-accent);
    margin-bottom: 4px;
    display: block;
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    color: var(--primary-accent);
    opacity: 0.1;
}

/* Pricing Section - Updated */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 48px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(165deg, rgba(255, 112, 67, 0.1) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 112, 67, 0.6);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 24px;
    right: -42px;
    background: var(--primary-accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 10px 50px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    border-color: var(--primary-accent);
}






.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
}

.badge {
    font-size: 0.7rem;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.subtle-orange {
    background: rgba(255, 112, 67, 0.12);
    color: var(--primary-accent);
    border: 1px solid rgba(255, 112, 67, 0.2);
}

.badge.dark-badge {
    background: var(--primary-accent);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: -3px;
}

.period {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 48px;
    display: block;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    margin-bottom: 48px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    padding-left: 36px;
    position: relative;
    transition: color 0.3s ease;
}

.pricing-card:hover .features-list li {
    color: var(--text-primary);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: rgba(255, 112, 67, 0.15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7043' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-card.featured .features-list li::before {
    background: var(--primary-accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.add-on-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 32px auto 0;
    transition: all 0.4s ease;
}

.add-on-card:hover {
    border-color: rgba(255, 112, 67, 0.3);
}

.add-on-info h3 {
    font-size: 1.85rem;
    margin: 8px 0 6px 0;
    color: var(--text-primary);
    font-weight: 700;
}

.add-on-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.add-on-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-accent);
    font-weight: 800;
}

.add-on-pricing {
    text-align: right;
    margin-left: auto;
    margin-right: 40px;
}

.add-on-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.add-on-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.btn-add-on {
    background-color: var(--text-primary);
    border: none;
    padding: 0;
    width: 200px;
    height: 54px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

.btn-add-on:active {
    transform: scale(0.96);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-add-on:hover .btn-bg {
    transform: scaleX(1);
}

.btn-label {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-label.default {
    color: var(--bg-color);
    transform: translateY(0);
    opacity: 1;
}

.btn-label.success {
    color: var(--text-primary);
    transform: translateY(100%);
    opacity: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
}

.btn-add-on:hover .btn-label.default {
    color: var(--text-primary);
}

.btn-add-on:active {
    transform: scale(0.96);
}


.pricing-card .btn {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-card.featured .btn {
    background-color: var(--primary-accent);
}

.btn-add-on.selected .btn-bg {
    transform: scaleX(1);
}

.btn-add-on.selected .btn-label.default {
    transform: translateY(-100%);
    opacity: 0;
}

.btn-add-on.selected .btn-label.success {
    transform: translateY(0);
    opacity: 1;
}

.pricing-card .btn:hover {
    background-color: var(--primary-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 112, 67, 0.2);
}

.pricing-card.featured .btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.btn-add-on.selected {
    background-color: var(--primary-accent) !important;
    color: #000 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-add-on span {
    transition: opacity 0.2s ease;
}

.pricing-card .btn:hover {
    background-color: var(--primary-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 112, 67, 0.2);
}

.pricing-card.featured .btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.accordion-list {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .question {
    font-size: 1.2rem;
    font-weight: 500;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
}

.accordion-item.open .accordion-body {
    max-height: 200px;
    padding-bottom: 20px;
}

.accordion-item.open .icon {
    transform: rotate(45deg);
}

/* Footer */
.footer-section {
    background: var(--primary-accent);
    overflow: hidden;
}

.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.star {
    margin: 0 20px;
}

/* Footer Content */
.footer-content {
    background: var(--bg-color);
    padding: 80px 0 0;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-color);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact span {
    color: var(--text-secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-accent);
}

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

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

@keyframes pulse-width {

    0%,
    100% {
        width: 25%;
    }

    50% {
        width: 35%;
    }
}

@keyframes type-effect {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.3;
    }
}

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

    100% {
        transform: rotate(45deg) scale(1.2);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 112, 67, 0);
    }

    50% {
        box-shadow: 0 0 10px 2px rgba(255, 112, 67, 0.3);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive Design */

/* Tablet (max-width: 1024px) */
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

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

    .col-span-2 {
        grid-column: span 2;
    }

    .row-span-2 {
        grid-row: span 2;
    }

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

    .pricing-card.featured {
        transform: scale(1);
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .pricing-card.featured::after {
        right: -32px;
        padding: 8px 40px;
    }

    .add-on-card {
        padding: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile (max-width: 768px) */
/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 2.25rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .hero-section {
        padding: 140px 0 60px;
        min-height: auto;
        overflow: hidden;
        max-width: 100vw;
    }

    .hero-section .container {
        max-width: 100%;
        padding: 0 24px;
        overflow: hidden;
    }

    /* Mobile Navbar */
    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        max-width: none;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-link {
        font-size: 2.5rem;
        /* Bigger size */
        padding: 0;
        font-weight: 700;
        color: var(--text-primary);
    }

    .hero-heading {
        letter-spacing: -1px;
        padding: 0 8px;
    }

    .hero-description {
        padding: 0 16px;
    }

    .button-group {
        flex-direction: row;
        gap: 16px;
        width: 100%;
        padding: 0;
    }

    .hero-section .button-group {
        justify-content: center;
    }

    .tech-stack-section .button-group {
        justify-content: flex-start;
    }

    .btn {
        width: auto;
        padding: 16px 32px;
        flex: 1;
        max-width: 200px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .col-span-2,
    .row-span-2,
    .col-span-1,
    .row-span-1 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-section,
    .testimonials-section,
    .pricing-section {
        padding: 60px 0;
    }

    .card-visual {
        height: 220px;
    }

    .two-column-layout {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .column-left .preheading {
        text-align: center;
    }

    .column-right {
        justify-content: center;
    }

    /* Center align other sections when burger is active */
    .hero-content,
    .section-header,
    .two-column-layout,
    .add-on-card,
    .footer-content {
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .logo-cloud {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin-left: 0;
        overflow: visible;
        gap: 16px;
        justify-content: flex-start;
        /* Left align */
        padding: 0;
    }

    .tools-column {
        height: 300px;
        overflow: hidden;
        position: relative;
        width: 70px;
        /* Fixed width per column */
        flex-direction: column;
        display: flex;
        justify-content: left;
    }

    .tools-track {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        animation: none;
        /* Reset base animation */
    }

    /* Restore vertical animations */
    .tools-column.slide-up .tools-track {
        animation: scroll-vertical-up 20s linear infinite;
    }

    .tools-column.slide-down .tools-track {
        animation: scroll-vertical-down 20s linear infinite;
    }

    .tool-square {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    @keyframes scroll-vertical-up {
        0% {
            transform: translateY(0);
        }

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

    @keyframes scroll-vertical-down {
        0% {
            transform: translateY(-50%);
        }

        100% {
            transform: translateY(0);
        }
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .pricing-card {
        padding: 40px 32px;
        text-align: left;
        align-items: flex-start;
    }

    .pricing-card .card-header,
    .pricing-card .price,
    .pricing-card .features-list {
        text-align: left;
        align-items: flex-start;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.featured .badge {
        /* Keep badge as is */
    }

    .pricing-card.featured::after {
        right: -35px;
        /* Adjust badge for mobile width if needed */
        font-size: 0.7rem;
        padding: 6px 40px;
    }

    .pricing-card.featured:hover {
        transform: translateY(0);
        /* Disable hover lift on mobile */
    }

    .add-on-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* Ensure items are centered */
        gap: 32px;
        padding: 40px 24px;
        margin: 0;
    }

    .add-on-info h3 {
        margin-top: 0;
    }

    .add-on-pricing {
        text-align: center;
        margin: 0;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .add-on-pricing {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .btn-add-on {
        width: 100%;
        /* Reset to fit container */
        max-width: 200px;
        /* Non-full width */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-content {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-contact {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px 0;
    }

    .footer-bottom-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .marquee-content {
        font-size: 2.2rem;
    }
}

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

    .hero-heading {
        font-size: 2.25rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .logos-container {
        gap: 16px;
    }

    .logo-item {
        width: 50px;
    }

    .btn-add-on {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 32px 24px;
    }
}

/* Small Mobile (max-width: 425px) */
@media (max-width: 425px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-section {
        padding: 120px 0 60px;
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-section .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .hero-heading {
        padding: 0;
        hyphens: auto;
    }

    .hero-description {
        padding: 0;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        flex: none;
    }

    .hero-section .button-group {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
        gap: 12px;
    }

    .hero-section .btn {
        width: auto;
        flex: 1;
        max-width: 48%;
    }

    .tech-stack-section .button-group {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .tech-stack-section .btn {
        width: auto;
        flex: 1;
        max-width: 48%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    /* Bento Grid Adjustment */
    .bento-card {
        padding: 24px 20px;
        min-height: auto;
    }

    .card-visual {
        height: 180px;
    }

    /* Tech Stack - Toolbox */
    .column-left {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .tech-stack-section .button-group {
        justify-content: center;
    }

    .logos-container {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-item {
        width: 45px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 32px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .add-on-card {
        padding: 32px 20px;
    }

    .add-on-price {
        font-size: 2rem;
    }

    .btn-add-on {
        font-size: 0.9rem;
        height: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .footer-content {
        grid-column: span 1;
        text-align: left;
    }

    .marquee-content {
        font-size: 1.5rem;
    }

    .nav-menu {
        width: 100%;
        max-width: none;
        border-left: none;
    }
}