/* ===================================
   ZappPropostas Landing Page Styles
   Modern, Professional Design
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Palette: sage green with dark slate for contrast */
    --primary: #90AB8B;
    --primary-dark: #5A7863;
    --primary-light: #a3bda5;
    --secondary: #FFCFCF;
    --accent: #FFE2E2;

    /* Dark slate for typography contrast */
    --slate: #3B4953;
    --forest: #5A7863;

    /* Warm accent for CTAs */
    --warm: #C4654A;
    --warm-dark: #A8503A;
    --warm-light: #D4785E;

    --success: #5A7863;
    --warning: #e5a84b;
    --error: #d97373;
    --info: #3B4953;

    --cream: #EBF4DD;
    --pink-light: #FFE2E2;
    --pink: #FFCFCF;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --black: #000000;

    /* Solid backgrounds */
    --bg-primary: var(--primary);
    --bg-dark: var(--slate);
    --bg-subtle: var(--gray-50);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-primary);

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

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.gradient-text {
    color: var(--warm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn i {
    font-size: 0.9em;
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--warm);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(196, 101, 74, 0.3);
}

.btn-primary:hover {
    background: var(--warm-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 101, 74, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(134, 167, 136, 0.05);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-100);
    color: var(--slate);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--slate);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.7;
}

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

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

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--warm);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.2rem;
}

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

.logo-text .highlight {
    color: var(--warm);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--primary);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-pattern {
    display: none;
}

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

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(90, 120, 99, 0.1);
    color: var(--forest);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    border: 1px solid rgba(90, 120, 99, 0.2);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--slate);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #f59e0b; }
.dashboard-dots span:nth-child(3) { background: #10b981; }

.dashboard-title {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

.mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mini-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mini-card i {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.mini-card.card-primary i { background: var(--gray-100); color: var(--slate); }
.mini-card.card-success i { background: var(--gray-100); color: var(--forest); }
.mini-card.card-warning i { background: var(--gray-100); color: #c4915c; }
.mini-card.card-info i { background: var(--gray-100); color: var(--slate); }

.mini-card-info {
    display: flex;
    flex-direction: column;
}

.mini-card-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.mini-card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.pipeline-preview {
    grid-column: span 2;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
}

.pipeline-stage {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pipeline-stage:last-child {
    margin-bottom: 0;
}

.stage-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    width: 80px;
}

.stage-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.stage-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--width);
    background: var(--slate);
    border-radius: var(--radius-full);
    animation: growBar 1.5s ease-out forwards;
}

.stage-bar.success::after {
    background: var(--forest);
}

@keyframes growBar {
    from { width: 0; }
    to { width: var(--width); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--forest);
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--slate);
}

.trust-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--section-padding) 0;
}

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

.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(134, 167, 136, 0.4);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.feature-icon.icon-blue { background: var(--slate); }
.feature-icon.icon-green { background: var(--forest); }
.feature-icon.icon-purple { background: #6b5b7a; }
.feature-icon.icon-orange { background: var(--warm-light); }
.feature-icon.icon-red { background: #b07c7c; }

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--slate);
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    padding: 60px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.showcase-content {
    max-width: 480px;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--warm);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.showcase-badge i {
    font-size: 0.75rem;
}

.showcase-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 16px;
}

.showcase-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.showcase-features li i {
    color: var(--forest);
    font-size: 0.85rem;
}

.showcase-visual {
    display: flex;
    justify-content: center;
}

