@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* ReactBits Palette */
    --bg-page: #060010;
    /* Deep Navy/Black */
    --bg-card: #0c0c1d;
    /* Slightly lighter navy */
    --bg-card-hover: #13132d;

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    /* Light gray */

    --accent-primary: #b00c3f;
    /* Fallback */
    --accent-gradient: linear-gradient(135deg, #a855f7, #3b82f6);
    /* Purple to Blue */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(168, 85, 247, 0.5);
    /* Neon Purple border */

    --font-main: 'Figtree', sans-serif;

    --header-height: 70px;
    --radius-card: 16px;
    --radius-pill: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Effect (Placeholder for Grid Motion) */
#grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(76, 29, 149, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.15), transparent 25%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    height: 60px;
    background: rgba(12, 12, 29, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-inner {
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    /* ReactBits uses white text logo */
    filter: brightness(0) invert(1);
    display: block;
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

nav a {
    color: var(--text-secondary);
}

nav a:hover {
    color: white;
}

.btn-pill {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.btn-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-20px);
    }
}

/* Hero Content Container */
.hero-inner {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.hero-actions {
    pointer-events: auto;
}

/* Eyebrow Badge */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: var(--radius-pill);
    color: #e9d5ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(8px);
    animation: eyebrowPulse 3s ease-in-out infinite;
}

@keyframes eyebrowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    }
}

