/* ============================================
   Human Signal - Main Stylesheet
   ============================================ */

/* --------------------------------------------
   CSS Variables / Design Tokens
   -------------------------------------------- */
:root {
    /* Brand Colors */
    --teal-deep: #0d4f4f;
    --teal-primary: #147373;
    --teal-light: #1a9393;
    --teal-pale: #e6f5f5;
    
    --orange-primary: #e86c2c;
    --orange-bright: #ff7a3d;
    --orange-pale: #fff5f0;
    
    /* Neutrals */
    --cream: #fdfbf7;
    --charcoal: #1a1a1a;
    --gray-dark: #3d3d3d;
    --gray-mid: #6b6b6b;
    --gray-light: #a3a3a3;
    --white: #ffffff;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    --spacing-3xl: 120px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 100px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.08);
    --shadow-orange: 0 4px 20px rgba(232, 108, 44, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

/* --------------------------------------------
   Lucide Icon Sizing
   -------------------------------------------- */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 28px;
    height: 28px;
}

.icon-xl {
    width: 32px;
    height: 32px;
}

/* --------------------------------------------
   Utility Classes
   -------------------------------------------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.text-teal {
    color: var(--teal-primary);
}

.text-orange {
    color: var(--orange-primary);
}

/* --------------------------------------------
   Buttons
   -------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 108, 44, 0.4);
}

.btn-secondary {
    background: var(--teal-deep);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--teal-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--teal-primary);
    color: var(--teal-primary);
}

.btn-outline:hover {
    background: var(--teal-primary);
    color: var(--white);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--teal-deep);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}

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

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

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-deep) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--orange-primary);
    border-radius: 50%;
    top: 6px;
    right: -4px;
    opacity: 0.9;
}

.logo-mark::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    bottom: 8px;
    left: 8px;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--teal-deep);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width var(--transition-base);
}

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

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a.active:not(.btn) {
    color: var(--teal-primary);
}

.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-base);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-family: 'DM Serif Display', serif;
    color: var(--charcoal);
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.mobile-nav a.active {
    color: var(--teal-primary);
}

/* --------------------------------------------
   Section Styles
   -------------------------------------------- */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-mid);
    max-width: 600px;
    margin: var(--spacing-sm) auto 0;
}

.section--dark {
    background: var(--teal-deep);
    color: var(--white);
}

.section--dark .section-label {
    color: var(--orange-primary);
}

.section--dark .section-title {
    color: var(--white);
}

.section--white {
    background: var(--white);
}

.section--cream {
    background: var(--cream);
}

.section--gradient {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-primary) 100%);
    color: var(--white);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(20, 115, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 108, 44, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--teal-pale);
    color: var(--teal-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 span {
    color: var(--teal-primary);
    font-style: italic;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-mid);
    margin-bottom: var(--spacing-lg);
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-primary), var(--orange-primary));
}

.candidate-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
}

.candidate-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.candidate-avatar--orange {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
}

.candidate-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.candidate-info p {
    font-size: 0.875rem;
    color: var(--gray-mid);
}

.candidate-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-primary);
}

.candidate-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.stat-row {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--teal-pale);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--teal-deep);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-mid);
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    background: var(--orange-primary);
    color: var(--white);
}

.floating-badge.bottom-left {
    bottom: 40px;
    left: -40px;
    color: var(--teal-primary);
}

/* --------------------------------------------
   Page Hero
   -------------------------------------------- */
.page-hero {
    padding: 160px 0 80px;
    background: var(--teal-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .section-label {
    color: var(--orange-primary);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------
   Problem Section
   -------------------------------------------- */
.problem-section {
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    position: relative;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all var(--transition-smooth);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.problem-icon .icon {
    width: 32px;
    height: 32px;
}

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* --------------------------------------------
   Features Grid
   -------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.section--cream .feature-card {
    background: var(--white);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-primary), var(--teal-light));
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--teal-primary);
}

.feature-card h3 {
    font-size: 1.375rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-mid);
    font-size: 1rem;
    line-height: 1.7;
}

