/* ==========================================
   EDGIFY Digital - Premium Landing Page Styles
   Clean Dark Theme - Minimal & Professional
   ========================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Page */
    --page-bg: #000000;
    --page-text: #f5f5f5;
    --page-text-secondary: #a3a3a3;
    --page-text-muted: #666666;

    /* Cards */
    --card-bg: rgba(255, 255, 255, 0.035);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(255, 255, 255, 0.16);

    /* Inputs */
    --input-bg: rgba(255, 255, 255, 0.04);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus-border: rgba(255, 255, 255, 0.25);
    --input-focus-bg: rgba(255, 255, 255, 0.06);
    --placeholder: #525252;

    /* Accent (subtle) */
    --color-accent: #3b82f6;
    --color-accent-light: #60a5fa;
    --color-green: #10b981;
    --color-green-light: #34d399;
    --color-error: #ef4444;
    --color-warning: #FBBF24;

    /* Divider */
    --divider: rgba(255, 255, 255, 0.08);

    /* Shadows */
    --shadow-card: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--page-text-secondary);
    background-color: var(--page-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--page-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--page-text);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--page-text);
    line-height: 1.15;
    font-weight: 700;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--page-text);
    color: var(--page-bg);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 14px;
}
.skip-link:focus {
    top: 16px;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn--primary {
    background: var(--page-text);
    color: var(--page-bg);
    border-color: var(--page-text);
}
.btn--primary:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
    color: var(--page-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn--outline {
    background: transparent;
    color: var(--page-text);
    border-color: rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    color: var(--page-text);
}

.btn--ghost {
    background: transparent;
    color: var(--page-text-secondary);
    border-color: transparent;
}
.btn--ghost:hover {
    color: var(--page-text);
    background: rgba(255, 255, 255, 0.04);
}

.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 16px 40px; font-size: 16px; }
.btn--block { width: 100%; }

/* ==================== SECTION HELPERS ==================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--page-text-secondary);
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--page-text);
}

.section-subtitle {
    font-size: 17px;
    color: var(--page-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header--scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--divider);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header__logo {
    flex-shrink: 0;
}

.logo-svg {
    height: 36px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--page-text-secondary);
    transition: all var(--transition-fast);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--page-text);
    background: rgba(255, 255, 255, 0.06);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--page-text-secondary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.lang-switcher__btn:hover {
    border-color: var(--card-border-hover);
    color: var(--page-text);
    background: rgba(255, 255, 255, 0.06);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: #111111;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lang-switcher__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__option {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--page-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-switcher__option:hover,
.lang-switcher__option.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--page-text);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--page-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav__link {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--page-text);
}

.mobile-nav__cta {
    margin-top: 16px;
    max-width: 280px;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Subtle dot pattern background instead of gradient orbs */
.hero__orb {
    display: none;
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--page-text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__badge svg {
    color: var(--color-accent-light);
}

.hero__title {
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--page-text);
}

.hero__title-gradient {
    color: var(--page-text);
    /* No gradient - just clean white */
}

.hero__subtitle {
    font-size: 17px;
    color: var(--page-text-muted);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--page-text-muted);
}

.hero__stat svg {
    color: var(--color-green-light);
}

/* Hero Visual / Mockup */
.hero__visual {
    position: relative;
}

.hero__mockup {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: float 8s ease-in-out infinite;
}

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

.hero__mockup-screen {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Dashboard Mockup */
.mockup-dashboard__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--divider);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot--red { background: #EF4444; }
.mockup-dot--yellow { background: #FBBF24; }
.mockup-dot--green { background: #22C55E; }

.mockup-dashboard__url {
    margin-left: 12px;
    font-size: 11px;
    color: var(--page-text-muted);
}

.mockup-dashboard__body {
    display: flex;
    min-height: 280px;
}

.mockup-dashboard__sidebar {
    width: 80px;
    padding: 16px 12px;
    border-right: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
}
.mockup-line--short { width: 50%; }
.mockup-line--medium { width: 75%; }
.mockup-line--long { width: 100%; }

.mockup-dashboard__main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-dashboard__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-card {
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--page-text);
}

.mockup-card__label {
    font-size: 9px;
    color: var(--page-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}
.mockup-card__value {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    display: block;
    color: var(--page-text);
}
.mockup-card__chart {
    margin-top: 4px;
}
.mockup-card__chart svg {
    width: 100%;
    height: 20px;
}

.mockup-dashboard__chart-main svg {
    width: 100%;
    height: auto;
}

/* Floating Elements */
.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--page-text);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero__float--1 {
    top: 10%;
    right: -10px;
    animation: float 5s ease-in-out infinite;
}
.hero__float--2 {
    bottom: 25%;
    left: -20px;
    animation: float 6s ease-in-out infinite 1s;
}
.hero__float--3 {
    bottom: 5%;
    right: 10%;
    animation: float 7s ease-in-out infinite 2s;
}

.hero__float svg {
    color: var(--page-text-secondary);
}

/* ==================== LOGO CLOUD ==================== */
.logo-cloud {
    padding: 48px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    overflow: hidden;
}

.logo-cloud__text {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--page-text-muted);
    margin-bottom: 28px;
}

.logo-cloud__track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-cloud__slider {
    display: flex;
    gap: 60px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

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

.logo-cloud__item {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--page-text-muted);
    opacity: 0.25;
    transition: opacity var(--transition-base);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.logo-cloud__item:hover {
    opacity: 0.5;
}

/* ==================== STATS ==================== */
.stats {
    padding: 80px 0;
    border-bottom: 1px solid var(--divider);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats__item {
    text-align: center;
    padding: 36px 16px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all var(--transition-slow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stats__item:hover {
    border-color: var(--card-border-hover);
    background: var(--card-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--shadow-card);
}

.stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--page-text-secondary);
    margin-bottom: 16px;
}

.stats__number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--page-text);
    line-height: 1;
}

.stats__suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--page-text-secondary);
}

