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

:root {
    /* Apiary Data Brand Colors */
    --primary-blue: #1e3a8a;      /* Dark blue from logo */
    --secondary-blue: #3b82f6;    /* Lighter blue for accents */
    --accent-beige: #d97706;      /* Beige/tan from logo */
    --light-beige: #fbbf24;       /* Lighter beige */
    --dark-bg: #111827;           /* Dark background */
    --text-dark: #1f2937;         /* Dark text */
    --text-light: #6b7280;        /* Light text */
    --white: #ffffff;
    --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;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

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

.logo-image {
    height: 65px;
    width: auto;
}

.logo-graphic {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-graphic.small {
    width: 32px;
    height: 32px;
}

.hexagon-outer {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--primary-blue);
}

.hexagon-inner {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--dark-bg);
}

.hexagon-core {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--primary-blue);
}

.data-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    background-color: var(--accent-beige);
    position: absolute;
}

.stack-1, .stack-2, .stack-3 {
    width: 4px;
    height: 14px;
    border-radius: 2px;
}

.stack-1 {
    left: 18%;
    height: 18px;
    transform: rotate(-20deg);
}

.stack-2 {
    left: 32%;
    height: 16px;
    transform: rotate(-10deg);
}

.stack-3 {
    left: 48%;
    height: 14px;
    transform: rotate(-5deg);
}

.block {
    width: 10px;
    height: 10px;
    right: 18%;
    border-radius: 3px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.05em;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-subheading {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.analytics-dashboard {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15), 0 0 0 1px rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.analytics-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--accent-beige));
    border-radius: 20px 20px 0 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    transition: all 0.3s ease;
}

