/* ========================================
   PFA Cercetare de Piață - Premium Stylesheet
   Paletă Navy + Teal + Amber (consulting/research)
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Navy */
    --primary: #0B1F3B;
    --primary-light: #1E3A5F;
    --primary-dark: #061529;

    /* Secondary Colors - Teal */
    --secondary: #0F766E;
    --secondary-light: #14B8A6;
    --secondary-dark: #115E59;
    --secondary-soft: rgba(15, 118, 110, 0.08);
    --secondary-gradient: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);

    /* Accent - Amber */
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    --accent-dark: #D97706;
    --accent-soft: rgba(245, 158, 11, 0.12);
    --accent-bg: #FFF7ED;
    --accent-text: #92400E;

    /* Backgrounds */
    --bg-primary: #F6F9FF;
    --bg-surface: #FFFFFF;
    --bg-muted: #EEF4FF;
    --bg-dark: var(--primary);

    /* Text Colors */
    --text: #0F172A;
    --text-light: #334155;
    --text-muted: #475569;

    /* Borders */
    --border: #D7DEE9;
    --border-light: #E8EEF6;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(11, 31, 59, 0.04);
    --shadow-sm: 0 1px 3px rgba(11, 31, 59, 0.08), 0 1px 2px rgba(11, 31, 59, 0.04);
    --shadow: 0 4px 6px -1px rgba(11, 31, 59, 0.08), 0 2px 4px -1px rgba(11, 31, 59, 0.04);
    --shadow-md: 0 10px 15px -3px rgba(11, 31, 59, 0.08), 0 4px 6px -2px rgba(11, 31, 59, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(11, 31, 59, 0.1), 0 10px 10px -5px rgba(11, 31, 59, 0.04);
    --shadow-teal: 0 10px 25px rgba(15, 118, 110, 0.25);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

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

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

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

a:hover {
    color: var(--secondary-dark);
}

ul {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--secondary-soft);
    color: var(--secondary-dark);
}

/* Focus States - AA Compliant */
:focus {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--secondary-soft);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--bg-surface);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    color: var(--bg-surface);
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--bg-surface);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
    color: var(--bg-surface);
}

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

.btn-secondary:hover {
    background: var(--secondary-soft);
    color: var(--secondary-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

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

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.8125rem;
}

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

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--secondary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: var(--bg-surface);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

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

.nav-link {
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary);
    background: var(--secondary-soft);
}

.nav-link--cta {
    background: var(--secondary);
    color: var(--bg-surface) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.03) 0%, rgba(11, 31, 59, 0.02) 100%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--secondary-soft);
    color: var(--secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-for {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 3px solid var(--secondary);
}

.hero-for strong {
    color: var(--text);
}

/* Proof Bullets */
.proof-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    list-style: none;
}

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

.proof-bullets li svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Hero Target Section */
.hero-target {
    margin-top: 48px;
    padding: 24px 0;
    background: var(--bg-muted);
    border-top: 1px solid var(--border-light);
}

.hero-target .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.target-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

.target-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.target-items span {
    padding: 8px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.target-items span:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Hero Clarification Badge */
.hero-clarification {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--secondary-soft);
    border-radius: var(--radius);
    margin-bottom: 28px;
    border: 1px solid rgba(15, 118, 110, 0.2);
}

.hero-clarification svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-clarification span {
    font-size: 0.9375rem;
    color: var(--secondary-dark);
}

.hero-clarification strong {
    color: var(--secondary);
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--accent-bg);
    border-radius: var(--radius);
    margin-bottom: 32px;
    border-left: 3px solid var(--accent);
}

.hero-note svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-note span {
    font-size: 0.875rem;
    color: var(--accent-text);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-graphic {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 280px;
    padding: 32px;
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.chart-bar {
    width: 44px;
    height: var(--height);
    background: var(--secondary-gradient);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    animation: chartGrow 1s ease-out forwards;
    transform-origin: bottom;
    opacity: 0;
}

.chart-bar:nth-child(odd) {
    background: var(--primary);
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes chartGrow {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

/* ========================================
   CREDIBILITY / TRUST SECTION
   ======================================== */
.credibility {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

.credibility .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.credibility-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.credibility-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.credibility-content p strong {
    color: var(--text);
}

.credibility-metrics {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.metric-card {
    text-align: center;
    padding: 24px 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    min-width: 180px;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    display: block;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

/* Tools Section */
.tools-section {
    text-align: center;
    padding: 32px;
    background: var(--bg-muted);
    border-radius: var(--radius-xl);
}

.tools-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.tools-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tool-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.tool-badge:hover {
    border-color: var(--secondary);
}

.tool-badge svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--bg-muted);
}

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

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p strong {
    color: var(--text);
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-card {
    padding: 28px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bg-surface);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

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

.service-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.service-card--wide {
    grid-column: span 2;
}

.service-card--featured {
    border-color: var(--secondary);
    background: var(--bg-surface);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent-bg);
    color: var(--accent-text);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--accent);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--secondary-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    margin-bottom: 20px;
    flex-grow: 1;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.service-cta:hover {
    background: var(--secondary);
    color: var(--bg-surface);
}

.service-price {
    margin-top: auto;
    padding-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.services-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 16px 24px;
    background: var(--accent-bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.services-note svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.services-note span {
    font-size: 0.9375rem;
    color: var(--accent-text);
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-muted);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -12px;
    width: calc(100% - 72px);
    height: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--secondary-gradient);
    color: var(--bg-surface);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

.process-output {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 12px;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-text);
}

.process-output svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

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

.pricing-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--secondary);
}

.pricing-card--featured {
    border-color: var(--secondary);
    background: var(--bg-surface);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-bg);
    color: var(--accent-text);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--accent);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-includes {
    margin: 16px 0 20px;
    padding: 12px 16px;
    background: var(--bg-muted);
    border-radius: var(--radius);
}

.pricing-includes p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pricing-includes p strong {
    color: var(--text);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

.pricing-extras {
    background: var(--bg-muted);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.pricing-extras h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

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

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

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

.extra-name {
    font-weight: 600;
    color: var(--text);
}

.extra-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.extra-price {
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

.extras-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-muted);
}

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

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

.faq-item:hover {
    border-color: var(--secondary);
}

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

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

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

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

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-surface);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta .btn-primary {
    background: var(--bg-surface);
    color: var(--secondary);
    border-color: var(--bg-surface);
}

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

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.contact-content p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-response {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--secondary-soft);
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.contact-response svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-response span {
    font-size: 0.9375rem;
    color: var(--secondary-dark);
    font-weight: 500;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--secondary);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--bg-surface);
}