.eyebrow-icon {
    animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Heading */
.statement-text {
    font-size: clamp(48px, 10vw, 120px);
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-text-line {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-text-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-text-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-text-line:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-text-gradient::after {
    content: 'Ihre digitale';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */
.sub-statement {
    font-size: clamp(16px, 3vw, 24px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

.btn-hero-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 16px 60px 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-hero-primary .btn-icon {
    position: absolute;
    right: 28px;
    transition: transform 0.3s;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
}

.stat-card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.stat-card-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    animation: fadeIn 1s ease-out 1.5s backwards, bounce 2s ease-in-out 2s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

.scroll-mouse {
    width: 28px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    position: relative;
    backdrop-filter: blur(5px);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

.scroll-text {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Legacy button styles for backwards compatibility */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
}

.btn-link {
    display: flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Services / Grid */
.section {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.section-head p {
    font-size: 18px;
    color: var(--text-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
}

.bento-box {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 20px 40px -10px rgba(168, 85, 247, 0.15);
}

.bento-content {
    position: relative;
    z-index: 2;
}

/* GridMotion Styles */
.noscroll {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.intro {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Overlay gradient for readability */
    background: radial-gradient(circle, transparent 0%, var(--bg-page) 100%);
}

.intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, var(--bg-page) 80%);
    pointer-events: none;
    z-index: 4;
}

.gridMotion-container {
    gap: 1rem;
    flex: none;
    position: relative;
    width: 150vw;
    height: 150vh;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 100%;
    transform: rotate(-15deg);
    transform-origin: center center;
    z-index: 2;
}

.row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(7, 1fr);
    will-change: transform, filter;
}

.row__item {
    position: relative;
}

.row__item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.row__item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.row__item:hover .row__item-img {
    opacity: 0.9;
}

.row__item-content {
    padding: 1rem;
    text-align: center;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Ensure Hero Text stays on top */
.hero-inner {
    position: relative;
    z-index: 10;
    pointer-events: none;
    /* Allow events to pass to the grid? Or we want text interaction */
}

.hero-actions {
    pointer-events: auto;
}


.spotlight-overlay {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(168, 85, 247, 0.15),
            transparent 40%);
    transition: opacity 0.5s;
    z-index: 2;
}

.bento-box:hover .spotlight-overlay {
    opacity: 1;
}

.bento-box:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Specific Sizes (Optional override of grid if needed, otherwise equal columns) */
/* Let's keep the standard grid but span for interest */
.bento-large {
    grid-column: span 2;
}

.bento-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.02em;
}

.bento-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
}

.micro-list {
    margin-top: 20px;
}

.micro-list li {
    display: inline-block;
    font-size: 12px;
    color: #d8b4fe;
    background: rgba(168, 85, 247, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    margin: 0 6px 6px 0;
    font-weight: 600;
}

/* Visuals inside cards */
.bento-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    mask-image: linear-gradient(to top, black, transparent);
}

/* ========== EXPERTISE SECTION ========== */
.section-expertise {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.expertise-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(168, 85, 247, 0.1),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
    box-shadow: 0 20px 60px -15px rgba(168, 85, 247, 0.3);
}

.expertise-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
    transition: all 0.3s;
}

.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.expertise-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.expertise-card>p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.expertise-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expertise-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.expertise-features li:hover {
    color: white;
}

.expertise-features li svg {
    flex-shrink: 0;
    color: #a855f7;
    stroke-width: 2.5;
}

.expertise-features li span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        padding: 32px 24px;
    }

    .expertise-icon {
        width: 64px;
        height: 64px;
    }

    .expertise-card h3 {
        font-size: 22px;
    }

    .section-head h2 {
        font-size: 32px;
    }
}

/* ========== PRICING SECTION ========== */

#pricing {
    background: linear-gradient(180deg, var(--bg-page) 0%, rgba(12, 12, 29, 0.8) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

/* ========== PRICING SECTION - Glassmorphism Redesign ========== */

.pricing-card {
    position: relative;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 28px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Gradient Border Effect */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

/* Featured Card */
.pricing-featured {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(59, 130, 246, 0.06) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.pricing-featured::before {
    opacity: 0.5;
}

.pricing-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(168, 85, 247, 0.25);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.pricing-featured:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-amount {
    display: block;
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    letter-spacing: -2px;
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0 10px 28px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.2s;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: 700;
    font-size: 16px;
}

.pricing-card:hover .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 30px;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    border: none;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.btn-pricing-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
}

/* ========== MAINTENANCE SECTION ========== */

.maintenance-section {
    margin-bottom: 80px;
}

.maintenance-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.maintenance-content {
    position: relative;
    z-index: 2;
}

.maintenance-content h3 {
    font-size: 36px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.maintenance-content>p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 800px;
}

.maintenance-offer {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
}

.maintenance-offer h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.maintenance-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.maintenance-price .price-amount {
    font-size: 42px;
}

/* Service Catalog Grid */
.service-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.service-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.service-item.service-featured {
    border-color: rgba(168, 85, 247, 0.5);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.service-header h4 {
    font-size: 18px;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.service-price .price-amount {
    font-size: 28px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1;
}

.service-price .price-period {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.service-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0 8px 24px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: bold;
}

/* Important Notice Box */
.important-notice {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 12px;
    position: relative;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 16px;
}

.notice-header svg {
    flex-shrink: 0;
    stroke: #fbbf24;
}

.notice-header strong {
    color: #fbbf24;
    font-weight: 700;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notice-list li {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 24px;
    position: relative;
}

.notice-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

.notice-list li strong {
    color: white;
}

/* ========== ADD-ONS SECTION ========== */

.addons-section {
    margin-top: 60px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.addon-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.addon-category:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.03);
    transform: translateY(-4px);
}

.addon-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    gap: 16px;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-item:hover {
    padding-left: 8px;
}

.addon-name {
    font-size: 15px;
    color: var(--text-secondary);
    flex: 1;
    transition: color 0.2s;
}

.addon-item:hover .addon-name {
    color: white;
}

.addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #a855f7;
    white-space: nowrap;
}

/* ========== PROJECT CONFIGURATOR ========== */

#configurator {
    background: linear-gradient(180deg, rgba(12, 12, 29, 0.8) 0%, var(--bg-page) 100%);
}

.configurator-container {
    max-width: 1600px;
    margin: 0 auto;
}

.project-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.form-section {
    margin-bottom: 48px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

/* Package Selection */
.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.package-option {
    cursor: pointer;
}

.package-option input[type="radio"] {
    display: none;
}

/* Package Cards - Redesigned with Glassmorphism */
.package-option-card {
    position: relative;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 52px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    gap: 8px;
}

/* Gradient Border Effect on Hover */
.package-option-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.package-option:hover .package-option-card::before {
    opacity: 1;
}

.package-option:hover .package-option-card {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.15);
}

.package-option input[type="radio"]:checked+.package-option-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.25), inset 0 0 60px rgba(168, 85, 247, 0.1);
}

.package-option input[type="radio"]:checked+.package-option-card::before {
    opacity: 1;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.package-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.package-option input[type="radio"]:checked+.package-option-card .package-check {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    border-color: #a855f7;
    color: white;
    transform: scale(1.15) rotate(12deg);
}

.bestseller-mini {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    z-index: 3;
}

/* Force info-icon to be in absolute foreground */
.package-option-card .info-icon {
    z-index: 9999 !important;
}

.package-option-card .info-icon[data-tooltip]::after {
    z-index: 10000 !important;
}

.package-option-card .info-icon[data-tooltip]::before {
    z-index: 10001 !important;
}

.package-option-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: white;
    letter-spacing: -0.5px;
    z-index: 2;
}

.package-price {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px 0;
    letter-spacing: -1px;
    z-index: 2;
    line-height: 1;
}

.package-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    line-height: 1.3;
    z-index: 2;
    margin: 0;
}

/* Add-ons Selection in Form */
.addons-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.addon-group {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.addon-group-title {
    font-size: 16px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 16px;
}

.addon-checkbox {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.addon-checkbox:last-child {
    margin-bottom: 0;
}

.addon-checkbox input[type="checkbox"] {
    display: none;
}

.addon-checkbox-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.2s;
    gap: 12px;
}

.addon-checkbox:hover .addon-checkbox-label {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
}

.addon-checkbox input[type="checkbox"]:checked+.addon-checkbox-label {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

.addon-checkbox-label span:first-child {
    font-size: 14px;
    color: var(--text-secondary);
    flex: 1;
}

.addon-checkbox input[type="checkbox"]:checked+.addon-checkbox-label span:first-child {
    color: white;
    font-weight: 600;
}

.addon-checkbox-price {
    font-size: 14px;
    font-weight: 700;
    color: #a855f7;
    white-space: nowrap;
}

/* Form Inputs */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
    font-family: var(--font-main);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23a855f7' d='M1.41 0L7 5.58 12.59 0 14 1.42l-7 7-7-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group select option {
    background-color: #0f1419;
    color: white;
    padding: 12px;
}

/* Price Summary */
.form-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(168, 85, 247, 0.2);
}

.price-summary {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.summary-row span:last-child {
    font-weight: 700;
    color: white;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.summary-total {
    font-size: 18px;
    color: white;
}

.summary-total span:last-child {
    font-size: 32px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    font-style: italic;
}

.monthly-fee {
    color: #a855f7;
}

/* Submit Button */
.btn-submit {
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    padding: 16px 48px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
    white-space: nowrap;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

/* Success Message */
.success-message {
    text-align: center;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 24px;
    padding: 60px 40px;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.2);
    border: 3px solid rgb(34, 197, 94);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgb(34, 197, 94);
    margin: 0 auto 24px;
}

.success-message h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ========== ADD-ONS SECTION ========== */


.addons-section {
    margin-top: 60px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.addon-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.addon-category:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.03);
    transform: translateY(-4px);
}

.addon-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    gap: 16px;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-item:hover {
    padding-left: 8px;
}

.addon-name {
    font-size: 15px;
    color: var(--text-secondary);
    flex: 1;
    transition: color 0.2s;
}

.addon-item:hover .addon-name {
    color: white;
}

.addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #a855f7;
    white-space: nowrap;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    text-align: center;
    background: rgba(12, 12, 29, 0.5);
}

.footer-cta h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.footer-legal {
    margin-top: 60px;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .statement-text {
        font-size: 48px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    header {
        width: 100%;
        top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .header-inner {
        justify-content: space-between;
    }

    nav {
        display: none;
    }

    /* Pricing Mobile Styles */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-8px) scale(1);
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 40px;
    }

    .maintenance-card {
        padding: 32px 24px;
    }

    .maintenance-content h3 {
        font-size: 28px;
    }

    .maintenance-offer {
        padding: 24px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    /* Configurator Mobile Styles */
    .project-form {
        padding: 32px 20px;
    }

    .form-section-title {
        font-size: 20px;
    }

    .package-options {
        grid-template-columns: 1fr;
    }

    .addons-selection {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    /* Hero Mobile Responsiveness */
    .hero {
        padding: 100px 0 60px;
    }

    .eyebrow {
        font-size: 11px;
        padding: 8px 16px;
    }

    .eyebrow-icon {
        width: 14px;
        height: 14px;
    }

    .statement-text {
        font-size: clamp(36px, 12vw, 64px);
        margin-bottom: 24px;
    }

    .sub-statement {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    /* Hide floating stat cards on mobile */
    .hero-stats {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* ========== CONTACT/FOOTER SECTION ========== */
.footer-section {
    background: linear-gradient(180deg, var(--bg-page) 0%, #0a0a15 100%);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.5) 50%, transparent 100%);
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
    box-shadow: 0 20px 40px -15px rgba(168, 85, 247, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 16px;
    color: #a855f7;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a855f7;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-link:hover {
    color: #c084fc;
    gap: 12px;
}

.contact-link svg {
    transition: transform 0.2s;
}

.contact-link:hover svg {
    transform: translateX(3px);
}

.contact-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 60px 48px;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1.5fr 2fr auto;
    gap: 60px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    max-height: 100px;
    height: auto;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #a855f7;
}

/* Footer Social */
.footer-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    transform: translateY(-3px);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-made-with {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-page);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 48px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #e9d5ff;
}

.legal-content p,
.legal-content li {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 24px;
    list-style-type: disc;
}

.legal-content ul li {
    padding-left: 8px;
}

.legal-content strong {
    color: white;
    font-weight: 600;
}

.legal-content a {
    color: #a855f7;
    text-decoration: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.2s;
}

.legal-content a:hover {
    color: #c084fc;
    border-bottom-color: #c084fc;
}

/* Legal Page Footer Styling */
.legal-page footer {
    margin-top: 80px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-page footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

.legal-page footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: none;
}

.legal-page footer a:hover {
    color: #a855f7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-section {
        padding: 60px 0 30px;
    }

    .contact-header {
        margin-bottom: 48px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    /* ========== LEGAL PAGES ========== */
    .legal-page {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .legal-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .legal-content h1 {
        font-size: 42px;
        margin-bottom: 40px;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .legal-content h2 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 20px;
        color: white;
    }

    .legal-content h3 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 15px;
        color: white;
    }

    .legal-content p,
    .legal-content li {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .legal-content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .legal-content strong {
        color: white;
    }

    .legal-content a {
        color: #a855f7;
        text-decoration: underline;
    }

    .legal-content a:hover {
        color: #c084fc;
    }