/* ===================================
   Symmetrix - E-Commerce Landing Page
   CSS Stylesheet
   =================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Colors */
    --background: hsl(0, 0%, 4%);
    --foreground: hsl(40, 10%, 92%);
    --card: hsl(0, 0%, 7%);
    --card-foreground: hsl(40, 10%, 92%);
    --primary: hsl(41.54deg 91.74% 46.41%);
    --primary-foreground: hsl(0, 0%, 4%);
    --secondary: hsl(0, 0%, 12%);
    --muted: hsl(0, 0%, 14%);
    --muted-foreground: #b7b7b7;
    --border: hsl(0, 0%, 18%);
    --destructive: hsl(36deg 76.68% 52.73%);
    --ring: hsl(32, 95%, 55%);
    --radius: 0.5rem;

    /* Custom tokens */
    --amber: hsl(32, 95%, 55%);
    --amber-glow: hsl(32, 95%, 65%);
    --amber-dark: hsl(32, 95%, 40%);
    --charcoal: hsl(0, 0%, 8%);
    --charcoal-light: hsl(0, 0%, 12%);
    --cream: hsl(40, 20%, 90%);

    /* Gradients */
    --gradient-amber: linear-gradient(135deg, hsl(33.23deg 82.68% 44.83%) 0%, hsl(41.54deg 84.86% 39.19%) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(0, 0%, 4%) 0%, hsl(0, 0%, 8%) 100%);
    --gradient-glow: radial-gradient(ellipse at center, hsla(32, 95%, 55%, 0.15) 0%, transparent 70%);
    --gradient-hero: linear-gradient(180deg, hsl(0, 0%, 4%) 0%, hsl(0, 0%, 6%) 50%, hsl(0, 0%, 4%) 100%);

    /* Shadows */
    --shadow-amber: 0 0 60px hsla(32, 95%, 55%, 0.3);
    --shadow-glow: 0 0 100px hsla(32, 95%, 55%, 0.2);
    --shadow-card: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);

    /* Typography */
    --font-display: 'Instrument Serif', serif;
    --font-body: 'Space Grotesk', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.1;
	font-weight:400;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-center { text-align: center; }
.italic { font-style: italic; }

.text-gradient {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: inline;
    }
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: hsla(0, 0%, 4%, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--foreground);
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: var(--foreground);
    transform: translateY(-1px);
}

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

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

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: transform 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-hero {
    background: var(--gradient-amber);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    box-shadow: var(--shadow-amber);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 80px hsla(32, 95%, 55%, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn.group .arrow-icon {
    transition: transform 0.3s ease;
}

.btn.group:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===================================
   Section Styles
   =================================== */
.section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    background-size: cover;
    background-position: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: var(--gradient-glow);
    opacity: 0.4;
}

.hero-line-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(32, 95%, 55%, 0.3), transparent);
}

/* Animated background lines */
.animated-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.animated-line {
    position: absolute;
    height: 1px;
    left: -100%;
    right: -100%;
    background: linear-gradient(to right, transparent, hsla(32, 95%, 55%, 0.2), transparent);
    animation: lineMove 8s linear infinite;
}

.animated-line:nth-child(2) { animation-duration: 10s; animation-delay: 0.5s; }
.animated-line:nth-child(3) { animation-duration: 12s; animation-delay: 1s; }
.animated-line:nth-child(4) { animation-duration: 14s; animation-delay: 1.5s; }
.animated-line:nth-child(5) { animation-duration: 16s; animation-delay: 2s; }

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: hsla(0, 0%, 7%, 0.5);
    backdrop-filter: blur(4px);
    margin-bottom:1rem;
}

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

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

