:root {
    /* Color Palette */
    --color-sand: #f8f7f4;
    --color-sand-dark: #e8e6e1;
    --color-navy: #6C5CE7;
    --color-navy-light: #8B7CF6;
    --color-charcoal: #374151;
    --color-slate: #64748b;
    --color-ash: #9ca3af;
    --color-white: #ffffff;
    --color-black: #111827;

    /* Typography */
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 7rem 2rem;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.12);

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================
   NAVIGATION
   ============================= */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 230px !important;
    max-height: none !important;
    width: auto !important;
    display: block;
    margin: -80px 0;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-slate);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--color-black);
}

.nav-cta {
    background: var(--color-black);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

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

.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--color-sand-dark);
    color: var(--color-slate);
    padding: 0.4rem 0.7rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.lang-toggle:hover,
.lang-toggle.active {
    background: var(--color-black);
    color: white;
    border-color: var(--color-black);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 0.25rem;
}

/* =============================
   HERO
   ============================= */
.hero {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1556075798-4825dfaaf498?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--section-padding);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(248, 247, 244, 0.15) 0%,
        rgba(232, 230, 225, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.hero-subtitle {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-slate);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-black);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    padding: 0.875rem 0;
}

.btn-secondary:hover {
    color: var(--color-navy);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-mockup {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-header {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: var(--color-sand);
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    display: block;
}

.stat-label {
    color: var(--color-slate);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.mockup-tagline {
    color: var(--color-slate);
    font-style: italic;
    text-align: center;
    font-size: 0.9rem;
}

/* =============================
   QUOTE
   ============================= */
.quote-section {
    background: var(--color-sand);
    padding: 5rem 2rem;
    text-align: center;
}

.quote-container {
    max-width: 750px;
    margin: 0 auto;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-author {
    color: var(--color-ash);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* =============================
   SECTION SHARED STYLES
   ============================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-slate);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================
   PROBLEMS
   ============================= */
.problems-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.problems-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--color-white);
    border: 1px solid var(--color-sand-dark);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.problem-icon {
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.problem-card:hover .problem-icon {
    opacity: 1;
}

.problem-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-description {
    color: var(--color-slate);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* =============================
   SOLUTIONS
   ============================= */
.solutions-section {
    padding: var(--section-padding);
    background: var(--color-sand);
}

.solutions-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.solution-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.solution-card.featured {
    border-color: var(--color-navy);
    border-width: 2px;
}

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

.solution-badge {
    position: absolute;
    top: -11px;
    right: 1.5rem;
    background: var(--color-navy);
    color: white;
    padding: 0.25rem 0.875rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.solution-icon {
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.solution-card:hover .solution-icon {
    opacity: 1;
}

.solution-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--color-slate);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.solution-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-sand-dark);
}

.solution-features li {
    padding: 0.4rem 0;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.solution-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-charcoal);
    opacity: 0.35;
}

.solutions-cta {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.solutions-cta-text {
    color: var(--color-slate);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-solutions-cta {
    background: var(--color-black);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-solutions-cta:hover {
    background: var(--color-navy);
    transform: translateY(-2px);
}

/* =============================
   PROCESS
   ============================= */
.process-section {
    padding: var(--section-padding);
    background-color: var(--color-sand);
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 247, 244, 0.15);
    z-index: 1;
}

.process-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-section .section-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    margin-bottom: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.process-step {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.step-icon {
    color: var(--color-charcoal);
    margin-bottom: 1.25rem;
    opacity: 0.6;
}

.process-step:hover .step-icon {
    opacity: 1;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-meta {
    color: var(--color-navy);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-description {
    color: var(--color-slate);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* =============================
   FAQ
   ============================= */
.faq-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

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

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--color-sand-dark);
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-sand-dark);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
    font-family: var(--font-sans);
}

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

.faq-toggle {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--color-ash);
    font-weight: 300;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: var(--color-slate);
    line-height: 1.75;
    display: none;
    font-size: 0.95rem;
}

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

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

/* =============================
   TEAM
   ============================= */
.team-section {
    padding: var(--section-padding);
    background: var(--color-sand);
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
    background-color: var(--color-sand);
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid white;
}

.member-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.35rem;
}

.member-role {
    color: var(--color-navy);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.member-description {
    color: var(--color-slate);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
}

.member-links a {
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1.5px solid var(--color-sand-dark);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-block;
}

.member-links a:hover {
    border-color: var(--color-navy);
    color: var(--color-navy);
}

/* =============================
   CTA
   ============================= */
.cta-section {
    padding: var(--section-padding);
    background-color: var(--color-sand);
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 247, 244, 0.15);
    z-index: 1;
}

.cta-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--color-slate);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.cta-button {
    background: var(--color-black);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}

.cta-button:hover {
    background: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-alternative {
    margin-top: 1.5rem;
    color: var(--color-ash);
    font-size: 0.875rem;
}

.cta-alternative a {
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
}

.cta-alternative a:hover {
    color: var(--color-navy);
}

/* =============================
   FOOTER
   ============================= */
.footer {
    background: var(--color-black);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 250px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: var(--color-ash);
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: var(--color-ash);
    font-size: 0.8rem;
}

/* =============================
   ANIMATIONS
   ============================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 4rem;
    }

    .hero,
    .process-section,
    .cta-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 1.25rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-sand-dark);
        box-shadow: var(--shadow-md);
    }

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

    .mobile-menu-button {
        display: flex;
        align-items: center;
    }

    .hero {
        padding: 0;
        min-height: 100svh;
        display: flex;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-container {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-content {
        background: rgba(255, 255, 255, 0.82);
        padding: 2rem 1.75rem;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .btn-primary,
    .btn-solutions-cta,
    .cta-button {
        text-align: center;
    }

    .btn-secondary {
        justify-content: center;
    }

    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        gap: 1.5rem;
    }

    .hero,
    .process-section,
    .cta-section {
        background-attachment: scroll !important;
    }
}

/* =============================

/* =============================
   PACK DIGITAL (HYBRID)
   ============================= */
@keyframes pack-card-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

@keyframes pack-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pack-border-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pack-glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.05); }
}

.pack-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0826 40%, #130d35 70%, #0a0f1e 100%);
    position: relative;
    overflow: hidden;
}