.stats__label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--page-text-muted);
}

/* ==================== SERVICES ==================== */
.services {
    padding: var(--section-padding);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services__card {
    position: relative;
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.services__card:hover {
    border-color: var(--card-border-hover);
    background: var(--card-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--shadow-card);
}

.services__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--page-text-secondary);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.services__card:hover .services__card-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--card-border-hover);
    color: var(--page-text);
}

.services__card-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.services__card-desc {
    font-size: 15px;
    color: var(--page-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.services__card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--page-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.services__card-link::after {
    content: '\2192';
    transition: transform var(--transition-fast);
}

.services__card-link:hover {
    color: var(--page-text);
}

.services__card-link:hover::after {
    transform: translateX(4px);
}

/* ==================== SHOWCASE ==================== */
.showcase {
    padding: var(--section-padding);
    border-top: 1px solid var(--divider);
}

.showcase__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.showcase__block:last-child {
    margin-bottom: 0;
}

.showcase__block--reverse {
    direction: rtl;
}

.showcase__block--reverse > * {
    direction: ltr;
}

.showcase__title {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.showcase__text {
    font-size: 16px;
    color: var(--page-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.showcase__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--page-text-secondary);
}

.showcase__list li svg {
    flex-shrink: 0;
    color: var(--color-green-light);
}

.showcase__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.showcase__visual img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
    opacity: 0.85;
}

.showcase__visual:hover img {
    transform: scale(1.03);
    opacity: 1;
}

/* ==================== PROCESS ==================== */
.process {
    padding: var(--section-padding);
    border-top: 1px solid var(--divider);
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process__line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--divider);
}

.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process__number {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--page-text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--page-text-secondary);
    margin-bottom: 20px;
    transition: all var(--transition-base);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.process__step:hover .process__icon {
    border-color: var(--card-border-hover);
    background: var(--card-bg-hover);
    color: var(--page-text);
    transform: scale(1.08);
}

.process__title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process__desc {
    font-size: 14px;
    color: var(--page-text-muted);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: var(--section-padding);
    border-top: 1px solid var(--divider);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonials__card {
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.testimonials__card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--shadow-card);
}

.testimonials__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonials__quote {
    font-size: 15px;
    color: var(--page-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--card-border);
}

.testimonials__name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--page-text);
}

.testimonials__role {
    font-size: 13px;
    color: var(--page-text-muted);
}

/* ==================== PRICING ==================== */
.pricing {
    padding: var(--section-padding);
    border-top: 1px solid var(--divider);
}

.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing__toggle-label {
    font-size: 14px;
    color: var(--page-text-muted);
    font-weight: 500;
}

.pricing__toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    padding: 0;
    font-family: var(--font-body);
    transition: all var(--transition-base);
}

.pricing__toggle-switch[aria-checked="true"] {
    background: var(--page-text);
    border-color: var(--page-text);
}

.pricing__toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--page-text);
    transition: transform var(--transition-base);
}

.pricing__toggle-switch[aria-checked="true"] .pricing__toggle-knob {
    transform: translateX(24px);
    background: var(--page-bg);
}

.pricing__toggle-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-green-light);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing__card {
    position: relative;
    padding: 36px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pricing__card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
}

.pricing__card--popular {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pricing__card--popular:hover {
    transform: scale(1.02) translateY(-2px);
}

.pricing__card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: var(--page-text);
    color: var(--page-bg);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing__card-header {
    margin-bottom: 24px;
}

.pricing__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--page-text-secondary);
    margin-bottom: 16px;
}

.pricing__card-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.pricing__card-desc {
    font-size: 14px;
    color: var(--page-text-muted);
}

.pricing__card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--divider);
}

.pricing__card-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--page-text);
}

.pricing__card-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--page-text);
    line-height: 1;
}

.pricing__card-period {
    font-size: 14px;
    color: var(--page-text-muted);
    margin-left: 4px;
}

.pricing__card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing__card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--page-text-secondary);
}

.pricing__card-features li svg {
    flex-shrink: 0;
    color: var(--color-green-light);
}

