/* LANDING_J: Bold Gradient - Modern Playful Style */
/* Unique: Gradient backgrounds, card-heavy, rounded corners, vibrant colors */

:root {
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-soft: linear-gradient(135deg, #f0e6ff 0%, #e6f0ff 100%);
    --text-dark: #1e293b;
    --text-body: #64748b;
    --text-muted: #94a3b8;
    --accent: #7c3aed;
    --accent-dark: #6d28d9;
    --accent-light: #ede9fe;
    --secondary: #ec4899;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER: Pill-shaped with blur */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 12px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.8);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img {
    height: 38px;
}

.logo span {
    font-size: 18px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s;
}

/* MOBILE NAV */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2000;
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-nav {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.close-nav svg {
    width: 22px;
    height: 22px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 16px;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background: var(--accent-light);
    color: var(--accent);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-full { width: 100%; }

.btn svg {
    width: 18px;
    height: 18px;
}

/* HERO: Gradient background with floating cards */
.hero {
    padding: 160px 0 100px;
    background: var(--bg-gradient-soft);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '✨';
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 19px;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.hero-feature-icon svg {
    width: 16px;
    height: 16px;
}

.hero-visual {
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.hero-card-1 {
    top: -20px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-card-icon svg {
    width: 24px;
    height: 24px;
}

.hero-card-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.hero-card-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-card-2 {
    bottom: 40px;
    right: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-card-2 .avatars {
    display: flex;
    margin-bottom: 12px;
}

.hero-card-2 .avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.hero-card-2 .avatars img:first-child {
    margin-left: 0;
}

/* SECTION STYLES */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-desc {
    font-size: 18px;
    color: var(--text-body);
    max-width: 560px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

/* STATS STRIP */
.stats-strip {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-main);
    border-radius: var(--radius);
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* SERVICES: Colorful cards */
.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    background: var(--bg-white);
    border-color: var(--accent-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-gradient);
    border-radius: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-body);
    margin-bottom: 24px;
    font-size: 15px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-tag {
    padding: 6px 12px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.service-link:hover {
    text-decoration: underline;
}

/* FEATURES: Bento grid */
.features-section {
    background: var(--bg-main);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.bento-icon svg {
    width: 28px;
    height: 28px;
}

.bento-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-body);
    font-size: 15px;
}

.bento-card.tall {
    display: flex;
    flex-direction: column;
}

.bento-card.tall p {
    flex: 1;
}

.bento-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.bento-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.bento-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* PROCESS: Cards with numbers */
.process-section {
    background: var(--bg-dark);
    color: white;
}

.process-section .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

.process-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.4s;
}

.process-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.process-number {
    width: 64px;
    height: 64px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ABOUT: Split with gradient card */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-stat-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-gradient);
    color: white;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-stat-value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 20px;
    color: var(--text-body);
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-body);
    margin-bottom: 32px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-main);
    border-radius: 12px;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.about-value-icon svg {
    width: 20px;
    height: 20px;
}

.about-value span {
    font-weight: 600;
    font-size: 14px;
}

/* TESTIMONIALS: Carousel style */
.testimonials-section {
    background: var(--bg-gradient-soft);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
}

.testimonial-company {
    font-size: 13px;
    color: var(--text-muted);
}

/* TEAM */
.team-section {
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-info p {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--accent);
    color: white;
}

.team-social svg {
    width: 18px;
    height: 18px;
}

/* FAQ */
.faq-section {
    background: var(--bg-main);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-intro .section-title {
    margin-bottom: 16px;
}

.faq-intro p {
    color: var(--text-body);
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-body);
    font-size: 15px;
}

/* CTA BANNER */
.cta-banner {
    background: var(--bg-gradient);
    padding: 80px 0;
    text-align: center;
    color: white;
    border-radius: var(--radius-lg);
    margin: 0 24px;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* CONTACT */
.contact-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-body);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-main);
    border-radius: 16px;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-body);
    font-size: 14px;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
}

.contact-form {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-body);
}

.form-checkbox a {
    color: var(--accent);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 24px;
}

.footer-bottom a:hover {
    color: white;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: 420px;
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 16px;
}