.contact-item span:last-child {
    font-weight: 500;
    color: var(--text);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: var(--section-padding);
    background: var(--bg-surface);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

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

.process-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.process-icon {
    width: 48px;
    height: 48px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.process-card.process-card--highlight {
    background: #0F766E;
    border-color: #0F766E;
}

.process-card.process-card--highlight .process-number {
    color: #ffffff;
    opacity: 0.4;
}

.process-card.process-card--highlight .process-icon {
    background: #ffffff;
}

.process-card.process-card--highlight .process-icon svg {
    stroke: #0F766E;
}

.process-card.process-card--highlight h3 {
    color: #ffffff;
}

.process-card.process-card--highlight p {
    color: #ffffff;
    opacity: 0.9;
}

.process-card.process-card--highlight:hover {
    background: #0B1F3B;
    border-color: #0B1F3B;
}

.process-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    background: #ffffff;
    color: #0F766E;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    padding: var(--section-padding);
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--secondary);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

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

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Process & FAQ Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-card {
        padding: 24px 20px;
    }

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

    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.form-response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--secondary-soft);
    border-radius: var(--radius);
    margin-bottom: 8px;
}

.form-response-time svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.form-response-time span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-dark);
}

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

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

/* Custom Select Styling */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9375rem;
    color: var(--text);
}

.custom-select-trigger:hover {
    border-color: var(--secondary);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--secondary-soft);
    background: var(--bg-surface);
}

.custom-select-trigger span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-trigger svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-height: 240px;
    overflow-y: auto;
}

.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 12px 18px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9375rem;
    color: var(--text);
}

.custom-select-option:hover {
    background: var(--secondary-soft);
    color: var(--secondary-dark);
}

.custom-select-option.selected {
    background: var(--secondary);
    color: var(--bg-surface);
}

.custom-select-option:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.custom-select-option:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--secondary-soft);
    outline: none;
    background: var(--bg-surface);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--secondary);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--secondary);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary);
    color: var(--bg-surface);
    padding: 60px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    margin-bottom: 16px;
    justify-content: center;
}

.footer-brand .logo-text {
    color: var(--bg-surface);
}

.footer-brand .logo-icon {
    background: var(--secondary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg-surface);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-surface);
    padding-left: 8px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--bg-surface);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-credit {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.footer-credit .heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-credit a {
    color: #89D6FB;
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--bg-surface);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.whatsapp-btn,
.phone-btn {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn {
    bottom: 100px;
    right: 24px;
    background: #25D366;
    color: var(--bg-surface);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: var(--bg-surface);
}

.phone-btn {
    bottom: 32px;
    right: 24px;
    background: var(--secondary);
    color: var(--bg-surface);
}

.phone-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
    color: var(--bg-surface);
}

.whatsapp-btn svg,
.phone-btn svg {
    width: 22px;
    height: 22px;
}

/* Mobile sticky CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.mobile-cta .btn {
    width: 100%;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-for {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .proof-bullets {
        align-items: center;
    }

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

    .hero-visual {
        display: none;
    }

    .hero-target .container {
        flex-direction: column;
        gap: 16px;
    }

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

    .about .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .process-step:nth-child(2)::after,
    .process-step:nth-child(4)::after {
        display: none;
    }

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

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

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

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        padding: 24px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-note {
        text-align: left;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .credibility-metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

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

    .service-card--wide {
        grid-column: span 1;
    }

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

    .process-step::after {
        display: none;
    }

    .contact .container {
        grid-template-columns: 1fr;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-btn .btn-text,
    .phone-btn .btn-text {
        display: none;
    }

    .whatsapp-btn,
    .phone-btn {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-btn {
        bottom: 88px;
    }

    .phone-btn {
        display: flex;
        bottom: 24px;
    }

    .mobile-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .pricing-card {
        padding: 24px;
    }

    .metric-value {
        font-size: 2rem;
    }
}
