/* ============================================
   DREMPOK - Serwis Telefonów
   Professional Phone Repair Landing Page
   CSS Framework: Pure CSS with Grid/Flexbox
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #FF6B35;
    --primary-dark: #e85520;
    --primary-light: #ff8c5a;
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #0f3460;
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-light: #8888a8;
    --white: #ffffff;
    --light-bg: #f8f8fc;
    --border: #e8e8f0;
    --success: #22c55e;
    --success-light: #f0fdf4;
    --success-border: #86efac;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
    --shadow-xl: 0 30px 80px rgba(26, 26, 46, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-dark);
}

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

/* --- Section Common --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

.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;
    text-decoration: none;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 50%, #1a1a2e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1800&q=80') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-text {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-item > span:nth-child(2) {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin-top: -4px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-main:hover img {
    transform: scale(1.03);
}

.img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.img-secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: 32px;
    left: -24px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}

.badge-year {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge-float span:last-child {
    font-size: 11px;
    color: var(--text-body);
    font-weight: 500;
    margin-top: 4px;
}

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

.about-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
}

.about-lead {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 500;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

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

.feat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.about-feat h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.about-feat p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: 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(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

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

.benefits-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.benefits-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-slow);
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.benefit-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.benefits-card-float {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.float-icon {
    font-size: 28px;
}

.benefits-card-float strong {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.benefits-card-float span {
    font-size: 12px;
    color: var(--text-body);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
    margin-bottom: -8px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    color: rgba(255, 107, 53, 0.25);
}

.step-content {
    background: var(--light-bg);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: calc(100% - 40px);
}

.process-step:hover .step-content {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.2);
}

.step-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .step-icon svg {
    color: var(--white);
}

.step-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 86px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), rgba(255, 107, 53, 0.3));
    z-index: 2;
}

.step-connector.last {
    display: none;
}

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

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

.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: span 1;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-color: transparent;
    grid-row: span 1;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card.featured .testimonial-author strong {
    color: var(--white);
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

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

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

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

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.faq-header h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-header p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-main);
    text-align: left;
    transition: var(--transition);
    gap: 12px;
}

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

.faq-item.active .faq-question {
    background: rgba(255, 107, 53, 0.05);
    color: var(--primary);
}

.faq-arrow {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-icon:hover {
    background: var(--primary);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-item a {
    color: var(--text-dark);
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--light-bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
}

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

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

.field-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    min-height: 16px;
}

/* Success Message */
#formSuccess {
    background: var(--success-light);
    border: 2px solid var(--success-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--success);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

#formSuccess h3 {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 8px;
}

#formSuccess p {
    font-size: 15px;
    color: #4ade80;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
}

.footer-top {
    padding: 72px 0 48px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-phone,
.footer-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--primary);
}

.footer-nav h4,
.footer-services h4,
.footer-address h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a,
.footer-services li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav li a:hover,
.footer-services li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-address-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-addr-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-addr-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.footer-addr-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

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

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

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

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.cookie-text a {
    color: var(--primary);
    font-weight: 500;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-main);
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cookie-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-body);
    border-color: var(--border);
}

.cookie-btn-secondary:hover {
    border-color: var(--text-body);
    color: var(--text-dark);
}

.cookie-btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: rgba(255, 107, 53, 0.3);
}

.cookie-btn-outline:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary);
}

.cookie-custom-panel {
    padding: 0 24px 24px;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.cookie-custom-panel h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 20px 0 16px;
    color: var(--text-dark);
}

.cookie-toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.cookie-toggle-item:last-of-type {
    border-bottom: none;
}

.cookie-toggle-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.cookie-toggle-item span {
    font-size: 12px;
    color: var(--text-light);
}

.toggle-switch {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.toggle-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--border);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

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

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

.toggle-switch input:checked + .toggle-slider::after {
    left: calc(100% - 21px);
}

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos][data-aos-delay="600"] { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .benefits-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefits-image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .step-connector {
        display: none;
    }

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

/* Tablet small (max 768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links .nav-link {
        color: var(--text-dark);
        padding: 12px 16px;
        border-radius: var(--radius);
    }

    .nav-links .nav-cta {
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-item::after {
        display: none;
    }

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

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

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

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .img-secondary {
        display: none;
    }

    .about-badge-float {
        left: 16px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        transform: translateX(0);
        bottom: 10px;
        max-width: none;
    }

    .cookie-banner.hidden {
        transform: translateY(120px);
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .about-section,
    .services-section,
    .benefits-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 64px 0;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-btn {
        text-align: center;
    }
}