.hero-tagline span:last-child {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

.hero-headlines {
    max-width: 1024px;
    margin: 0 auto 2rem;
}

.hero-headlines h1 {
    font-size: clamp(2.2rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-headlines h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
    color: hsla(40, 10%, 92%, 0.9);
}

.hero-subtitle {
    max-width: 672px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    /*color: var(--muted-foreground);*/
	color:#b7b7b7;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

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

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-cta-note {
    font-size: 0.875rem;
    /*color: var(--muted-foreground);*/
	color:#b7b7b7;
}

.hero-stats {
    margin-top:3.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border-radius: 9999px;
    border: 2px solid hsla(0, 0%, 55%, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    border-radius: 9999px;
    background: var(--primary);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* Grain texture overlay */
.grain {
    position: relative;
}

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

/* ===================================
   Pain Section
   =================================== */
.pain-section {
    padding: 8rem 0;
}

.pain-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pain-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pain-intro {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: default;
}

.pain-point:hover {
    border-color: hsla(32, 95%, 55%, 0.5);
    transform: translateX(10px);
}

.pain-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: hsla(0, 84.2%, 60.2%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon svg {
    color: var(--destructive);
}

.pain-point p {
    color: var(--foreground);
    font-family: var(--font-body);
}

.pain-statement {
    margin-top: 5rem;
    text-align: center;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.pain-statement p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
}

/* ===================================
   Positioning Section
   =================================== */
.positioning-section {
    padding: 6rem 0;
}

.positioning-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), var(--card), var(--background));
}

.positioning-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.positioning-content {
    position: relative;
    text-align: center;
}

.positioning-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 0.5rem;
}

.positioning-subtitle {
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.positioning-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.positioning-pills {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1024px;
    margin: 0 auto;
}

.pill {
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: hsla(0, 0%, 7%, 0.5);
    backdrop-filter: blur(4px);
    color: var(--foreground);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.pill:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.positioning-statement {
    margin-top: 5rem;
    padding: 2rem 3rem;
    border-radius: 1rem;
    border: 1px solid hsla(32, 95%, 55%, 0.2);
    background: hsla(0, 0%, 7%, 0.3);
    backdrop-filter: blur(4px);
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.positioning-statement p {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 6rem 0 4rem;
}

.services-scroll-container {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 3rem 0;
    padding: 1rem 0;
}

.services-scroll-container::-webkit-scrollbar {
    display: none;
}

.services-track {
    display: flex;
    gap: 2rem;
    padding: 0 1.5rem;
    width: max-content;
}

@media (min-width: 768px) {
    .services-track {
        padding-left: 6rem;
    }
}

.service-card {
    flex-shrink: 0;
    width: 85vw;
    max-width: 400px;
    height: auto;
    min-height: 420px;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .service-card {
        width: 45vw;
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .service-card {
        width: 35vw;
        max-width: 500px;
    }
}

.service-card:hover {
    border-color: hsla(32, 95%, 55%, 0.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.gradient-1 { background: linear-gradient(135deg, var(--primary), hsl(33.23deg 95% 40%)); }
.gradient-2 { background: linear-gradient(135deg, var(--primary), hsl(33.23deg 95% 40%)); }
.gradient-3 { background: linear-gradient(135deg, var(--primary), hsl(33.23deg 95% 40%)); }
.gradient-4 { background: linear-gradient(135deg, var(--primary), hsl(33.23deg 95% 40%)); }

.service-icon svg {
    color: var(--primary-foreground);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 1.75rem;
    }
}

.service-desc {
    color: var(--muted-foreground);
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsla(40, 10%, 92%, 0.8);
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: hsla(0, 0%, 18%, 0.5);
    transition: color 0.3s ease;
    margin-top: auto;
}

.service-card:hover .service-number {
    color: hsla(32, 95%, 55%, 0.2);
}

.scroll-progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.scroll-progress-track {
    width: 80px;
    height: 2px;
    background: hsla(32, 95%, 55%, 0.3);
    border-radius: 9999px;
    overflow: hidden;
}

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

/* ===================================
   Showcase Section
   =================================== */
.showcase-section {
    padding: 8rem 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-mockup {
    perspective: 1000px;
}

.mockup-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-frame:hover {
    transform: rotateX(0deg);
}

.mockup-frame img {
    width: 100%;
    height: auto;
}

/* ===================================
   Differentiators Section
   =================================== */
.differentiators-section {
    padding: 8rem 0;
}

.differentiators-header {
    margin-bottom: 5rem;
}

.differentiators-grid {
    display: grid;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.differentiator-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.5s ease;
}

.differentiator-card:hover {
    border-color: hsla(32, 95%, 55%, 0.5);
    transform: translateY(-5px);
}

.differentiator-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.differentiator-card:hover .differentiator-glow {
    opacity: 0.5;
}

.differentiator-content {
    position: relative;
    z-index: 10;
}

.differentiator-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: hsla(32, 95%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.differentiator-card:hover .differentiator-icon {
    background: hsla(32, 95%, 55%, 0.2);
}

.differentiator-icon svg {
    color: var(--primary);
}

.differentiator-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.differentiator-content p {
    color: var(--muted-foreground);
    font-family: var(--font-body);
    line-height: 1.7;
}

.differentiator-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom left, hsla(32, 95%, 55%, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.differentiator-card:hover .differentiator-corner {
    opacity: 1;
}

.comparison-strip {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .comparison-strip {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
}

.comparison-item.negative {
    color: var(--muted-foreground);
}

.comparison-item.negative svg {
    color: var(--destructive);
}

.comparison-item.positive {
    color: var(--foreground);
}

.comparison-item.positive svg {
    color: var(--primary);
}

/* ===================================
   Urgency Section
   =================================== */
.urgency-section {
    padding: 8rem 0;
}

.urgency-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(0, 84.2%, 60.2%, 0.05), rgba(0,0,0,0.5), var(--background));
}

.urgency-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(0, 84.2%, 60.2%, 0.3), transparent);
}

.urgency-content {
    position: relative;
    max-width: 1092px;
    margin: 0 auto;
    text-align: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid hsla(0, 84.2%, 60.2%, 0.3);
    background: hsla(0, 84.2%, 60.2%, 0.1);
    margin-bottom: 2rem;
}

.urgency-badge svg {
    color: var(--destructive);
}

.urgency-badge span {
    font-size: 0.875rem;
    color: var(--destructive);
    font-family: var(--font-body);
}

.urgency-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.urgency-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .urgency-items {
        flex-direction: row;
        justify-content: center;
    }
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.urgency-item:hover {
    transform: scale(1.02);
    border-color: hsla(0, 84.2%, 60.2%, 0.5);
}

.urgency-item svg {
    color: var(--destructive);
}

.urgency-item span {
    font-family: var(--font-body);
    color: var(--foreground);
}

.urgency-statement {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsla(32, 95%, 55%, 0.3);
    background: hsla(0, 0%, 7%, 0.5);
    backdrop-filter: blur(4px);
}

.urgency-statement p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 8rem 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), var(--card), var(--background));
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: var(--gradient-glow);
    opacity: 0.4;
}

.cta-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(32, 95%, 55%, 0.3), transparent);
}

.cta-content {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    font-family: var(--font-body);
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-wrapper {
    margin-bottom: 3rem;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    color: var(--primary);
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
}

/* ===================================
   Footer
   =================================== */
.footer {
    position: relative;
    padding: 4rem 0;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
}

.footer-tagline {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-tagline p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger animations for child elements */
.fade-in[data-delay="0.1"] { transition-delay: 0.1s; }
.fade-in[data-delay="0.2"] { transition-delay: 0.2s; }
.fade-in[data-delay="0.3"] { transition-delay: 0.3s; }
.fade-in[data-delay="0.4"] { transition-delay: 0.4s; }
.fade-in[data-delay="0.5"] { transition-delay: 0.5s; }
.fade-in[data-delay="0.6"] { transition-delay: 0.6s; }
.fade-in[data-delay="0.7"] { transition-delay: 0.7s; }
.fade-in[data-delay="0.8"] { transition-delay: 0.8s; }
.fade-in[data-delay="1"] { transition-delay: 1s; }
.fade-in[data-delay="1.2"] { transition-delay: 1.2s; }

/* Custom Style */
.mainlogocls{width:200px;}
.hero.grain{overflow:hidden;}
.section.pain-section, .cta-section{background-image:url('../images/bg01.jpg'); background-size:cover; 
background-position:bottom left; background-repeat:no-repeat; padding:6rem 0;}
.positioning-section{background-image:url('../images/bg04.jpg'); background-size:cover; 
background-position:bottom left; background-repeat:no-repeat;}

.showcase-section{padding:6rem 0;}
.service-card-one{}

.showcase-section .showcase-mockup{width:1000px; margin:0 auto;}
.services-section, .differentiators-section{background-image:url('../images/bg02.jpg'); background-size:cover; 
background-position:bottom left; background-repeat:no-repeat; padding:6rem 0;}

.services-track{width:100%; gap:1rem; justify-content:center; padding:0;}
.service-card{width:23%; max-width:23%; padding:2rem 1.2rem 1.2rem;}
.services-section{padding-bottom:3.4rem;}
.urgency-section{padding:6rem 0; background-image:url('../images/bg05.jpg'); background-size:cover; 
background-position:bottom left; background-repeat:no-repeat;}
.footerlogocls{width:180px;}

.nav-desktop{position: relative;
    left: -16px;}
.footer-nav{position: relative;
    right: -28px;}	
	
.btn.btn-hero{color:#fff;}	
.nav-link{color:#fff;}

.positioning-pills .pill{font-size:18px;}
.hero-subtitle{color:#fff;}
.hero-bg{background-repeat:no-repeat;}
.saleswebone{width:30px;}
.shouldnotcls{color:#f29d00;}

.cta-button-wrapper ul{padding:0; margin:0; list-style-type:none;}
.cta-button-wrapper ul li{display:inline-block; padding:0 2px;}
.cta-button-wrapper ul li a{width:260px;}
.urgency-item{width:100%;}
.cta-button-wrapper ul li{margin-bottom:10px;}
.navbar .nav-cta a{text-transform:uppercase;}

.customheroseccls{position:relative;}
.hero-gradient{
    background: linear-gradient(transparent, #000), linear-gradient(50deg, #000 20%, rgba(153, 41, 234, .5));
    content: "";
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.customheroseccls video
 {
    background-color: transparent;
    cursor: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    right: 0;
    z-index: -1;
}

.customheroseccls video, .customheroseccls:before {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.owl-theme .owl-dots .owl-dot span{width:5px; height:5px;}
.owl-carousel .owl-item img.mainecomimgcls{border-radius:1rem;}

.ecomsingle{width:100%; padding:1.25rem; border-radius:1rem; background:var(--card); 
border:1px solid var(--border);}
.ecomsingle p{text-align:center;display:inline-flex;justify-content:center;width:100%;align-items:center;padding-top:1rem; font-size:16px; color:#fff;}
.ecomsingle svg{width:20px;}





