/* ===========================================
   RESET & BASE STYLES
   =========================================== */

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

:root {
    /* Brand Colors */
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --dark: #0A0A0A;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #2A2A2A;
    --light: #FFFFFF;
    --gray: #999999;
    --gray-light: #CCCCCC;

    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Spacing */
    --container: 1280px;
    --spacing: clamp(1rem, 5vw, 2rem);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --glow: 0 0 40px rgba(212, 175, 55, 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

/* ===========================================
   CUSTOM CURSOR
   =========================================== */

.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.cursor {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    background: transparent;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s cubic-bezier(0.75, -0.5, 0.25, 1.5), opacity var(--transition-fast);
}

body:hover .cursor {
    transform: translate(-50%, -50%) scale(1.2);
}

a:hover ~ .cursor-follower,
button:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(1.8);
}

@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* ===========================================
   NOISE TEXTURE
   =========================================== */

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 100;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===========================================
   NAVIGATION
   =========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem var(--spacing);
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem var(--spacing);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    position: relative;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold);
    overflow: hidden;
    width: 0;
    transition: width var(--transition-smooth);
}

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

.nav-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-text:hover {
    color: var(--gold);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all var(--transition-smooth);
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem var(--spacing) 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.line-wrapper {
    display: block;
    overflow: hidden;
}

.line {
    display: block;
    animation: slideUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.line:nth-child(1) .line {
    animation-delay: 0.1s;
}

.line:nth-child(2) .line {
    animation-delay: 0.2s;
}

.line:nth-child(3) .line {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #F5E6A4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--light);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.btn-hero-secondary:hover {
    gap: 1.5rem;
    color: var(--gold);
}

.btn-hero-secondary svg {
    transition: transform var(--transition-smooth);
}

.btn-hero-secondary:hover svg {
    transform: scale(1.1);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.dashboard-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.preview-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth);
}

.preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-1 {
    top: 0;
    left: 0;
    width: 70%;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 0;
    width: 55%;
    animation: cardFloat2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    left: 15%;
    width: 45%;
    animation: cardFloat3 8s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes cardFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes cardFloat3 {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

.card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 8px;
}

.card-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.line-sm {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 60%;
}

.line-xs {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    width: 40%;
}

.card-chart {
    width: 100%;
    height: 80px;
}

.card-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.metric-icon {
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 6px;
}

.metric-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-rings {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollMove 2s ease infinite;
}

@keyframes scrollMove {
    0% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
    100% {
        opacity: 0;
        height: 40px;
    }
}

/* ===========================================
   PLATFORM SECTION
   =========================================== */

.platform {
    padding: 8rem var(--spacing);
    background: var(--dark-secondary);
    position: relative;
}

.section-container {
    max-width: var(--container);
    margin: 0 auto;
}

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

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 1rem;
}

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

.platform-feature {
    position: relative;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.platform-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.platform-feature:hover::before {
    opacity: 1;
}

.platform-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-number {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-visual {
    margin-top: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-flow,
.analytics-bars,
.mobile-mockup,
.prediction-graph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flow-node {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: nodeP ulse 2s ease infinite;
}

.flow-node:nth-child(2) {
    animation-delay: 0.3s;
}

.flow-node:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.flow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent, var(--gold));
    animation: flowMove 2s ease infinite;
}

@keyframes flowMove {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

.analytics-bars {
    justify-content: space-around;
    align-items: flex-end;
}

.bar {
    flex: 1;
    max-width: 40px;
    background: linear-gradient(to top, var(--gold), var(--gold-dark));
    border-radius: 4px 4px 0 0;
    animation: barGrow 1.5s ease infinite;
}

.bar:nth-child(2) {
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    animation-delay: 0.6s;
}

.bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes barGrow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.mobile-mockup {
    width: 120px;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.screen-line {
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.prediction-graph {
    position: relative;
}

.graph-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.graph-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: pointMove 3s ease infinite;
}

@keyframes pointMove {
    0%, 100% {
        left: 0;
    }
    50% {
        left: calc(100% - 12px);
    }
}

/* ===========================================
   FEATURES SECTION
   =========================================== */

.features {
    padding: 8rem var(--spacing);
    background: var(--dark);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.features-sidebar {
    position: sticky;
    top: 150px;
}

.features-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.features-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

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

.feature-card {
    padding: 2.5rem;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-card-icon {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

/* ===========================================
   SOLUTIONS SECTION
   =========================================== */

.solutions {
    padding: 8rem var(--spacing);
    background: var(--dark-secondary);
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.solution-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.solution-tab:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--light);
}

.solution-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.solution-panel {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.solution-panel.active {
    display: block;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-info p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.solution-list li:hover {
    background: rgba(10, 10, 10, 0.8);
    transform: translateX(8px);
}

.solution-list span {
    color: var(--light);
    font-size: 1rem;
}

.solution-visual {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-box {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background-image: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 25%, transparent 25%),
                      linear-gradient(-45deg, rgba(212, 175, 55, 0.05) 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.05) 75%),
                      linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* ===========================================
   PRICING SECTION
   =========================================== */

.pricing {
    padding: 8rem var(--spacing);
    background: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
}

.amount {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.amount.custom {
    font-size: 2.5rem;
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--light);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.pricing-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.pricing-btn.primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* ===========================================
   CTA SECTION
   =========================================== */

.cta {
    position: relative;
    padding: 10rem var(--spacing);
    background: var(--dark-secondary);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    animation: orbPulse 4s ease infinite;
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    transition: all var(--transition-smooth);
}

.form-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--light);
    outline: none;
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.form-submit:hover {
    background: var(--gold-dark);
    transform: translateX(4px);
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    padding: 4rem var(--spacing) 2rem;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
}

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

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

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer-links a {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gray);
    transition: all var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-4px);
}

/* ===========================================
   INTEGRATIONS SECTION
   =========================================== */

.integrations {
    padding: 4rem var(--spacing);
    background: var(--dark);
}

.integrations-header {
    text-align: center;
    margin-bottom: 2rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-card {
    position: relative;
    padding: 1.5rem 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.integration-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.integration-logo {
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.5rem;
    transition: color var(--transition-smooth);
}

.integration-card:hover .integration-logo {
    color: var(--gold);
}

.integration-card span {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================================
   AI FEATURES SECTION
   =========================================== */

.ai-features {
    padding: 8rem var(--spacing);
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.ai-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03), transparent 70%);
    pointer-events: none;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-card {
    position: relative;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.ai-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ai-card.featured {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
}

.ai-card.featured::before {
    opacity: 1;
}

.ai-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.ai-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition-smooth);
}

.ai-card:hover .ai-badge {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* ===========================================
   MOBILE APP SHOWCASE SECTION
   =========================================== */

.mobile-showcase {
    padding: 8rem var(--spacing);
    background: var(--dark);
}

.mobile-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-showcase-content {
    max-width: 600px;
}

.mobile-showcase-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mobile-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.mobile-feature-icon svg {
    color: var(--gold);
}

.mobile-feature-text h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.mobile-feature-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--light);
    transition: all var(--transition-smooth);
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.app-store-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-btn span {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1;
}

.app-store-btn strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin-top: 0.25rem;
}

.mobile-showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 4rem 0;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--dark-secondary);
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-smooth);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--dark);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-mockup:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
}

.phone-1 {
    z-index: 3;
    transform: translateY(0) scale(1.05);
}

.phone-2 {
    z-index: 2;
    opacity: 0.9;
}

.phone-3 {
    z-index: 1;
    opacity: 0.8;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    border-radius: 24px;
    padding: 3rem 1.5rem 1.5rem;
    overflow: hidden;
}

.screen-header {
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.screen-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--light);
}

.screen-notch {
    width: 80px;
    height: 24px;
}

.screen-icons {
    width: 60px;
}

.screen-content {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.app-card-date {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.app-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    text-align: center;
}

.quick-action-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.quick-action span {
    font-size: 0.75rem;
    color: var(--gray);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.payment-icon {
    width: 40px;
    height: 32px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 6px;
}

.payment-details {
    flex: 1;
}

.payment-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.payment-sublabel {
    font-size: 0.75rem;
    color: var(--gray);
}

.payment-button {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
}

.maintenance-request {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.request-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.request-status.completed {
    background: #4CAF50;
}

.request-status.active {
    background: var(--gold);
    animation: pulse 2s ease infinite;
}

.request-info {
    flex: 1;
}

.request-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.request-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.app-screen-header {
    position: absolute;
    top: 3rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-screen-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
}

.app-screen-time {
    font-size: 0.75rem;
    color: var(--gray);
}

.app-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.app-card-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.app-card-value {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.app-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.status-dot.green {
    background: #4CAF50;
}

.status-dot.red {
    background: #F44336;
}

.status-dot.blue {
    background: #2196F3;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.app-list-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
}

.app-list-content {
    flex: 1;
}

.app-list-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.app-list-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
}

.app-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all var(--transition-smooth);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-sidebar {
        position: static;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .mobile-showcase-visual {
        gap: 1rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        gap: 1rem;
    }

    .btn-primary span {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem var(--spacing) 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .platform,
    .features,
    .solutions,
    .pricing,
    .cta {
        padding: 4rem var(--spacing);
    }

    .form-group {
        flex-direction: column;
        border-radius: 20px;
    }

    .form-submit {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .integration-card {
        padding: 2rem 1.5rem;
    }

    .ai-card {
        padding: 2rem;
    }

    .mobile-showcase-visual {
        flex-direction: column;
        padding: 2rem 0;
    }

    .phone-mockup {
        width: 100%;
        max-width: 320px;
        height: 600px;
    }

    .phone-1,
    .phone-2,
    .phone-3 {
        transform: scale(1);
        opacity: 1;
    }

    .mobile-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-showcase-content {
        max-width: 100%;
    }

    .app-download-buttons {
        flex-direction: column;
    }

    .app-store-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (hover: none) {
    body {
        cursor: auto;
    }
}

/* Footer Offices Section */
.footer-offices {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-offices h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.established-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.office {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.office:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.office-flag {
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.office-info {
    flex-grow: 1;
}

.office strong {
    color: #D4AF37;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.office p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* AI Features Grid - Updated for 6 items */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-grid {
        grid-template-columns: 1fr;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
    }
}