.feature-card ul {
    margin-top: var(--spacing-sm);
    color: var(--gray-mid);
    line-height: 1.8;
}

.feature-card li {
    padding-left: 20px;
    position: relative;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--teal-primary);
    border-radius: 50%;
}

/* --------------------------------------------
   Comparison Table
   -------------------------------------------- */
.comparison-table {
    max-width: 1000px;
    margin: var(--spacing-xl) auto 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--teal-deep);
}

.comparison-header > div {
    padding: var(--spacing-md);
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.comparison-header > div:first-child {
    text-align: left;
    opacity: 0;
}

.comparison-header .ats-header {
    background: rgba(0, 0, 0, 0.2);
}

.comparison-header .human-header {
    background: var(--orange-primary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
}

.comparison-row > div:first-child {
    font-weight: 600;
    color: var(--charcoal);
}

.comparison-row > div:nth-child(2),
.comparison-row > div:nth-child(3) {
    justify-content: center;
    text-align: center;
    color: var(--gray-mid);
}

.comparison-row > div:nth-child(3) {
    background: var(--orange-pale);
    color: var(--charcoal);
}

.check-icon-wrap,
.x-icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-xs);
    flex-shrink: 0;
}

.check-icon-wrap {
    background: #22c55e;
    color: var(--white);
}

.x-icon-wrap {
    background: #ef4444;
    color: var(--white);
}

.check-icon-wrap .icon,
.x-icon-wrap .icon {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

/* --------------------------------------------
   Process Timeline
   -------------------------------------------- */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-primary), var(--orange-primary));
}

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

.step-number {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 3px solid var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--teal-primary);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--teal-primary);
    color: var(--white);
}

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

.process-step p {
    color: var(--gray-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* --------------------------------------------
   Pricing Section
   -------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    position: relative;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--orange-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
}

.pricing-header .price {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--teal-deep);
    line-height: 1;
}

.pricing-header .price span {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--gray-mid);
}

.pricing-header .price-note {
    font-size: 0.875rem;
    color: var(--gray-mid);
    margin-top: var(--spacing-xs);
}

.pricing-features {
    margin-bottom: var(--spacing-md);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.pricing-features li .icon {
    color: var(--teal-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    color: var(--gray-mid);
    font-size: 0.95rem;
}

/* --------------------------------------------
   Ideal For Section
   -------------------------------------------- */
.ideal-section {
    position: relative;
    overflow: hidden;
}

.ideal-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 108, 44, 0.15) 0%, transparent 60%);
}

.ideal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.ideal-text .section-label {
    color: var(--orange-primary);
}

.ideal-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.ideal-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
}

.ideal-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ideal-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-base);
}

.ideal-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.ideal-card-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.ideal-card-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.ideal-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------
   CTA Section
   -------------------------------------------- */
.cta-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--teal-primary), var(--orange-primary));
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.cta-box p {
    color: var(--gray-mid);
    font-size: 1.25rem;
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cta-box--transparent {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.cta-box--transparent::before {
    display: none;
}

.cta-box--transparent h2 {
    color: var(--white);
}

.cta-box--transparent p {
    color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------
   Contact Section
   -------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-info-item:hover {
    background: var(--teal-pale);
}

.contact-info-item a {
    color: var(--charcoal);
    font-weight: 500;
}

.contact-info-item .icon {
    color: var(--teal-primary);
}

.contact-form {
    background: var(--cream);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal-primary);
}

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

.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-mid);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* --------------------------------------------
   Footer
   -------------------------------------------- */
.footer {
    background: var(--charcoal);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

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

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

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

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    font-size: 0.875rem;
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --------------------------------------------
   Responsive Styles
   -------------------------------------------- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .process-timeline::before {
        display: none;
    }

    .ideal-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

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

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

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

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

    .floating-badge {
        display: none;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header > div:first-child {
        display: none;
    }

    .comparison-row > div:first-child {
        background: var(--cream);
        font-size: 0.9rem;
    }

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

    .cta-box {
        padding: 48px 24px;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

    .page-hero {
        padding: 140px 0 60px;
    }
}