.pack-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -5%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(108,92,231,0.22) 0%, rgba(108,92,231,0.05) 45%, transparent 70%);
    pointer-events: none;
    animation: pack-glow-pulse 6s ease-in-out infinite;
}

.pack-section::after {
    content: '';
    position: absolute;
    bottom: -15%; left: -8%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,160,80,0.12) 0%, transparent 65%);
    pointer-events: none;
    animation: pack-glow-pulse 8s ease-in-out infinite reverse;
}

.pack-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.pack-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pack-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.pack-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c8a050;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
}

.pack-label::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, #c8a050, #f0c060);
}

.pack-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.pack-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.pack-cta-btn {
    background: linear-gradient(135deg, #6C5CE7 0%, #8B7CF6 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 24px rgba(108,92,231,0.5);
    position: relative;
    overflow: hidden;
}

.pack-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: pack-shimmer 3s linear infinite;
    border-radius: 100px;
}

.pack-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(108,92,231,0.65), 0 0 60px rgba(108,92,231,0.2);
}

.pack-note {
    margin-top: 1.25rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pack-note::before {
    content: '✓';
    color: rgba(200,160,80,0.7);
}

.pack-card-wrapper {
    position: relative;
    border-radius: calc(var(--radius-lg) + 2px);
    animation: pack-card-float 5s ease-in-out infinite;
}

.pack-card-wrapper::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, rgba(200,160,80,0.7) 0%, rgba(108,92,231,0.6) 40%, rgba(200,160,80,0.3) 70%, rgba(108,92,231,0.7) 100%);
    background-size: 300% 300%;
    animation: pack-border-spin 4s linear infinite, pack-shimmer 4s linear infinite;
    z-index: 0;
}

.pack-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 100px rgba(108,92,231,0.15);
    position: relative;
    z-index: 1;
}

.pack-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c8a050 0%, #f0c060 50%, #c8a050 100%);
    background-size: 200% 100%;
    animation: pack-shimmer 2.5s linear infinite;
    color: #1a0f00;
    padding: 0.35rem 1.5rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(200,160,80,0.5);
}

.pack-price-block {
    text-align: center;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--color-sand-dark);
    margin-bottom: 2rem;
}

.pack-from {
    display: block;
    color: var(--color-slate);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pack-price {
    display: block;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 40%, #c8a050 70%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(200,160,80,0.3));
}

.pack-period {
    display: block;
    color: var(--color-ash);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pack-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.pack-includes li {
    padding: 0.7rem 0;
    color: var(--color-charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-bottom: 1px solid var(--color-sand);
    transition: color 0.2s;
}

.pack-includes li:last-child { border-bottom: none; }

.pack-includes li::before {
    content: '';
    width: 20px; height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6C5CE7, #8B7CF6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    box-shadow: 0 2px 8px rgba(108,92,231,0.35);
}

.pack-guarantee {
    text-align: center;
    color: #7c5c10;
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fef9ec, #fdf3d0);
    border: 1px solid rgba(200,160,80,0.3);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
}

.nav-link-pack {
    color: #c8a050 !important;
    font-weight: 600 !important;
    position: relative;
}

.nav-link-pack::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #c8a050, #f0c060);
    border-radius: 2px;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .pack-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .pack-text, .pack-note, .pack-label { margin-left: auto; margin-right: auto; }
    .pack-note, .pack-label { justify-content: center; }
}

@media (max-width: 768px) {
    .pack-card { padding: 2rem 1.75rem; }
    .pack-price { font-size: 3.2rem; }
}

/* =============================
   WHATSAPP FLOATING BUTTON
   ============================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 640px) {
    .pacote-features {
        grid-template-columns: 1fr;
    }

    .pacote-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pacote-card {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
}

/* =============================
   COOKIE BANNER (RGPD)
   ============================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e1e2e;
    border-top: 1px solid rgba(108, 92, 231, 0.3);
    z-index: 10000;
    padding: 1.25rem 2rem;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 260px;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-text strong {
    color: #fff;
}

.cookie-link {
    color: #8B7CF6;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #6C5CE7, #8B7CF6);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.6);
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 1.25rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn-reject,
    .cookie-btn-accept {
        flex: 1;
        text-align: center;
    }
}