.control-dot:first-child {
    background-color: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.control-dot:nth-child(2) {
    background-color: var(--accent-beige);
}

.control-dot:last-child {
    background-color: var(--gray-400);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
    padding: 16px;
    background: rgba(30, 58, 138, 0.02);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 8px 8px 0 0;
    min-height: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px 8px 0 0;
}

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

.metric {
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.1);
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Complete Platform Section */
.complete-platform {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.platform-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.platform-card-highlight {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 2px solid var(--primary-blue);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.icon-hexagon {
    width: 60px;
    height: 60px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-hexagon::before,
.icon-hexagon::after {
    display: none;
}

.icon-inner {
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-main {
    display: contents;
}

.solution-feature {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(30, 58, 138, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-feature:hover::before {
    opacity: 1;
}

.solution-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.15);
}

.solution-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: var(--primary-blue);
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.solution-feature:hover .solution-number {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-icon-inline {
    font-size: 2rem;
    line-height: 1;
}

.solution-content h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.solution-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.warehouse-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.warehouse-tag {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.warehouse-name {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.warehouse-text {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.workflow-simple {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 4rem auto 2rem;
}

.workflow-step-simple {
    flex: 1;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 1.75rem;
    border-radius: 20px;
    border: 2px solid rgba(30, 58, 138, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.06);
}

.workflow-step-highlight {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
}

.workflow-step-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.2);
}

.step-number-simple {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    border: 4px solid var(--white);
}

.workflow-step-simple h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.workflow-step-simple p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.workflow-arrow-simple {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    opacity: 0.4;
}

.workflow-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(30, 58, 138, 0.1);
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 4rem auto 0;
    position: relative;
    padding-top: 2rem;
}

.workflow-step {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(30, 58, 138, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workflow-step:hover::before {
    opacity: 1;
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.2);
}

/* Top row: Steps 1, 2, 3 */
.workflow-step.top-left {
    grid-column: 1;
    grid-row: 1;
}

.workflow-step.top-center {
    grid-column: 2;
    grid-row: 1;
}

.workflow-step.top-right {
    grid-column: 3;
    grid-row: 1;
}

/* Bottom row: Steps 4 & 5 */
.workflow-step.bottom-left {
    grid-column: 1 / 2;
    grid-row: 2;
}

.workflow-step.bottom-right {
    grid-column: 2 / 4;
    grid-row: 2;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
}

.workflow-step.bottom-right::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.workflow-step.bottom-right:hover {
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.workflow-step.bottom-right h3,
.workflow-step.bottom-right p {
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    border: 4px solid var(--white);
    z-index: 10;
    transition: all 0.3s ease;
}

.workflow-step:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.4);
}

.workflow-step.bottom-right .step-number {
    background: linear-gradient(135deg, var(--white) 0%, #f0f9ff 100%);
    color: var(--primary-blue);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    transform: scale(1.05);
}

.workflow-step.bottom-right .step-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.workflow-step.bottom-right:hover .step-icon {
    background: rgba(255, 255, 255, 0.25);
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

.workflow-step h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.workflow-step.bottom-right h3 {
    font-size: 1.4rem;
}

.workflow-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
}

.workflow-step.bottom-right p {
    max-width: 100%;
    font-size: 1rem;
    opacity: 0.95;
}

.workflow-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Animate flow lines on page load */
.flow-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    opacity: 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.2);
    animation: flowAppear 0.8s ease-out forwards;
}

.flow-line.horizontal {
    animation-delay: 0.2s;
}

.flow-line.horizontal.right {
    animation-delay: 0.4s;
}

.flow-line.vertical {
    animation-delay: 0.3s;
}

.flow-line.vertical.right {
    animation-delay: 0.5s;
}

.flow-line.diagonal {
    animation-delay: 0.6s;
}

@keyframes flowAppear {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 0.6;
        transform: scaleX(1);
    }
}

/* Hover effects for flow lines */
.workflow-step:hover ~ .workflow-flow .flow-line,
.workflow-step:hover + .workflow-flow .flow-line {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.flow-line.horizontal.top {
    width: 120px;
    height: 3px;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.flow-line.horizontal.bottom {
    width: 120px;
    height: 3px;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
}

.flow-line.vertical.left {
    width: 3px;
    height: 120px;
    top: 25%;
    left: 25%;
    transform: translateX(-50%);
}

.flow-line.vertical.right {
    width: 3px;
    height: 120px;
    top: 25%;
    left: 75%;
    transform: translateX(-50%);
}

.flow-line.diagonal.left {
    width: 3px;
    height: 80px;
    top: 35%;
    left: 25%;
    transform: translateX(-50%) rotate(45deg);
}

.flow-line.diagonal.right {
    width: 3px;
    height: 80px;
    top: 35%;
    left: 75%;
    transform: translateX(-50%) rotate(-45deg);
}

/* Responsive adjustments for workflow */
@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .workflow-step.top-left,
    .workflow-step.top-center,
    .workflow-step.top-right,
    .workflow-step.bottom-left,
    .workflow-step.bottom-right {
        grid-column: 1;
        grid-row: auto;
    }
    
    .flow-line {
        display: none;
    }
    
    .workflow-step {
        padding: 2rem 1.5rem;
    }
}

/* Why Teams Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

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

.why-card {
    background: var(--gray-50);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    background: var(--white);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* How We're Different Section */
.different {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.comparison-header-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.comparison-header-card.traditional {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border-bottom: 3px solid var(--gray-400);
}

.comparison-header-card.apiary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-bottom: 3px solid var(--primary-blue);
}

.comparison-header-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.comparison-header-card.apiary .comparison-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.comparison-header-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.comparison-header-card.apiary p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.comparison-list {
    list-style: none;
    padding: 2.5rem 2rem;
    margin: 0;
}

.comparison-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}

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

.comparison-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--gray-400);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-list.apiary-list li::before {
    content: '✓';
    color: var(--primary-blue);
}

.comparison-list.apiary-list li {
    font-weight: 500;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background-color: var(--white);
}

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

.benefits-text {
    margin-bottom: 3rem;
}

.benefits-text p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.benefit-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-svg-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-svg {
    width: 100%;
    height: 100%;
}

.benefit-card:hover .benefit-svg-wrapper {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
    border: 3px solid rgba(30, 58, 138, 0.1);
}

/* Option 1: Timeline/Journey */
.timeline-graphic {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
    border: 3px solid var(--gray-200);
}

.timeline-icon.chaos {
    border-color: #ef4444;
    background: #fef2f2;
}

.timeline-icon.building {
    border-color: var(--accent-beige);
    background: #fef3c7;
}

.timeline-icon.success {
    border-color: #10b981;
    background: #f0fdf4;
}

.timeline-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Option 2: Before/After */
.before-after-graphic {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.before-section, .after-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scattered-boxes {
    position: relative;
    width: 140px;
    height: 140px;
}

.data-box {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-beige);
    border-radius: 6px;
    opacity: 0.7;
}

.data-box:nth-child(1) { top: 10px; left: 20px; transform: rotate(15deg); }
.data-box:nth-child(2) { top: 50px; left: 80px; transform: rotate(-10deg); }
.data-box:nth-child(3) { top: 90px; left: 30px; transform: rotate(25deg); }
.data-box:nth-child(4) { top: 30px; right: 20px; transform: rotate(-20deg); }
.data-box:nth-child(5) { bottom: 20px; right: 30px; transform: rotate(5deg); }

.organized-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 140px;
}

.stack-layer {
    height: 35px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.stack-layer:nth-child(2) {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #60a5fa 100%);
}

.stack-layer:nth-child(3) {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.transform-arrow {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Option 4: Stack Architecture */
.stack-architecture {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.stack-layer-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stack-layer-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.15);
    transform: translateX(8px);
}

.layer-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 12px;
}

.layer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-form {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.form-container h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-container p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 1rem;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

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

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

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

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-highlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-feature {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .solution-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workflow-step.final {
        grid-column: 1;
        grid-row: auto;
    }
    
    .flow-line {
        display: none;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem 0.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Statistics Highlight Bar */
.stats-highlight {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stats-highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.stats-highlight-content {
    text-align: left;
}

.stats-highlight-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stats-highlight-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 500;
}

/* CTA Section (replaces contact section) */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--gray-900) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-benefit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Signup Page Styles */
.signup-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.signup-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.signup-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.signup-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.signup-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.signup-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.signup-benefit-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.signup-form-section {
    padding: 80px 0;
    background: var(--white);
}

.signup-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
    border: 1px solid var(--gray-200);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.signup-trust {
    padding: 60px 0;
    background: var(--gray-50);
}

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

.trust-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

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

.trust-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Responsive adjustments for signup page */
@media (max-width: 768px) {
    .signup-hero-content h1 {
        font-size: 2.25rem;
    }

    .signup-benefits-list {
        grid-template-columns: 1fr;
    }

    .signup-form-container {
        padding: 2rem;
    }

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

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}
