:root {
    /* ── Palette ── */
    --bg-dark: #0d0d0d;
    --bg-surface: #141414;
    --bg-elevated: #1a1a1a;
    --text-main: #f0ede8;
    --text-sub: #9a9690;
    --text-muted: #5a5652;
    --accent-primary: #e8d5b0;
    /* warm parchment */
    --accent-highlight: #c9a96e;
    /* antique gold */
    --accent-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Globally disable cursor */
}

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

/* Ensure interactive elements don't bring back the default cursor */
a,
button,
input,
textarea,
label,
[role="button"],
.hover-target {
    cursor: none !important;
}

/* ── Custom Cursor ── */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-primary);
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(232, 213, 176, 0.35);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* ── Ambient Background — very subtle, no neon ── */
.bg-glow {
    display: none;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    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)" opacity="0.025"/%3E%3C/svg%3E');
    z-index: -1;
    pointer-events: none;
}

/* ── Scroll Progress ── */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1001;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--accent-highlight);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.section-padding {
    padding: 8rem 5%;
}

.section-header {
    margin-bottom: 4rem;
    text-align: left;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.1;
}

.section-desc {
    color: var(--text-sub);
    font-size: 1.05rem;
    max-width: 540px;
}

.disclaimer-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Buttons ── */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
    transition: var(--transition-fast);
    position: relative;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-sub);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 100;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(16px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

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

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

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(232, 213, 176, 0.05);
    border: 1px solid rgba(232, 213, 176, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent-primary);
    letter-spacing: 0.3px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo svg {
    display: none;
}

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

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

.nav-links a:not(.btn-primary) {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-sub);
    position: relative;
    transition: color var(--transition-fast);
    letter-spacing: 0.2px;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-main);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-main);
    transition: var(--transition-fast);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 1001;
    padding: 8rem 10% 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--accent-primary);
    padding-left: 1rem;
}

.mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.mobile-menu-footer p {
    color: var(--text-sub);
    font-size: 0.9rem;
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 620px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 1.8rem;
    letter-spacing: -3px;
    color: #ffffff;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-sub);
    margin-bottom: 2.5rem;
    max-width: 460px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* Hero visual removed */
.hero-visual {
    display: none;
}

.hero-stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.hero-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    display: block;
}

.hero-stat-card .stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.2rem;
}

.hero-stat-card.highlight {
    border-color: rgba(201, 169, 110, 0.25);
}

.hero-stat-card.highlight .stat-number {
    color: var(--accent-highlight);
}

/* hide old orb elements */
.orb,
.orb-1,
.orb-2,
.glass-pane {
    display: none;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem 2rem;
    transition: var(--transition-fast);
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-elevated);
}

.service-icon {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--accent-primary);
    display: inline-block;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 600;
}

.service-card p {
    color: var(--text-sub);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Packages ── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.package-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.package-card.featured {
    border-color: rgba(201, 169, 110, 0.3);
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(201, 169, 110, 0.05) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-highlight), transparent);
}

