/* ========================================
   SAWAT LLC - Premium Landing Page Styles
   Color Palette: Dark Blue, White, Gray
   ======================================== */

/* ---- CSS VARIABLES ---- */
:root {
    --color-primary: #0d2137;
    --color-primary-light: #1a5276;
    --color-accent: #2e86c1;
    --color-accent-light: #85c1e9;
    --color-accent-bg: #d4e6f1;
    --color-success: #27ae60;
    --color-danger: #e74c3c;
    --color-warning: #f1c40f;
    --color-white: #ffffff;
    --color-bg: #f8fafc;
    --color-bg-alt: #f0f4f8;
    --color-text: #2c3e50;
    --color-text-light: #5d6d7e;
    --color-text-lighter: #95a5a6;
    --color-border: #dce4ec;
    --color-border-light: #eaeff4;
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(13, 33, 55, 0.06);
    --shadow-md: 0 4px 16px rgba(13, 33, 55, 0.08);
    --shadow-lg: 0 8px 32px rgba(13, 33, 55, 0.1);
    --shadow-xl: 0 16px 48px rgba(13, 33, 55, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

ul, ol {
    list-style: none;
}

/* ---- SKIP LINK ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
    color: var(--color-white);
}

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(26, 82, 118, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 82, 118, 0.4);
    color: var(--color-white);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary-light);
    border: 2px solid var(--color-border);
}

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

.btn--full {
    width: 100%;
}

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

.section-header__tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.08), rgba(133, 193, 233, 0.08));
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 134, 193, 0.15);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header__subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header--scrolled {
    border-bottom-color: var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

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

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

.nav__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nav__link:hover {
    color: var(--color-accent);
    background: rgba(46, 134, 193, 0.06);
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    color: var(--color-white);
    padding: 10px 24px;
    margin-left: 8px;
}

.nav__link--cta:hover {
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 82, 118, 0.3);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--color-bg);
    border-radius: 100px;
    padding: 3px;
    margin-left: 12px;
    border: 1px solid var(--color-border-light);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
    color: var(--color-text-lighter);
}

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

.lang-btn--active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 2px 6px rgba(13, 33, 55, 0.2);
}

.lang-btn--active:hover {
    color: var(--color-white);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

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

.header__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.header__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef5fb 50%, #e8f0f8 100%);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 134, 193, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(133, 193, 233, 0.1) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(46, 134, 193, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(46, 134, 193, 0.08);
    border: 1px solid rgba(46, 134, 193, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

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

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

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
}

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image-card {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatHero 6s ease-in-out infinite;
}

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

.hero__water-icon {
    width: 100%;
    height: 100%;
}

.hero__stats-floating {
    position: absolute;
    bottom: 20px;
    right: -20px;
}

.hero__stat-card {
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: floatStat 4s ease-in-out infinite;
}

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

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
}

.hero__stat-symbol {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
}

.hero__stat-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 48px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
}

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

.stats__item {
    text-align: center;
    padding: 24px;
}

.stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.08), rgba(133, 193, 233, 0.08));
    border-radius: var(--radius-md);
    color: var(--color-accent);
    margin-bottom: 16px;
}

.stats__number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary);
}

.stats__suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
}

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    padding: 100px 0;
    background: var(--color-bg);
}

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

.problem__card {
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.problem__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-bg);
}

.problem__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.1), rgba(133, 193, 233, 0.1));
    border-radius: var(--radius-md);
    color: var(--color-accent);
    margin-bottom: 20px;
}

.problem__card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.problem__card-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions {
    padding: 100px 0;
    background: var(--color-white);
}

.solutions__showcase {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.solutions__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.solutions__block--reverse {
    direction: rtl;
}

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

.solutions__block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.08), rgba(133, 193, 233, 0.08));
    border-radius: var(--radius-lg);
    color: var(--color-accent);
    margin-bottom: 20px;
}

.solutions__block-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.solutions__block-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.solutions__checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.solutions__visual-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid var(--color-border-light);
}

.solutions__visual-card svg {
    width: 100%;
    height: auto;
}

/* ============================================
   BUSINESS MODEL SECTION
   ============================================ */
.business {
    padding: 100px 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.business .section-header__tag {
    background: rgba(133, 193, 233, 0.15);
    color: var(--color-accent-light);
    border-color: rgba(133, 193, 233, 0.2);
}

.business .section-header__title {
    color: var(--color-white);
}

.business .section-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.business__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
}

.business__card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.business__card-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-accent-light);
    opacity: 0.4;
    margin-bottom: 16px;
    line-height: 1;
}

.business__card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.business__card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
    padding: 100px 0;
    background: var(--color-bg);
}

.audience__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.audience__col {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-border-light);
}

.audience__col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid;
}

.audience__col-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.audience__col-header--ideal {
    color: var(--color-success);
    border-bottom-color: var(--color-success);
}

.audience__col-header--ideal h3 {
    color: var(--color-success);
}

