/* =========================================
   BeyRun - Produktywność & Zarządzanie Czasem
   CSS Stylesheet
   ========================================= */

/* === CSS Variables === */
:root {
    --primary: #6C63FF;
    --primary-dark: #5a52e0;
    --primary-light: #8b85ff;
    --secondary: #FF6584;
    --accent: #43D9AD;
    --accent-warm: #FFB347;
    --dark: #0F0E1A;
    --dark-2: #1A1830;
    --dark-3: #252342;
    --text: #e2e0f0;
    --text-muted: #9997b5;
    --text-light: #ffffff;
    --bg: #0F0E1A;
    --bg-card: #1A1830;
    --bg-card-hover: #252342;
    --border: rgba(108, 99, 255, 0.2);
    --border-light: rgba(255,255,255,0.08);
    --shadow: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Syne', sans-serif;
}

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

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

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

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

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

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

ul {
    list-style: none;
}

/* === Container === */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(67,217,173,0.2));
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(67,217,173,0.3);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo:hover {
    color: var(--text-light);
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px var(--primary));
}

.logo-text strong {
    color: var(--primary-light);
}

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

.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255,255,255,0.06);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(108,99,255,0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,99,255,0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,14,26,0.95) 0%, rgba(15,14,26,0.8) 50%, rgba(15,14,26,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 0 0;
    padding-left: calc((100vw - 1200px) / 2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,99,255,0.15);
    border: 1px solid rgba(108,99,255,0.4);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title br + span,
.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: 0 8px 32px rgba(108,99,255,0.4);
    display: inline-flex;
    align-items: center;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(108,99,255,0.5);
    color: white;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary-hero {
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

.btn-secondary-hero:hover {
    border-color: var(--primary-light);
    color: var(--text-light);
    background: rgba(108,99,255,0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image-container {
    display: none;
}

/* === About Section === */
.about-section {
    padding: 120px 0;
}

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

.about-image-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-badge-float {
    position: absolute;
    bottom: 32px;
    right: -24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 48px rgba(108,99,255,0.4);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.about-content {
    padding: 20px 0;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: 0.95rem;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent), #2BC99A);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-primary-about {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(108,99,255,0.35);
}

.btn-primary-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(108,99,255,0.5);
    color: white;
}

/* === Services Section === */
.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(108,99,255,0.03) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-color, var(--primary)), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

.featured-card {
    border-color: rgba(108,99,255,0.4);
    background: linear-gradient(135deg, rgba(108,99,255,0.08), var(--bg-card));
    box-shadow: 0 0 40px rgba(108,99,255,0.1);
}

.featured-card::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(var(--card-color-rgb, 108,99,255), 0.15), rgba(var(--card-color-rgb, 108,99,255), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.service-icon {
    font-size: 1.8rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 14px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.service-list li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.service-cta {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-cta:hover {
    color: var(--accent);
    gap: 8px;
}

/* === Process Section === */
.process-section {
    padding: 120px 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent), transparent);
    opacity: 0.3;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    -webkit-text-fill-color: initial;
    color: var(--primary-light);
    font-size: 1.5rem;
}

.step-content {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    line-height: 1.8;
}

.step-image img {
    width: 240px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

/* === Statistics Section === */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(108,99,255,0.08), rgba(67,217,173,0.05));
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.stat-number-big {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-big {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}

.testimonial-stars {
    color: #FFB347;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 32px;
    max-width: 700px;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

/* === Team Section === */
.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(108,99,255,0.03) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--border);
}

.team-image-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrap img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(15,14,26,0.9), transparent);
    padding: 20px 20px 16px;
    display: flex;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition);
}

.team-social a:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.team-info {
    padding: 28px 24px;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* === FAQ Section === */
.faq-section {
    padding: 120px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(108,99,255,0.1);
}

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

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(108,99,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-light);
    transition: all var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    display: none;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* === Contact Section === */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(108,99,255,0.03) 0%, transparent 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col {
    padding-top: 20px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item strong {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === Form Styles === */
.form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(153,151,181,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(108,99,255,0.05);
    box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239997b5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--text);
}

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

.field-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 500;
}

.checkbox-group {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all var(--transition);
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.checkbox-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--primary-light);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(108,99,255,0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(108,99,255,0.5);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* === Success Message === */
#formSuccess {
    text-align: center;
    padding: 48px 32px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.success-message {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

@keyframes bounceIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* === Footer === */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border-light);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo:hover {
    color: var(--text-light);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text-muted);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--text-muted);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color var(--transition);
}

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

/* === Legal Pages === */
.legal-page {
    min-height: 100vh;
    padding-top: 80px;
}

.legal-hero {
    background: linear-gradient(135deg, var(--dark-2) 0%, rgba(108,99,255,0.1) 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 60px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 20px 0 10px;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.legal-section ul li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-light);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.legal-table th {
    background: rgba(108,99,255,0.15);
    color: var(--text-light);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-light);
}

.legal-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    vertical-align: top;
}

.legal-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.legal-contact-box {
    background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(67,217,173,0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.legal-contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-contact-box p {
    color: var(--text-muted);
    margin: 0;
}

/* === Cookie Consent Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 24, 48, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 48px rgba(0,0,0,0.4);
}

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

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}

.cookie-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-links a {
    color: var(--primary-light);
    font-size: 0.82rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 100px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 16px rgba(108,99,255,0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108,99,255,0.5);
}

.cookie-btn-reject {
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
}

.cookie-btn-customize {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid var(--border);
}

.cookie-btn-customize:hover {
    background: rgba(108,99,255,0.1);
}

/* === Cookie Modal === */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal-box {
    position: relative;
    z-index: 1;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

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

.cookie-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.cookie-modal-close:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
}

.cookie-modal-body {
    padding: 16px 28px;
}

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

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

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

.cookie-category-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

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

.cookie-toggle {
    flex-shrink: 0;
}

.cookie-toggle.disabled label {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

.toggle-input {
    display: none;
}

.toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    position: relative;
    transition: background var(--transition);
    display: block;
    border: 1px solid var(--border-light);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.toggle-input:checked + .toggle-label .toggle-switch {
    background: var(--primary);
    border-color: var(--primary);
}

.toggle-input:checked + .toggle-label .toggle-switch::after {
    transform: translateX(20px);
}

.cookie-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 28px;
    border-top: 1px solid var(--border-light);
    justify-content: flex-end;
}

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

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

/* === Responsive === */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        gap: 48px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-step.reverse {
        direction: ltr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-image img {
        width: 100%;
        height: 240px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15,14,26,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-badge-float {
        right: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .stats-grid {
        gap: 32px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner-actions {
        justify-content: stretch;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .legal-content {
        padding: 0 16px 60px;
    }
    
    .legal-table {
        font-size: 0.8rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}