:root {
    --primary: #14b8a6;
    --primary-alt: #5eead4;
    --primary-dark: #0f766e;
    --primary-on-accent: #042f2e;
    --accent-sky: #38bdf8;
    --bg-dark: #0a101f;
    --bg-card: #111b2e;
    --bg-card-alt: #0f172a;
    --text-main: #f1f5f9;
    --text-muted: #8b9cb5;
    --text-light: #cbd5e1;
    --accent-gradient: linear-gradient(135deg, #0d9488, #22d3ee);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(148, 163, 184, 0.12);
    --glass-border-hover: rgba(20, 184, 166, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lg: 0 25px 50px rgba(2, 12, 27, 0.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .logo-text {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.03em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--primary-on-accent);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* ======================== */
/* HEADER & NAV             */
/* ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 16, 31, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-links a.btn-nav {
    color: var(--primary-on-accent) !important;
}

.nav-links a.btn-nav::after {
    display: none;
}

/* ======================== */
/* BUTTONS                  */
/* ======================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--primary-on-accent);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.28);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    text-decoration: underline;
    padding: 0.5rem 1rem;
}

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

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

.btn-sm {
    padding: 0.55rem 1.3rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-product {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.9rem;
    font-size: 0.9rem;
}

/* ======================== */
/* HERO SECTION             */
/* ======================== */
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: clamp(5.75rem, 12vw, 10rem) 0 clamp(2rem, 5vw, 3.5rem);
    min-height: auto;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-alt);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.hero-copy-block {
    max-width: 44rem;
    min-width: 0;
    width: 100%;
}

.hero-visual-block {
    width: 100%;
    max-width: min(100%, 420px);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
}

.hero-ticker-band {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 0.5rem;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.22);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 100%;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.hero h1 {
    font-size: clamp(2.15rem, 2.5vw + 1.35rem, 4.2rem);
    line-height: 1.08;
    margin-bottom: clamp(1rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero p {
    font-size: clamp(0.98rem, 1.1vw + 0.75rem, 1.15rem);
    color: var(--text-muted);
    margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
    max-width: 40rem;
    line-height: 1.65;
    overflow-wrap: break-word;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.2rem;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

.trust-icons {
    display: flex;
    gap: 0.5rem;
}

.trust-pill span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

/* Hero Visual */
.hero-visual-block {
    position: relative;
}

.mockup-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.mockup-main {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    object-fit: cover;
    aspect-ratio: 1;
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-rating {
    top: 8%;
    right: -12px;
}

.floating-card.card-certified {
    bottom: 10%;
    left: -8px;
    animation-delay: -3s;
}

.floating-card .stars {
    display: flex;
    gap: 2px;
}

.floating-card .label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ======================== */
/* SCROLL REVEAL            */
/* ======================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== */
/* HERO TICKER (in-hero)    */
/* ======================== */
.hero-ticker-band .ticker-title {
    text-align: left;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.ticker-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.ticker-wrapper {
    display: flex;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    gap: 5rem;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.hero-ticker-band .ticker-content {
    gap: 2.75rem;
}

.hero-ticker-band .ticker-content span {
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.ticker-content span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.25;
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
}

.ticker-content span:hover {
    opacity: 0.8;
    color: var(--primary-alt);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======================== */
/* STATS                    */
/* ======================== */
.stats {
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.25rem;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.stat-item {
    padding: 1.65rem 1.1rem;
    background: var(--bg-card-alt);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.stat-item--featured {
    padding: 2rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.stat-item--featured .stat-number {
    font-size: clamp(3rem, 7vw, 4.25rem);
}

.stats-grid .stat-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.stats-grid .stat-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.stats-grid .stat-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.stats-grid .stat-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .stats-grid .stat-item:nth-child(1),
    .stats-grid .stat-item:nth-child(2),
    .stats-grid .stat-item:nth-child(3),
    .stats-grid .stat-item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-alt);
    font-family: 'Inter', sans-serif;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ======================== */
/* SECTION HEADER           */
/* ======================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ======================== */
/* PRODUCTS / COLLECTIONS   */
/* ======================== */
.products {
    padding: 10rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.products-grid .product-card:nth-child(1) {
    grid-column: span 2;
}

.products-grid .product-card:nth-child(6) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
}

.products-grid .product-card:nth-child(6) .product-image-wrapper {
    aspect-ratio: 4 / 3;
}

.products-grid .product-card:nth-child(6) .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .products-grid .product-card:nth-child(1),
    .products-grid .product-card:nth-child(6) {
        grid-column: auto;
    }

    .products-grid .product-card:nth-child(6) {
        display: flex;
        flex-direction: column;
    }

    .products-grid .product-card:nth-child(6) .product-image-wrapper {
        aspect-ratio: 1;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #0c1528;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.9rem;
    background: var(--accent-gradient);
    color: var(--primary-on-accent);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.product-badge.badge-new {
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
    color: #042f2e;
}

.product-badge.badge-popular {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    color: #f8fafc;
}

.product-badge.badge-exclusive {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #ecfeff;
}

.product-info {
    padding: 1.8rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-alt);
    font-family: 'Inter', sans-serif;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

/* ======================== */
/* SHOWCASE / ABOUT         */
/* ======================== */
.showcase {
    padding: 10rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.showcase-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.showcase-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.showcase-icon {
    width: 56px;
    height: 56px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-alt);
    transition: var(--transition);
}

.showcase-item:hover .showcase-icon {
    background: rgba(20, 184, 166, 0.12);
    transform: scale(1.05);
}

.showcase-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.showcase-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ======================== */
/* PROCESS                  */
/* ======================== */
.process {
    padding: 10rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 0.5rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 0.65rem;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(20, 184, 166, 0.22) 12%,
        rgba(20, 184, 166, 0.22) 88%,
        transparent
    );
    pointer-events: none;
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.25rem;
    row-gap: 0.35rem;
    padding: 1.35rem 1.25rem 1.35rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-left: 3px solid rgba(20, 184, 166, 0.55);
    transition: var(--transition);
}

.step h3 {
    grid-column: 2;
    margin-bottom: 0;
}

.step p {
    grid-column: 2;
}

.step:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.step-num {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ======================== */
/* TESTIMONIALS             */
/* ======================== */
.testimonials {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(20, 184, 166, 0.02), transparent);
}

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

.testimonial-card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr minmax(0, 200px);
    gap: 1.5rem 2rem;
    align-items: start;
}

.testimonial-card--lead .testimonial-stars {
    grid-column: 1;
}

.testimonial-card--lead .quote {
    grid-column: 1;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.testimonial-card--lead .client-info {
    grid-column: 2;
    grid-row: 1 / span 3;
    flex-direction: column;
    align-items: flex-start;
    justify-self: end;
}

@media (max-width: 768px) {
    .testimonial-card--lead {
        display: flex;
        flex-direction: column;
    }

    .testimonial-card--lead .client-info {
        flex-direction: row;
        align-items: center;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.client-info div {
    display: flex;
    flex-direction: column;
}

.client-info strong {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--primary-alt);
    font-family: 'Inter', sans-serif;
}

/* ======================== */
/* FAQ                      */
/* ======================== */
.faq {
    padding: 10rem 0;
}

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

@media (min-width: 900px) {
    .faq-accordion {
        max-width: 1100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.25rem;
        align-items: start;
    }

    .faq-accordion .faq-item {
        margin-bottom: 0;
    }
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(20, 184, 166, 0.12);
}

.faq-question {
    padding: 1.4rem 2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
    color: var(--primary-alt);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 300px;
}

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

.faq-item.active {
    border-color: var(--glass-border-hover);
}

/* ======================== */
/* CONTACT                  */
/* ======================== */
.contact {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(20, 184, 166, 0.03));
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: stretch;
    max-width: 800px;
    margin-inline: auto;
}

.contact-text {
    text-align: center;
}

.contact-text .contact-info,
.contact-text .trust-badges-contact {
    align-items: center;
    justify-content: center;
}

.contact-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-light);
}

.trust-badges-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.contact-form {
    width: 100%;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 0.9rem 1.3rem;
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-error {
    display: none;
    color: #EF5350;
    font-size: 0.78rem;
    margin-top: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #EF5350;
}

.form-group.error .form-error {
    display: block;
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.form-note a {
    color: var(--primary-alt);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ======================== */
/* FOOTER                   */
/* ======================== */
.footer {
    padding: 6rem 0 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem 3.5rem;
    padding-bottom: 4rem;
    align-items: start;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0;
    max-width: 280px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-alt);
    padding-left: 4px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

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

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

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

/* ======================== */
/* FORM TOAST (notificación) */
/* ======================== */
.form-toast {
    position: fixed;
    top: 5.5rem;
    left: 50%;
    z-index: 2500;
    max-width: min(28rem, calc(100vw - 2rem));
    width: 100%;
    transform: translateX(-50%) translateY(-0.75rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
        visibility 0.4s;
}

.form-toast.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.form-toast-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.15rem 1.1rem 1.25rem;
    background: linear-gradient(145deg, rgba(17, 27, 46, 0.97), rgba(15, 23, 42, 0.98));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20, 184, 166, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.form-toast--success .form-toast-inner {
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: var(--shadow-lg), 0 0 32px rgba(20, 184, 166, 0.12);
}

.form-toast--error .form-toast-inner {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow: var(--shadow-lg), 0 0 28px rgba(251, 191, 36, 0.08);
}

.form-toast-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-toast-icon svg {
    width: 100%;
    height: 100%;
}

.form-toast--success .form-toast-icon {
    color: var(--primary-alt);
}

.form-toast--error .form-toast-icon {
    color: #fcd34d;
}

.form-toast-message {
    flex: 1;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-light);
}

.form-toast-close {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin: -0.25rem -0.15rem -0.25rem 0;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-toast-close:hover {
    color: var(--text-main);
    background: var(--glass-bg);
}

@media (max-width: 768px) {
    .form-toast {
        top: 4.5rem;
        max-width: calc(100vw - 1.25rem);
    }
}

/* ======================== */
/* COOKIE BANNER            */
/* ======================== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    z-index: 2000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text-side {
    flex: 1;
}

.cookie-text-side p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text-side a {
    color: var(--primary-alt);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

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

.hidden {
    display: none !important;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.hidden {
    display: none !important;
}

.cookie-modal-content {
    background: var(--bg-card-alt);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.cookie-modal-header h3 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--text-main);
}

.cookie-modal-body {
    padding: 1.5rem 2rem;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.cookie-always-on {
    font-size: 0.75rem;
    color: var(--primary-alt);
    font-weight: 500;
}

.cookie-category p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: var(--transition);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.cookie-modal-footer .btn {
    width: 100%;
}

/* ======================== */
/* MOBILE TOGGLE            */
/* ======================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ======================== */
/* LANGUAGE SWITCHER        */
/* ======================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 700;
    padding: 2px 6px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

.lang-btn.active {
    color: var(--primary-alt);
    background: rgba(20, 184, 166, 0.12);
    border-radius: var(--radius-sm);
}

.lang-btn:hover {
    color: var(--primary-alt);
}

/* ======================== */
/* V3 SERVICE ICONS         */
/* ======================== */
.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.02));
    aspect-ratio: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ======================== */
/* V3 HERO DASHBOARD SVG    */
/* ======================== */
.dashboard-svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dashboard {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (min-width: 1100px) {
    .hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, min(38vw, 420px));
        grid-template-areas:
            "copy visual"
            "ticker ticker";
        gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 3rem);
        align-items: center;
    }

    .hero-copy-block {
        grid-area: copy;
        max-width: min(36rem, 100%);
        min-width: 0;
    }

    .hero-visual-block {
        grid-area: visual;
        max-width: 100%;
        width: 100%;
        min-width: 0;
        margin: 0;
        align-self: center;
    }

    .hero-ticker-band {
        grid-area: ticker;
        min-width: 0;
    }

    .hero-ticker-band .ticker-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero .badge {
        font-size: 0.72rem;
        padding: 0.45rem 0.95rem;
        letter-spacing: 1.2px;
    }

    .trust-pill span {
        font-size: 0.76rem;
        line-height: 1.45;
        text-align: center;
    }

    .hero-ticker-band {
        padding-top: 1rem;
    }

    .hero-ticker-band .ticker-title {
        letter-spacing: 0.12em;
        line-height: 1.5;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .hero-ticker-band .ticker-content span {
        font-size: 0.88rem;
    }

    .hero-ticker-band .ticker-content {
        gap: clamp(1.1rem, 4.5vw, 2.75rem);
    }
}

@media (max-width: 1099px) {
    .mockup-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .mockup-container .hero-dashboard {
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }

    .mockup-container .floating-card {
        position: static;
        animation: none;
        width: 100%;
        max-width: min(20rem, 100%);
        justify-content: center;
        padding: 0.65rem 1rem;
    }

    .mockup-container .floating-card .label {
        white-space: normal;
        text-align: center;
        max-width: none;
        line-height: 1.35;
    }

    .trust-pill {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

/* ======================== */
/* RESPONSIVE               */
/* ======================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: clamp(5.5rem, 14vw, 9rem) 0 clamp(2.5rem, 6vw, 5rem);
    }

    .hero h1 {
        font-size: clamp(2.15rem, 5vw + 0.75rem, 3.5rem);
    }

    .hero-inner {
        text-align: center;
        gap: clamp(1.35rem, 3.5vw, 2.5rem);
    }

    .hero-copy-block {
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-btns {
        justify-content: center;
        margin-inline: auto;
        max-width: 100%;
        min-width: 0;
    }

    .trust-pill {
        justify-content: center;
        margin-inline: auto;
    }

    .trust-pill span {
        text-align: center;
    }

    .hero p {
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-visual-block {
        max-width: min(450px, 100%);
        margin-inline: auto;
    }

    .hero-ticker-band .ticker-title {
        text-align: center;
    }

    .hero-ticker-band .ticker-content {
        gap: clamp(1.1rem, 4vw, 2.75rem);
    }

    .stats-grid {
        max-width: 560px;
    }

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

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

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

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

    .contact-container {
        max-width: 720px;
    }

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

@media (max-width: 1099px) and (min-width: 769px) {
    .hero-visual-block {
        max-width: min(400px, min(92vw, 100%));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .nav-links a::after {
        display: none;
    }

    .lang-switcher {
        justify-content: center;
    }

    .section-header h2 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .process-steps {
        max-width: 100%;
        padding-left: 0;
    }

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

    .contact-text h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.2rem;
    }

    .cookie-btns {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-badges-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        padding-top: clamp(5rem, 18vw, 6.5rem);
    }

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

    .hero-btns .btn {
        width: 100%;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonial-card,
    .showcase-item {
        padding: 2rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .stats {
        padding: 4rem 0;
    }

    .products,
    .showcase,
    .process,
    .faq,
    .contact,
    .testimonials {
        padding: 5rem 0;
    }

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