.audience__col-header--not {
    color: var(--color-danger);
    border-bottom-color: var(--color-danger);
}

.audience__col-header--not h3 {
    color: var(--color-danger);
}

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

.audience__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

.audience__list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--color-white);
}

.process__timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process__line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent-bg), var(--color-accent), var(--color-accent-bg));
}

.process__step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

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

.process__step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(26, 82, 118, 0.25);
}

.process__step-content {
    flex: 1;
    padding-top: 8px;
}

.process__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.08), rgba(133, 193, 233, 0.08));
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    margin-bottom: 12px;
}

.process__step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.process__step-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--color-bg);
}

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

.testimonials__card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.testimonials__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.testimonials__role {
    display: block;
    font-size: 13px;
    color: var(--color-text-lighter);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--color-white);
}

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

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

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

.faq__question:hover {
    color: var(--color-accent);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-accent);
}

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

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq__answer p {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.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(--color-text-light);
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f8 100%);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--color-primary);
    margin: 16px 0 16px;
    line-height: 1.2;
}

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

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

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.contact__detail strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.contact__detail span,
.contact__detail a {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

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

/* Form */
.contact__form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.form__required {
    color: var(--color-danger);
}

.form__input {
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-white);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.1);
}

.form__input::placeholder {
    color: var(--color-text-lighter);
}

.form__input.error {
    border-color: var(--color-danger);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235d6d7e' 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;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__error {
    font-size: 13px;
    color: var(--color-danger);
    min-height: 18px;
}

.form__group--checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.form__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--color-accent);
    flex-shrink: 0;
}

.form__note {
    font-size: 12px;
    color: var(--color-text-lighter);
    text-align: center;
}

/* Form success */
.contact__success {
    text-align: center;
    padding: 48px 24px;
}

.contact__success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 16px 0 8px;
}

.contact__success p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    max-width: 320px;
}

.footer__col-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    text-decoration: none;
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-banner__content p {
    font-size: 14px;
    color: var(--color-text-light);
    flex: 1;
    min-width: 280px;
}

.cookie-banner__content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn--cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn--cookie-accept:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
}

.btn--cookie-reject {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn--cookie-reject:hover {
    border-color: var(--color-text-light);
}

.btn--cookie-settings {
    background: transparent;
    color: var(--color-accent);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn--cookie-settings:hover {
    background: rgba(46, 134, 193, 0.06);
}

/* ============================================
   COOKIE MODAL
   ============================================ */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-modal--visible {
    opacity: 1;
    pointer-events: auto;
}

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

.cookie-modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cookie-modal--visible .cookie-modal__content {
    transform: scale(1);
}

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

.cookie-modal__header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

.cookie-modal__body {
    padding: 16px 28px;
}

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

.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 strong {
    font-size: 15px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.cookie-modal__category-header p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.cookie-modal__always-on {
    font-size: 12px;
    color: var(--color-success);
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 10px;
    background: rgba(39, 174, 96, 0.08);
    border-radius: 100px;
}

/* Toggle Switch */
.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: var(--color-border);
    border-radius: 24px;
    transition: all var(--transition);
}

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

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

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

.cookie-modal__footer {
    padding: 16px 28px 24px;
}

.cookie-modal__footer .btn {
    width: 100%;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grid items */
.problem__card:nth-child(2) .animate-on-scroll,
.problem__card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.problem__card:nth-child(3) .animate-on-scroll,
.problem__card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.problem__card:nth-child(4) .animate-on-scroll,
.problem__card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.stats__item.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stats__item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stats__item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.business__card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.business__card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.business__card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.process__step.animate-on-scroll:nth-child(3) { transition-delay: 0.1s; }
.process__step.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.process__step.animate-on-scroll:nth-child(5) { transition-delay: 0.3s; }

.testimonials__card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.testimonials__card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1023px) {
    .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__trust {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-card {
        width: 280px;
        height: 280px;
    }

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

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

    .solutions__block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solutions__block--reverse {
        direction: ltr;
    }

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

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

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

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

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 639px) {
    .header__nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        padding: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .header__nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .header__hamburger {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 8px;
    }

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

    .hero__image-card {
        width: 220px;
        height: 220px;
    }

    .hero__stats-floating {
        right: -10px;
        bottom: 10px;
    }

    .hero__stat-card {
        padding: 12px 16px;
    }

    .hero__stat-number {
        font-size: 24px;
    }

    .hero__badge {
        font-size: 11px;
    }

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

    .stats__item {
        padding: 16px;
    }

    .stats__number {
        font-size: 28px;
    }

    .stats__label {
        font-size: 12px;
    }

    .problem, .solutions, .business, .audience, .process, .testimonials, .faq, .contact {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .contact__form-wrapper {
        padding: 24px;
    }

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

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

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

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

/* ---- Focus visible for accessibility ---- */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ---- Selection ---- */
::selection {
    background: rgba(46, 134, 193, 0.2);
    color: var(--color-primary);
}