.package-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.package-card.featured .package-badge {
    color: var(--accent-highlight);
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.package-price {
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.package-info {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-features li i {
    color: var(--accent-highlight);
    font-size: 0.8rem;
}

.package-card .btn-primary,
.package-card .btn-secondary {
    width: 100%;
    text-align: center;
}

/* ── Work / Bento Grid ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.bento-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item:hover {
    border-color: rgba(232, 213, 176, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Project Card Base */
.project-card {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-img-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.project-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-item:hover .project-img {
    transform: scale(1.05);
}

/* Browser Mockup Variation */
.browser-frame {
    background: #1a1a1a;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

.browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #0d0d0d;
    color: var(--text-muted);
    font-size: 0.65rem;
    padding: 0.2rem 1rem;
    border-radius: 4px;
    font-family: monospace;
    opacity: 0.8;
}

/* Project Content / Overlay */
.project-content {
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.8) 40%, rgba(13, 13, 13, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    transition: transform 0.4s var(--transition-fast);
}

.bento-item.wide .project-content,
.bento-item.small .project-content {
    padding: 1.25rem;
}

.project-info {
    transform: translateY(10px);
    transition: transform 0.4s var(--transition-fast);
}

.bento-item:hover .project-info {
    transform: translateY(0);
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.bento-item.wide h3,
.bento-item.small h3 {
    font-size: 1.1rem;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 1.2rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s var(--transition-fast);
}

.bento-item.large:hover .project-desc,
.bento-item.tall:hover .project-desc {
    opacity: 1;
    height: auto;
    margin-top: 0.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link i {
    font-size: 0.75rem;
    transition: transform 0.3s var(--transition-fast);
}

.project-link:hover i {
    transform: translateX(4px);
}

/* Stat Blocks */
.stat-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-surface);
}

.stat-block .stat-value {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-highlight);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-block .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Portfolio Images */
.bg-project-1 {
    background-image: url('../images/lumina_card_bg.png');
}

.bg-project-2 {
    background-image: url('../images/nova.png');
}

.bg-project-2-alt {
    background-image: url('../images/nova_bag.png');
}

.bg-project-3 {
    background-image: url('../images/quantum_terminal.png');
}

/* Platera Brand Card */
.platera-item {
    background: #0f0e0c !important;
    border-color: rgba(201, 169, 110, 0.2) !important;
}

.platera-item .browser-frame {
    background: #171511 !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1) !important;
}

.platera-item .browser-address {
    background: #0a0907 !important;
    color: var(--accent-highlight) !important;
}

.platera-item .project-content {
    background: linear-gradient(to top, #0f0e0c 0%, rgba(15, 14, 12, 0.95) 50%, rgba(15, 14, 12, 0) 100%) !important;
}

.platera-item h3 {
    color: #ffffff !important;
    font-family: var(--font-heading);
}

.platera-item .project-desc {
    color: var(--text-sub) !important;
}

.platera-item .tag {
    background: rgba(201, 169, 110, 0.1) !important;
    color: var(--accent-highlight) !important;
    border-color: rgba(201, 169, 110, 0.2) !important;
}

.platera-item .project-link {
    color: var(--accent-highlight) !important;
}

/* Nova Brand Card - Reverted to Black */
.nova-item {
    background: var(--bg-surface) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.nova-item .project-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.nova-item h3 {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nova-item .project-desc {
    color: var(--text-sub) !important;
}

.nova-item .tag {
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 0 !important;
    font-weight: 800 !important;
}

.nova-item .project-link {
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* Quantum Brand Card */
.quantum-item {
    background: #02040a !important;
    border-color: rgba(0, 255, 162, 0.15) !important;
}

.quantum-item .project-content {
    background: linear-gradient(to top, #02040a 0%, rgba(2, 4, 10, 0.95) 50%, rgba(2, 4, 10, 0) 100%) !important;
}

.quantum-item h3 {
    color: #ffffff !important;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.quantum-item .project-desc {
    color: #94a3b8 !important;
}

.quantum-item .tag {
    background: rgba(0, 255, 162, 0.1) !important;
    color: #00ffa2 !important;
    border-color: rgba(0, 255, 162, 0.3) !important;
    font-family: 'Inter', monospace !important;
}

.quantum-item .project-link {
    color: #00ffa2 !important;
}

.tag {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--accent-highlight);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
}

/* ── Process Timeline ── */
.timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34px;
    width: 1px;
    background: var(--glass-border);
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 68px;
    height: 68px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-sub);
    z-index: 2;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-number {
    border-color: rgba(201, 169, 110, 0.4);
    color: var(--accent-highlight);
}

.timeline-content {
    padding: 2rem;
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-sub);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── Remarkable Box / Inquiry ── */

/* ── Form Animations & Success State ── */
.form-success-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-surface);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}

.form-success-overlay.active {
    display: flex;
    opacity: 1;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-highlight);
    margin-bottom: 1.5rem;
    transform: scale(0.5);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.inquiry-form {
    transition: opacity 0.4s ease;
}

/* ── FAQ ── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    padding: 0.5rem 0;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-highlight);
    transition: transform 0.3s var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    padding-top: 1.5rem;
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Form Animations ── */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(15px);
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-success-overlay.active {
    display: flex;
    opacity: 1;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-highlight);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.4));
    transform: translateY(20px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-overlay.active .success-icon {
    transform: translateY(0) scale(1);
}

.inquiry-form {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.inquiry-form.submitting {
    opacity: 0.3;
    pointer-events: none;
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ── Inquiry Form Specifics ── */
.inquiry-container {
    max-width: 800px !important;
    margin: 0 auto;
    padding: 3.5rem !important;
    position: relative;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--accent-highlight);
    background: rgba(201, 169, 110, 0.05);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

@media (max-width: 768px) {
    .inquiry-container {
        padding: 2.5rem 1.5rem !important;
    }

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ── Footer ── */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--text-sub);
}

/* ── Animations ── */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

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

/* ── Why Choose Us Section ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 213, 176, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 213, 176, 0.08);
    border: 1px solid rgba(232, 213, 176, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.why-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.why-card p {
    color: var(--text-sub);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ── Pricing Section & Tabs ── */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.pricing-tabs {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 0.4rem;
    border-radius: 100px;
    display: flex;
    gap: 0.5rem;
}

.pricing-tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    color: var(--text-sub);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.pricing-tab-btn:hover {
    color: var(--text-main);
}

.pricing-tab-btn.active {
    background: var(--text-main);
    color: var(--bg-dark);
    font-weight: 600;
}

.pricing-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

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

.package-price .period {
    font-size: 0.9rem;
    color: var(--text-sub);
    font-weight: 400;
}

/* AI Services & Add-Ons Tab Content Layout */
.ai-addons-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.ai-services-box,
.addons-box {
    padding: 3rem;
}

.ai-services-box h3,
.addons-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.box-desc {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.ai-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ai-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.ai-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.ai-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-card-header h4 {
    font-size: 1.1rem;
    color: #ffffff;
}

.ai-card-header .price-tag {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.ai-card p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.ai-examples h5 {
    font-size: 0.85rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-examples ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ai-examples li {
    font-size: 0.88rem;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ai-examples li i {
    color: var(--accent-highlight);
    font-size: 0.85rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.addon-price {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.addon-price .unit {
    font-size: 0.75rem;
    color: var(--text-sub);
    font-weight: 400;
}

/* ── Testimonials ── */
.testimonials-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
}

.testimonial-card {
    width: 100%;
    padding: 3.5rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.4s ease forwards;
}

.testimonial-card.active {
    display: flex;
}

.testimonial-content {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent-highlight);
    opacity: 0.08;
    position: absolute;
    top: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.testimonial-info {
    display: flex;
    justify-content: center;
    text-align: center;
}

.testimonial-info .author-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-info .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-info .role {
    font-size: 0.85rem;
    color: var(--accent-primary);
}

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

.slider-arrow {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-sub);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--accent-highlight);
    width: 24px;
    border-radius: 100px;
}

/* ── Scroll Reveals ── */
.hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hidden-delay {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

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

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

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3rem, 7vw, 4rem);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
        gap: 3rem;
    }

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

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

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        flex: unset;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-stat-card {
        flex: 1;
        min-width: 140px;
    }

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

    .section-desc {
        margin: 0 auto;
    }

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

    .bento-item.large,
    .bento-item.tall,
    .bento-item.wide,
    .bento-item.small {
        grid-column: span 2;
        height: 400px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .availability-badge {
        display: none;
    }

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

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

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

    .timeline::before {
        left: 26px;
    }

    .timeline-number {
        width: 52px;
        height: 52px;
        font-size: 0.9rem;
    }

    .timeline-item {
        gap: 1.25rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

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

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}