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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.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;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

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

.btn-primary {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.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;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-candidate {
    background: #000;
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-candidate:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-candidate::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #000, #333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.loi-badge {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.loi-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.loi-logo {
    height: 20px;
    width: auto;
}

.hero-stat {
    text-align: center;
    margin: 2rem 0;
}

.stat-value {
    font-size: 6rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 0.5rem;
    line-height: 0.9;
}

.stat-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item-inline .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.stat-item-inline .stat-label {
    font-size: 0.9rem;
    color: #666;
}

.stat-divider {
    color: #ccc;
    font-size: 1.5rem;
}

.risk-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin: 1rem 0;
    font-weight: 500;
    line-height: 1.3;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-subtitle {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #000, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.ai-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid #000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ai-circle::before {
    content: 'AI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.trial-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trial-box {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #333;
    background: rgba(255, 255, 255, 0.9);
    animation: float 3s ease-in-out infinite;
}

.trial-box:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.trial-box:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.trial-box:nth-child(3) {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.demo-section .section-header p {
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

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

.about-text h3 {
    color: #000;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-features .feature-icon.rounded-square {
    border-radius: 8px;
}

.about-features .feature-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #000;
}

.about-features .feature-content p {
    color: #666;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.stat h4 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.flow-step i {
    font-size: 1.5rem;
    color: #000;
    width: 40px;
    text-align: center;
}

.flow-step span {
    font-weight: 500;
    color: #333;
}

.flow-arrow {
    width: 2px;
    height: 30px;
    background: #000;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #000;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Calculator Section */
.calculator {
    padding: 6rem 0;
    background: white;
}

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

.calculator-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calculator-widget h3 {
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.calc-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calc-results-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.calc-result {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.calc-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.calc-result .calc-icon {
    font-size: 1.2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.calc-content {
    flex: 1;
}

.calc-content h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.calc-content .calc-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.calc-content .calc-formula {
    font-size: 0.75rem;
    color: #666;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.input-group input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: #000;
}

.calculation-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calc-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.calc-card:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.calc-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.calc-card h4 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.calc-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.calc-formula {
    font-size: 0.9rem;
    color: #666;
}

.losses-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.losses-section h3 {
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.estimates-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.estimate-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.estimate-card h4 {
    color: #000;
    margin-bottom: 1rem;
}

.loss-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.loss-amount.conservative {
    color: #ff6b35;
}

.loss-amount.research {
    color: #d32f2f;
}

.loss-formula {
    font-size: 0.9rem;
    color: #666;
}

.disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* 1 Minute Hiring Section */
.one-minute-hiring {
    padding: 6rem 0;
    background: #f8f9fa;
}

.hiring-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #000;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Traditional Hiring Section */
.traditional-hiring {
    padding: 6rem 0;
    background: white;
}

.traditional-hiring .section-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.25rem;
    color: #333;
}

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

.traditional-text {
    text-align: left;
}

.traditional-text h2 {
    margin-bottom: 1rem;
}

.traditional-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.traditional-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.traditional-features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.traditional-features-list .feature-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.traditional-features-list .feature-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #000;
}

.traditional-features-list .feature-content p {
    color: #666;
    line-height: 1.6;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    font-style: italic;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #000;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Risk Section */
.risk-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.risk-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.risk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.risk-icon {
    width: 40px;
    height: 40px;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.risk-icon i {
    font-size: 1rem;
    color: white;
}

.risk-card h3 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.risk-card p {
    color: #666;
    line-height: 1.4;
    font-size: 0.85rem;
}

.savings-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.savings-cta h2 {
    color: #000;
    margin-bottom: 1rem;
}

.savings-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-stat {
    background: linear-gradient(135deg, #000, #333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: white;
}

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

.demo-info h3 {
    color: #000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.demo-benefits {
    list-style: none;
    padding: 0;
}

.demo-benefits li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.demo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.demo-form-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

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

.demo-form-container input,
.demo-form-container select,
.demo-form-container textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.demo-form-container select {
    background: white url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") no-repeat right 12px center;
    background-size: 12px;
    cursor: pointer;
}

.demo-form-container select option {
    background: white;
    color: #333;
    padding: 8px 12px;
}

.demo-form-container input:focus,
.demo-form-container select:focus,
.demo-form-container textarea:focus {
    outline: none;
    border-color: #000;
}

.demo-form-container textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.btn-demo {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-connector {
    text-align: center;
    margin: 2rem 0;
    padding-left: 50px;
}

.timeline-connector i {
    font-size: 1.5rem;
    color: #000;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border: 2px solid #000;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

.contact-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.contact-cta h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta-buttons .btn i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		transform: translateX(100%);
		width: 100%;
	}
	.nav-menu.active { transform: translateX(0); }
}   

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

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

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

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

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

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

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

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

    .calc-input-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calc-results-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

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

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

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

    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

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

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


@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .calc-results-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .stat-value {
        font-size: 4rem;
    }

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

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

    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Smooth scrolling and animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Hero Section Animations */
.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: aiPulse 3s infinite;
}

.ai-pulse:nth-child(1) {
    width: 220px;
    height: 220px;
    animation-delay: 0s;
}

.ai-pulse:nth-child(2) {
    width: 260px;
    height: 260px;
    animation-delay: 1s;
}

.ai-pulse:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

@keyframes aiPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.trial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    color: #000;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
    height: 2px;
    animation: lineGlow 4s infinite;
}

.line-1 {
    top: 30%;
    left: 20%;
    width: 150px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: 20%;
    width: 120px;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

.line-3 {
    bottom: 30%;
    left: 50%;
    width: 100px;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 3s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    animation: particleFloat 6s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    right: 25%;
    animation-delay: 1.2s;
}

.particle:nth-child(3) {
    bottom: 40%;
    left: 80%;
    animation-delay: 2.4s;
}

.particle:nth-child(4) {
    top: 50%;
    left: 5%;
    animation-delay: 3.6s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.8s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #000;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.company-logos {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.company-logos h4 {
    color: #000;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.logo-placeholder {
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: #000;
    color: white;
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #000;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding-top: 1rem;
}

/* Enhanced Mobile Navigation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Enhanced Statistics Section */
.stat {
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat:hover::before {
    left: 100%;
}


/* Responsive Updates */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .hero-graphic {
        width: 250px;
        height: 250px;
    }
    
    .ai-pulse:nth-child(1) {
        width: 170px;
        height: 170px;
    }
    
    .ai-pulse:nth-child(2) {
        width: 200px;
        height: 200px;
    }
    
    .ai-pulse:nth-child(3) {
        width: 230px;
        height: 230px;
    }
}  /* <-- properly closes the block above */

/* Make the hero background grid always cover on mobile and account for mobile browser UI */
@media (max-width: 768px) {
	.hero {
		min-height: 100svh;
		width: 100%;
		overflow-x: hidden;
		padding-top: calc(70px + env(safe-area-inset-top));
	}

	/* Re-assert the background-image and extend edges slightly */
	.hero::before {
		content: '';
		position: absolute;
		top: 0;
		left: -3px;     /* extend past edges to avoid 1px gap */
		right: -3px;
		bottom: 0;
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
		background-repeat: repeat;
		background-position: center top;
		/* let the SVG render at its native size for sharp lines */
		background-size: auto;
		opacity: 0.3;
		z-index: 1;
		pointer-events: none;
	}

	.hero-container { position: relative; z-index: 2; }

	/* Ensure no child forces overflow */
	.hero-graphic,
	.connection-lines,
	.floating-particles,
	.trial-boxes { max-width: 100%; }
}

/* Mobile typography and layout (readable wrapping) */
@media (max-width: 768px) {
	/* Keep natural word wrapping for headings */
	.hero-title {
		font-size: clamp(1.8rem, 6.5vw, 2.4rem);
		overflow-wrap: normal;
		word-break: normal;
	}

	/* Big number */
	.hero-stat .stat-value {
		font-size: clamp(3rem, 18vw, 6rem) !important;
		line-height: 1;
	}

	/* Subtitle below the big number */
	.stat-subtitle {
		font-size: clamp(1rem, 4.5vw, 1.4rem) !important;
		line-height: 1.3;
		max-width: 28ch;
		margin: 0 auto;
		overflow-wrap: normal;
		word-break: normal;
	}

	/* Give the block a little breathing room */
	.hero-stat { padding-left: 12px; padding-right: 12px; }


    /* Inline stats: wrap nicely into 2+ columns and avoid breaking words */
	.hero-stats-inline { flex-wrap: wrap; gap: 1rem; }
	.stat-item-inline { flex: 1 1 140px; }
	.stat-item-inline .stat-label {
		white-space: normal;
		overflow-wrap: normal;
		word-break: normal;
	}

	/* Guard containers from exceeding the viewport due to inner effects */
	.about .container,
	.risk-section .container,
	.traditional-hiring .container,
	.calculator .container,
	.demo-section .container,
	.footer .container { max-width: 100%; }
}

/* Traditional Hiring – mobile readability and no clipping */
@media (max-width: 768px) {
	.traditional-content {
		grid-template-columns: 1fr;   /* stack columns */
		gap: 1.5rem;
	}

	.traditional-text { padding: 0 12px; }

	.traditional-text h2 {
		font-size: clamp(1.6rem, 6vw, 2rem);
		line-height: 1.2;
		overflow-wrap: normal;
		word-break: normal;
		hyphens: auto;
	}

	.traditional-features-list { padding: 0 12px; }

	.traditional-features-list .feature-icon {
		width: 44px;
		height: 44px;
	}

	.traditional-features-list .feature-content h4 {
		font-size: 1.05rem;
	}

	.traditional-features-list .feature-content p {
		font-size: 0.95rem;
		overflow-wrap: normal;
		word-break: normal;
	}
}

/* Mobile navbar: sticky header + expanding dropdown that pushes content */
@media (max-width: 768px) {
	/* Header participates in layout so expansion pushes content down */
	.navbar {
		position: sticky;
		top: 0;
		min-height: 64px;
		z-index: 1000;
	}

	.nav-container {
		height: 64px;
		align-items: center;
	}

	/* Keep hamburger tappable above everything */
	.hamburger { z-index: 1001; }

	/* Mobile dropdown: fixed, full-bleed under the navbar */
	.nav-menu {
		position: fixed;
		top: 64px;                 /* match navbar height */
		left: 0;
		right: 0;                  /* ensures it reaches the right edge */
		width: 100vw;              /* full viewport width */
		margin: 0;

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;

		/* closed state (accordion) */
		max-height: 0;
		overflow: hidden;
		padding: 0;

		/* match navbar visuals */
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		z-index: 1000;

		transition: max-height 0.3s ease, padding 0.3s ease;
	}

	.nav-menu.active {
		max-height: 320px;         /* enough height for all items */
		padding: 1.25rem 0;
	}

	/* Slightly tighten spacing for the CTA */
	.btn-candidate { padding: 10px 20px; }
}

/* Footer mobile: brand full-width on top, two centered columns below */
@media (max-width: 768px) {
	.footer-content {
		display: grid;
		grid-template-columns: 1fr 1fr;  /* two columns */
		gap: 2rem;
		max-width: 640px;                /* center the grid */
		margin-left: auto;
		margin-right: auto;

		/* center content within each column */
		text-align: center;
		justify-items: center;
		align-items: start;
	}

	/* First section ("Appli Solutions") spans both columns and stays centered */
	.footer-content .footer-section:first-child {
		grid-column: 1 / -1;
		text-align: center;
	}

	/* Center list items within columns */
	.footer-section ul { margin: 0; padding: 0; text-align: center; }
	.footer-section ul li { list-style: none; }
}

/* Mobile: fix $1M stats layout and dividers */
@media (max-width: 768px) {
	/* Turn the inline stats into a 2x2 centered grid */
	.hero-stats-inline {
		display: grid;
		grid-template-columns: repeat(2, minmax(120px, 1fr));
		gap: 1.25rem 2rem;
		justify-items: center;
		align-items: center;
		margin-top: 1.25rem;
	}

	/* Hide the vertical pipe dividers on small screens */
	.stat-divider { display: none; }

	/* Center each stat cell and keep readable sizes */
	.stat-item-inline { text-align: center; }

	.stat-item-inline .stat-number {
		font-size: clamp(1.1rem, 4.5vw, 1.4rem);
		line-height: 1.1;
	}

	.stat-item-inline .stat-label {
		font-size: clamp(0.8rem, 3.5vw, 0.95rem);
		line-height: 1.2;
		color: #666;
	}
}

/* Mobile: 2x2 stats with visible "|" dividers between columns */
@media (max-width: 768px) {
	.hero-stats-inline {
		display: grid;
		grid-template-columns: 1fr auto 1fr;  /* stat | divider | stat */
		column-gap: 1.5rem;
		row-gap: 1.25rem;
		justify-items: center;
		align-items: center;
	}

	/* Style the "|" separators for mobile */
	.hero-stats-inline .stat-divider {
		display: block;
		font-size: 1.6rem;
		color: #ccc;
		line-height: 1;
	}

	/* Place items into the grid (based on current HTML order) */
	.hero-stats-inline > :nth-child(1) { grid-column: 1; grid-row: 1; } /* $100K+ */
	.hero-stats-inline > :nth-child(2) { grid-column: 2; grid-row: 1; } /* | */
	.hero-stats-inline > :nth-child(3) { grid-column: 3; grid-row: 1; } /* 23% */
	.hero-stats-inline > :nth-child(4) { grid-column: 2; grid-row: 2; } /* | */
	.hero-stats-inline > :nth-child(5) { grid-column: 1; grid-row: 2; } /* 46% */
	.hero-stats-inline > :nth-child(6) { display: none; }               /* hide extra divider */
	.hero-stats-inline > :nth-child(7) { grid-column: 3; grid-row: 2; } /* $1M+ */
}

/* Mobile: align step titles/subtitles with their numbers */
@media (max-width: 768px) {
	/* Use a two-column grid: [number] [content] */
	.timeline-step {
		display: grid;
		grid-template-columns: 50px 1fr;   /* bubble column, content column */
		gap: 1rem 1rem;
		align-items: start;
		text-align: left;                  /* no center text */
		max-width: 640px;                  /* center the whole row */
		margin: 0 auto 2rem;
	}

	/* Center the bubble within its narrow column */
	.timeline-step .step-number {
		justify-self: center;
		align-self: start;
	}

	/* Ensure the content column lines up with the number column */
	.timeline-step .step-content {
		margin: 0;      /* remove any inherited center margins */
	}

	/* Keep the arrow connector centered under the grid */
	.timeline-connector {
		text-align: center;
		padding-left: 0;
	}
}

/* Desktop: ensure hero content is left-aligned and buttons start at left */
@media (min-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr 1fr;  /* two columns */
		text-align: left;                /* no centering */
	}

	.hero-content { text-align: left; }
	.hero-buttons { justify-content: flex-start; }

	/* Keep the visual anchored to the right side */
	.hero-visual {
		justify-content: flex-end;
	}
}

/* Desktop: hero section matching second screenshot */
@media (min-width: 1200px) {
	.hero-title {
		font-size: clamp(2.8rem, 3.5vw, 4rem);  /* smaller title */
		line-height: 1.1;
		max-width: 18ch;
	}

	.hero-description {
		font-size: clamp(1.1rem, 1.2vw, 1.4rem);  /* bigger subtitle */
		max-width: 62ch;
	}

	/* Move visual further left and make it bigger */
	.hero-visual { 
		justify-content: flex-end; 
	}
	
	.hero-graphic { 
		transform: translateX(-30px);  /* move further left */
		width: 480px;                   /* bigger graphic */
		height: 480px;
	}

	/* Scale up the AI elements */
	.ai-circle {
		width: 240px;
		height: 240px;
	}

	.ai-pulse:nth-child(1) {
		width: 260px;
		height: 260px;
	}

	.ai-pulse:nth-child(2) {
		width: 300px;
		height: 300px;
	}

	.ai-pulse:nth-child(3) {
		width: 340px;
		height: 340px;
	}
}

/* Desktop: center left column with right column features */
@media (min-width: 1024px) {
	/* Two columns: left copy centered, right features aligned to top */
	.about-content {
		grid-template-columns: 1.1fr 1fr;
		align-items: center;        /* centers left column with right column */
		gap: 3rem 4rem;
	}

	/* Left column typography and width */
	.about-text h2 {
		font-size: clamp(2.25rem, 3vw, 3.25rem);
		line-height: 1.15;
		max-width: 22ch;
		margin-bottom: 1rem;
		text-align: left;
	}
	.about-text p {
		max-width: 62ch;
		text-align: left;
	}

	/* Right column feature rows: icon + text aligned on a tidy grid */
	.about-features .feature-item {
		display: grid;
		grid-template-columns: 56px 1fr;   /* icon | content */
		align-items: start;
		column-gap: 1.25rem;
	}

	.about-features .feature-icon {
		width: 56px;
		height: 56px;
	}

	.about-features .feature-content h4 {
		font-size: 1.25rem;
		font-weight: 600;
		margin-bottom: 0.35rem;
	}
	.about-features .feature-content p {
		max-width: 60ch;
	}
}

/* Desktop: align step titles side-by-side with numbers */
@media (min-width: 1024px) {
	.timeline-step {
		display: grid;
		grid-template-columns: 50px 1fr;   /* number | content */
		gap: 1rem 1.5rem;
		align-items: start;
		text-align: left;
		max-width: 800px;
		margin: 0 auto 2rem;
	}

	/* Center the number bubble in its column */
	.timeline-step .step-number {
		justify-self: center;
		align-self: start;
	}

	/* Ensure content starts aligned with the number */
	.timeline-step .step-content {
		margin: 0;
		padding: 0;
	}

	/* Center the arrow connector */
	.timeline-connector {
		text-align: center;
		padding-left: 0;
	}
}

/* Desktop: three-column footer layout */
@media (min-width: 1024px) {
	.footer-content {
		display: grid;
		grid-template-columns: 2fr 1fr 1fr;  /* brand | quick links | resources */
		gap: 3rem;
		text-align: left;
		max-width: 1200px;
		margin: 0 auto;
		align-items: start;
		padding-bottom: 4rem;  /* more bottom padding */
	}

	/* Brand section takes up more space on the left */
	.footer-content .footer-section:first-child {
		grid-column: 1;
		text-align: left;
		margin-bottom: 0;
	}

	/* Force brand description to wrap to 3 lines */
	.footer-content .footer-section:first-child p {
		max-width: 28ch;  /* narrower width forces more wrapping */
		line-height: 1.4;
	}

	/* Quick Links and Resources in their own columns */
	.footer-section ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.footer-section ul li {
		margin-bottom: 0.5rem;
	}

	.footer-section ul li a {
		color: #ccc;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.footer-section ul li a:hover {
		color: white;
	}
}

/* Desktop: demo section side-by-side layout */
@media (min-width: 1024px) {
	.demo-content {
		display: grid !important;
		grid-template-columns: 1fr 1.5fr !important;  /* info | wider form */
		gap: 4rem !important;
		align-items: start !important;
	}

	/* Left side: title and checklist */
	.demo-info {
		text-align: left !important;
	}

	.demo-info h3 {
		font-size: 2rem !important;
		margin-bottom: 2rem !important;
	}

	/* Right side: shorter, wider form */
	.demo-form {
		width: 100% !important;
	}

	.demo-form-container {
		width: 100% !important;
		max-width: none !important;
		padding: 2rem 2.5rem !important;  /* less vertical, more horizontal padding */
		min-height: auto !important;     /* remove any height constraints */
	}

	/* Make form inputs two columns with more space */
	.demo-form-container .form-row {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;  /* two columns */
		gap: 1.5rem !important;  /* gap between columns */
		margin-bottom: 1.25rem !important;  /* less vertical spacing */
	}

	/* Make input fields shorter vertically, wider horizontally */
	.demo-form-container input,
	.demo-form-container select {
		padding: 12px 16px !important;  /* less vertical padding */
		width: 100% !important;
		min-width: 0 !important;
		font-size: 1rem !important;
		height: auto !important;        /* remove height constraints */
	}

	/* Shorter button */
	.btn-demo {
		grid-column: 1 / -1 !important;
		width: 100% !important;
		padding: 12px 30px !important;  /* shorter button */
		margin-top: 0.5rem !important;
	}
}

/* Desktop: calculator inputs side-by-side */
@media (min-width: 1024px) {
	.calc-input-row {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;  /* two columns */
		gap: 2rem !important;
		margin-bottom: 2rem !important;
	}

	/* Make input fields wider to align with result boxes */
	.input-group input {
		width: 100% !important;
		max-width: none !important;  /* remove width limit */
		padding: 12px 16px !important;
	}

	/* Ensure labels stay above inputs */
	.input-group {
		display: flex !important;
		flex-direction: column !important;
	}
}