.pricing__note {
    text-align: center;
    font-size: 14px;
    color: var(--page-text-muted);
    margin-top: 32px;
}

/* ==================== FAQ ==================== */
.faq {
    padding: var(--section-padding);
    border-top: 1px solid var(--divider);
}

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

.faq__item {
    border-bottom: 1px solid var(--divider);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--page-text);
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--page-text-secondary);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--page-text-muted);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq__answer p {
    font-size: 15px;
    color: var(--page-text-muted);
    line-height: 1.8;
}

.faq__cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.faq__cta p {
    font-size: 16px;
    color: var(--page-text-muted);
}

/* ==================== CONTACT ==================== */
.contact {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--divider);
}

.contact__bg {
    display: none;
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__title {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact__text {
    font-size: 16px;
    color: var(--page-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--page-text-secondary);
}

.contact__detail svg {
    flex-shrink: 0;
    color: var(--page-text-muted);
    margin-top: 2px;
}

.contact__detail a {
    color: var(--page-text-secondary);
}

.contact__detail a:hover {
    color: var(--page-text);
}

/* Contact Form */
.contact__form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact__form-group {
    margin-bottom: 20px;
}

.contact__form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--page-text-secondary);
    margin-bottom: 8px;
}

.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--page-text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition-base);
    outline: none;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
    color: var(--placeholder);
}

.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
    border-color: var(--input-focus-border);
    background: var(--input-focus-bg);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.contact__form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact__form-group select option {
    background: #111111;
    color: var(--page-text);
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form-group.error input,
.contact__form-group.error select,
.contact__form-group.error textarea {
    border-color: var(--color-error);
}

.contact__form-error {
    display: none;
    font-size: 13px;
    color: var(--color-error);
    margin-top: 6px;
}

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

.contact__form-submit {
    margin-top: 8px;
}

.contact__form-note {
    text-align: center;
    font-size: 13px;
    color: var(--page-text-muted);
    margin-top: 12px;
}

.contact__form-success {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.95);
    border-radius: var(--radius-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 36px;
}

.contact__form-success.visible {
    opacity: 1;
    visibility: visible;
}

.contact__form-success h3 {
    font-size: 24px;
}

.contact__form-success p {
    color: var(--page-text-muted);
}

.contact__form-success svg {
    color: var(--color-green-light);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--divider);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo svg {
    height: 32px;
    width: auto;
}

.footer__tagline {
    font-size: 14px;
    color: var(--page-text-muted);
    margin: 16px 0 20px;
    line-height: 1.6;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--page-text-muted);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--card-border-hover);
    color: var(--page-text);
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--page-text);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: var(--page-text-muted);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--page-text);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--divider);
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-size: 13px;
    color: var(--page-text-muted);
}

.footer__badges {
    display: flex;
    gap: 12px;
}

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--page-text-muted);
    padding: 4px 10px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
}

.footer__badge svg {
    color: var(--color-green-light);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--divider);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner__text h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cookie-banner__text p {
    font-size: 13px;
    color: var(--page-text-muted);
    line-height: 1.5;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__link {
    font-size: 12px;
    color: var(--page-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    width: 100%;
    text-align: center;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cookie-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cookie-modal__content {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: #111111;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.cookie-modal.visible .cookie-modal__content {
    transform: translateY(0);
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--divider);
}

.cookie-modal__header h3 {
    font-size: 18px;
}

.cookie-modal__close {
    background: none;
    border: none;
    color: var(--page-text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.cookie-modal__close:hover {
    color: var(--page-text);
}

.cookie-modal__body {
    padding: 24px;
}

.cookie-modal__category {
    padding: 16px 0;
    border-bottom: 1px solid var(--divider);
}

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

.cookie-modal__category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cookie-modal__category-header h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.cookie-modal__category-header p {
    font-size: 13px;
    color: var(--page-text-muted);
}

.cookie-modal__always-on {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-green-light);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Cookie Toggle */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

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

.cookie-toggle__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.cookie-toggle__slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--page-text-secondary);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--page-text);
    border-color: var(--page-text);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
    transform: translateX(20px);
    background: var(--page-bg);
}

.cookie-modal__footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 16px 24px;
    border-top: 1px solid var(--divider);
}

/* ==================== ANIMATIONS ==================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-in"] {
    transform: translateY(0);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

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

    .hero__float--2 {
        left: 0;
    }

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

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

    .process__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process__line {
        display: none;
    }

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

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

    .pricing__card--popular {
        transform: scale(1);
    }

    .pricing__card--popular:hover {
        transform: translateY(-2px);
    }

    .showcase__block,
    .showcase__block--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(32px, 9vw, 50px);
    }

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats__number {
        font-size: 32px;
    }

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }

    .mockup-dashboard__cards {
        grid-template-columns: 1fr;
    }

    .mockup-dashboard__sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero__float {
        display: none;
    }

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

    .pricing__toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==================== PRINT ==================== */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .hero__bg-elements,
    .hero__float {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section-title,
    h1, h2, h3 {
        color: black;
    }
}
