@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #305CDE;
    --primary-hover: #1e3a8a;
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --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-glow: 0 0 15px rgba(48, 92, 222, 0.3);
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --container-max: 1200px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container Utility */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.2;
    color: var(--text-main);
}

p {
    margin: 0 0 1rem 0;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

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

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

.TSD-logo {
    height: 32px;
    width: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 4px;
}


nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

nav a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 8px rgba(48, 92, 222, 0.2);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(48, 92, 222, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px 0;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(48, 92, 222, 0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(48, 92, 222, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(48, 92, 222, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(48, 92, 222, 0.1);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0f172a 0%, #305CDE 50%, #0f172a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 6s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-cta-primary {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.hero-cta-secondary {
    background: #ffffff;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
    padding: 16px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.hero-cta-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Trust Row */
.trust-row {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.trust-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.trust-logos:hover {
    transform: translateY(-2px);
}

.trust-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Blue Lines - Updated */
.blue-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    opacity: 0.8;
}

.line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
}

.line:nth-child(2) {
    width: 40px;
    opacity: 0.6;
}

/* Section Utility */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(48, 92, 222, 0.05);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.stats-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(48, 92, 222, 0.15);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon-wrapper {
    transform: scale(1.1);
    background: rgba(48, 92, 222, 0.05);
}

.stat-svg {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
}

.stat-box h3 {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 700;
}

.stat-box p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
}

/* Calculator Section */
.missed-calls-stat {
    text-align: center;
    padding: 80px 20px 40px 20px;
    background: var(--bg-light);
}

.missed-calls-stat h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.missed-calls-stat h2 span {
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calculator-section {
    padding: 40px 0 100px 0;
    background-color: var(--bg-light);
}

.calculator-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.calculator-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
}

.calculator-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-row label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.value-display {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.input-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(48, 92, 222, 0.4);
    transition: transform 0.1s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calculator-result {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 100px 0;
    text-align: center;
    background: #0f172a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(48, 92, 222, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bottom-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.bottom-cta p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.result-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.revenue-display {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1;
    text-shadow: var(--shadow-glow);
}

.estimate-pill {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.stop-losing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.2);
}

.stop-losing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(48, 92, 222, 0.3);
}

/* Workflow Section */
.workflow-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.workflow-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.workflow-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--border-color) 0%, var(--primary-blue) 50%, var(--border-color) 100%);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: relative;
    width: 48px;
    height: 48px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-dot {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.bolt-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.timeline-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    flex-grow: 1;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    border-color: rgba(48, 92, 222, 0.2);
    box-shadow: var(--shadow-md);
}

.timeline-content.highlight {
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light) 100%);
    border-color: rgba(48, 92, 222, 0.3);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0;
}

/* Integrations Section */
.integrations-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.integrations-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.integrations-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-8px);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.integration-item:hover .integration-icon {
    box-shadow: var(--shadow-md);
    border-color: rgba(48, 92, 222, 0.2);
}

.integration-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

/* Footer */
footer {
    background-color: #0f172a !important;
    color: #f8fafc;
    padding: 60px 0 40px 0;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: none;
}

.social-icon:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    border-color: transparent;
    color: #ffffff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Specific Page Overrides */

/* About Us */
.page-header {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.founder-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.founder-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

/* Agents Page */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.agent-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(48, 92, 222, 0.3);
}

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

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

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

.feature-list li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
}

/* Problem Solution Section */
.problem-solution {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.label-bad {
    display: inline-block;
    padding: 4px 12px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.label-good {
    display: inline-block;
    padding: 4px 12px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}
/* Comparison List Utility */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.comparison-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-weight: 500;
}

.comparison-list.bad li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.comparison-list.good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(48, 92, 222, 0.2);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(48, 92, 222, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Meet Agents Section */
.meet-agents {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.agent-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.agent-profile {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-xl);
    display: flex;
    gap: 30px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.agent-profile:hover {
    transform: translateY(-8px);
}

.agent-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.drew-bg { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.alex-bg { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }

.agent-info h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.agent-role {
    display: block;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.agent-info p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.agent-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.agent-tags span {
    padding: 4px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .split-layout, .agent-showcase, .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 10px 0;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 14px;
    }

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

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .calculator-container {
        padding: 24px;
    }

    .revenue-display {
        font-size: 28px;
    }

    .agent-profile {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        align-items: center;
    }

    .agent-tags {
        justify-content: center;
    }

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

    .timeline-dot {
        width: 40px;
        height: 40px;
    }

    .timeline-content {
        padding: 20px;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .user-email {
        display: none;
    }

    .nav-right {
        gap: 8px;
    }

    .sign-out-btn {
        font-size: 13px;
        padding: 6px 10px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-logo {
        font-size: 18px;
    }
}