/* Proposal Preview */
.proposal-preview {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.proposal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.proposal-dots {
    display: flex;
    gap: 6px;
}

.proposal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.proposal-dots span:first-child { background: #ff5f57; }
.proposal-dots span:nth-child(2) { background: #ffbd2e; }
.proposal-dots span:last-child { background: #28ca42; }

.proposal-title {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.proposal-content {
    padding: 16px;
}

/* Builder Layout */
.builder-layout {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.builder-sidebar {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-label {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 8px;
    margin-bottom: 4px;
}

.section-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.section-item i {
    font-size: 0.65rem;
    width: 14px;
    text-align: center;
}

.section-item:hover {
    background: var(--gray-100);
}

.section-item.active {
    background: var(--forest);
    color: var(--white);
}

.section-add {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all var(--transition);
}

.section-add:hover {
    border-color: var(--slate);
    color: var(--slate);
}

.builder-canvas {
    flex: 1;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-preview {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cover-logo {
    width: 40px;
    height: 40px;
    background: var(--slate);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1rem;
}

.cover-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 6px;
}

.cover-client {
    font-size: 0.8rem;
    color: var(--forest);
    font-weight: 500;
    margin-bottom: 12px;
}

.cover-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.7rem;
    color: var(--gray-400);
}

.proposal-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.action-btn:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

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

.action-btn.primary:hover {
    background: var(--warm-dark);
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: 60px 0;
    background: var(--gray-50);
}

.value-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-prop i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--slate);
    border-radius: var(--radius);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
}

.value-prop strong {
    display: block;
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 4px;
}

.value-prop span {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: var(--section-padding) 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.process-step {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(90, 120, 99, 0.25);
}

.step-content {
    flex: 1;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--slate);
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.step-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 8px 14px;
    border-radius: var(--radius-full);
}

.step-details span i {
    color: var(--primary);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.pricing-model {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
}

.main-pricing {
    grid-row: span 2;
}

.pricing-header {
    padding: 36px 36px 0;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--slate);
}

.pricing-description {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.pricing-body {
    padding: 36px;
}

.price-structure {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-label i {
    color: var(--primary);
    font-size: 1.1rem;
}

.price-label span {
    font-weight: 500;
    color: var(--gray-700);
}

.price-value {
    text-align: right;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.price-action {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.price-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 16px 0;
}

.pricing-includes h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.pricing-includes ul {
    margin-bottom: 24px;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-includes li i {
    color: var(--success);
    font-size: 0.9rem;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.option-card:hover {
    border-color: rgba(134, 167, 136, 0.3);
    box-shadow: var(--shadow);
}

.option-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--forest);
    border-radius: var(--radius);
    font-size: 1.1rem;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.option-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--slate);
}

.option-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.option-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.option-card ul li i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Pricing Note */
.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 20px 24px;
    background: rgba(134, 167, 136, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(134, 167, 136, 0.1);
}

.pricing-note i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--gray-800);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--slate);
}

.contact-info > p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--forest);
    border-radius: var(--radius);
    font-size: 1.1rem;
    border: 1px solid var(--gray-200);
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.method-info a,
.method-info span {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 500;
}

.method-info a:hover {
    color: var(--forest);
}

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

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--slate);
    color: var(--white);
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--slate);
    box-shadow: 0 0 0 3px rgba(59, 73, 83, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}

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

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

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.form-note i {
    font-size: 0.8rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--slate);
    color: var(--white);
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

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

.footer-simple .logo-text .highlight {
    color: var(--warm-light);
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-bottom i {
    color: #ef4444;
    margin: 0 4px;
}

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }

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

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

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

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

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

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .feature-showcase {
        gap: 40px;
        padding: 50px;
    }

    .showcase-content h3 {
        font-size: 1.6rem;
    }

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

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

    .pricing-options {
        flex-direction: row;
    }

    .option-card {
        flex: 1;
    }

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

    .footer-simple {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

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

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

    .section-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .stat-divider {
        display: none;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .pipeline-preview {
        grid-column: span 1;
    }

    .trust-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

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

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
        margin-top: 60px;
    }

    .showcase-content {
        text-align: center;
        max-width: 100%;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
    }

    .showcase-features {
        align-items: center;
    }

    .proposal-preview {
        max-width: 100%;
    }

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

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .step-content {
        padding: 20px;
    }

    .pricing-options {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

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

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

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

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

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

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

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

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

    .scroll-indicator {
        display: none;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Intersection Observer Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Stagger animations for grid items */
.features-grid .feature-card {
    opacity: 0;
    transform: translateY(30px);
}

.features-grid .feature-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.features-grid .feature-card:nth-child(1).animate { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2).animate { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3).animate { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4).animate { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(5).animate { animation-delay: 0.5s; }
.features-grid .feature-card:nth-child(6).animate { animation-delay: 0.6s; }