.cookie-banner a {
    color: var(--accent);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .header { width: calc(100% - 32px); top: 16px; }
    .nav-menu { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .hero-image-main { height: 400px; }
    .hero-card-1 { left: 20px; }
    .hero-card-2 { right: 20px; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .services-grid { grid-template-columns: 1fr 1fr; }
    
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.large { grid-column: span 1; }
    .bento-card.tall { grid-row: span 1; }
    
    .process-grid { grid-template-columns: 1fr 1fr; }
    
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { order: -1; }
    
    .testimonials-slider { grid-template-columns: 1fr 1fr; }
    
    .team-grid { grid-template-columns: 1fr 1fr; }
    
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 36px; }
    .hero-cta { flex-direction: column; }
    .hero-features { flex-direction: column; gap: 16px; }
    .hero-image-main { height: 320px; }
    .hero-card { padding: 16px; }
    .hero-card-value { font-size: 24px; }
    .hero-card-2 { display: none; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-value { font-size: 32px; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .bento-grid { grid-template-columns: 1fr; }
    
    .process-grid { grid-template-columns: 1fr; }
    
    .about-image { height: 350px; }
    .about-stat-card { bottom: -20px; right: 20px; padding: 24px; }
    .about-stat-value { font-size: 36px; }
    .about-values { grid-template-columns: 1fr; }
    
    .testimonials-slider { grid-template-columns: 1fr; }
    
    .team-grid { grid-template-columns: 1fr; }
    .team-image { height: 250px; }
    
    .cta-banner { margin: 0 16px; padding: 60px 24px; }
    .cta-buttons { flex-direction: column; }
    
    .contact-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom a { margin: 0 12px; }
    
    .cookie-banner { left: 16px; width: calc(100% - 32px); bottom: 16px; }
}

/* ======================================
   LEGAL PAGES STYLES
   ====================================== */

.legal-page {
    background: var(--bg-main);
}

.legal-header {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 16px 24px;
}

.legal-main {
    padding: 60px 0 100px;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--text-body);
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Tables in legal pages */
.cookie-table, .refund-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    font-size: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table thead, .refund-table thead {
    background: var(--bg-gradient);
}

.cookie-table th, .refund-table th {
    color: white;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
}

.cookie-table td, .refund-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
}

.cookie-table tbody tr:last-child td,
.refund-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:nth-child(even),
.refund-table tbody tr:nth-child(even) {
    background: var(--bg-main);
}

.cookie-table tbody tr:hover,
.refund-table tbody tr:hover {
    background: var(--accent-light);
}

/* Form template */
.form-template {
    background: var(--bg-main);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin: 24px 0;
}

.form-template p {
    margin-bottom: 12px;
    font-size: 14px;
}

.form-template .form-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 16px;
}

.company-info {
    background: var(--accent-light);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

/* Legal footer */
.legal-footer {
    padding: 30px 0;
    background: var(--bg-dark);
}

.legal-footer .footer-bottom {
    border-top: none;
    padding-top: 0;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 32px 24px;
        border-radius: var(--radius);
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .cookie-table, .refund-table {
        font-size: 12px;
    }
    
    .cookie-table th, .refund-table th,
    .cookie-table td, .refund-table td {
        padding: 10px 12px;
    }
    
    .form-template {
        padding: 20px;
    }
}

/* ======================================
   METHODS SECTION
   ====================================== */

.methods-section {
    padding: 100px 0;
    background: var(--bg-gradient-soft);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.method-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}

.method-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.method-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.method-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ======================================
   TRUST SECTION
   ====================================== */

.trust-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-text .section-title {
    text-align: left;
}

.trust-text p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.trust-stats {
    display: flex;
    gap: 40px;
}

.trust-stat {
    text-align: center;
}

.trust-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-badge-card {
    background: var(--bg-main);
    padding: 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-badge-card:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.trust-badge-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

/* Methods and Trust responsive */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-text .section-title {
        text-align: center;
    }
    
    .trust-text p {
        text-align: center;
    }
    
    .trust-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .methods-section {
        padding: 80px 0;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .method-card {
        padding: 28px 24px;
    }
    
    .trust-section {
        padding: 80px 0;
    }
    
    .trust-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .trust-stat {
        flex: 1 1 100px;
    }
    
    .trust-stat-value {
        font-size: 28px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .trust-badge-card {
        padding: 20px;
    }
}
