:root {
    --brand-dark: #0F172A;
    --brand-blue: #2563EB;
    --brand-purple: #4F46E5;
    --text-primary: #1E1B4B;
    --text-secondary: #475569;
    --text-light: #64748b;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* FULL WIDTH PAGE BACKGROUND */
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ambient Background Glows */
.ambient-glows {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Section 1 Glows */
.glow-mesh {
    position: absolute;
    top: -10%;
    left: 10%;
    width: 100%;
    height: 1000px;
    background: radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.15) 0%, rgba(255, 255, 255, 0) 50%),
                radial-gradient(circle at 60% 60%, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    animation: fadeScale 1.5s var(--ease-out) forwards;
    animation-delay: 0.2s;
}

.glow-dots {
    position: absolute;
    top: 5%;
    left: 45%;
    width: 400px;
    height: 500px;
    background-image: radial-gradient(#4F46E5 2.5px, transparent 2.5px);
    background-size: 40px 40px;
    opacity: 0;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 100%);
    animation: fadeScale 2s var(--ease-out) forwards, moveDotsLeft 12s linear infinite;
    animation-delay: 0.4s, 0s;
}

@keyframes moveDotsLeft {
    from { background-position: 0 0; }
    to { background-position: -400px 0; }
}

/* Section 2 Glows */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.glow.circle.blue {
    top: 1000px;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167,139,250,0.4) 0%, rgba(255,255,255,0) 70%);
}

.glow.circle.lavender {
    top: 1400px;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96,165,250,0.3) 0%, rgba(255,255,255,0) 70%);
}

.glow.square.cyan {
    top: 1700px;
    left: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(216,180,254,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 30%;
}

/* Common Layout Containers (Full Width with Max Width constraints) */
.navbar, .hero-section, .customers-section, .main-heading-section, .stats-row, .cta-section, .lower-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeSlideLeft {
    0% { opacity: 0; transform: translate(30px, 10px); filter: blur(8px); }
    100% { opacity: 1; transform: translate(0, 0); filter: blur(0); }
}

@keyframes fadeScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.animate-stagger {
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-out) forwards;
    animation-delay: var(--delay, 0s);
}

.animate-card {
    opacity: 0;
    animation: fadeSlideLeft 1s var(--ease-out) forwards;
    animation-delay: var(--delay, 0s);
}

.animate-card-up {
    opacity: 0;
    animation: fadeSlideUp 1.2s var(--ease-out) forwards;
    animation-delay: var(--delay, 0s);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none; color: var(--brand-dark); font-weight: 600; font-size: 0.95rem;
    display: flex; align-items: center; gap: 0.25rem; transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand-blue); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.login-btn { text-decoration: none; color: var(--brand-dark); font-weight: 600; font-size: 0.95rem; }

.get-started-btn {
    text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 0.6rem 1.25rem;
    border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
}
.get-started-btn.outline { border: 1.5px solid var(--brand-dark); color: var(--brand-dark); }
.get-started-btn.primary { background: linear-gradient(135deg, #3B28CC, #2563EB); color: white; padding: 0.8rem 1.75rem; box-shadow: 0 4px 14px 0 rgba(37,99,235,0.39); }

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 4rem 8rem;
    gap: 4rem;
}

.hero-content { flex: 1; max-width: 540px; }
.hero-content h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; color: #1a1b35; }
.hero-content p { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2.5rem; max-width: 460px; }

/* Dashboard Card */
.hero-dashboard { flex: 1; max-width: 580px; position: relative; }
.dashboard-accent { position: absolute; top: -12px; left: -12px; width: 48px; height: 48px; background-color: var(--brand-blue); border-radius: 12px; z-index: 0; box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); }
.dashboard-inner { background: white; border-radius: 20px; padding: 2rem; position: relative; z-index: 1; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05); }
.dashboard-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.company-logo { width: 32px; height: 32px; background: var(--brand-dark); color: white; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; }
.dashboard-header h2 { font-size: 1.1rem; font-weight: 700; }
.dashboard-tabs { display: flex; gap: 1.5rem; border-bottom: 1px solid #e2e8f0; margin-bottom: 1.5rem; }
.tab { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.75rem; font-size: 0.875rem; font-weight: 600; position: relative; }
.tab.active { color: var(--brand-blue); }
.tab.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--brand-blue); }
.tab.inactive { color: var(--text-light); }

.dashboard-chart { height: 120px; border-bottom: 1px dashed #e2e8f0; margin-bottom: 1.5rem; position: relative; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.chart-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawLine 1.5s var(--ease-out) forwards; animation-delay: 1.8s; }
.chart-fill, .chart-dot { opacity: 0; animation: fadeScale 0.8s var(--ease-out) forwards; }
.chart-fill { animation-delay: 2.2s; } .chart-dot { animation-delay: 2.4s; }

.dashboard-audience { margin-bottom: 1.5rem; }
.dashboard-audience h3, .dashboard-activity h3 { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.tags { display: flex; gap: 0.5rem; }
.tag { background: #f1f5f9; padding: 0.35rem 0.75rem; border-radius: 99px; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); display: flex; align-items: center; gap: 0.35rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot.blue { background: #3b82f6; } .dot.green { background: #10b981; } .dot.gray { background: #94a3b8; }

.activity-table { font-size: 0.75rem; font-weight: 500; color: var(--text-light); }
.table-header, .table-row { display: flex; padding: 0.5rem 0; border-bottom: 1px solid #f1f5f9; }
.table-row { align-items: center; }
.col-name { flex: 1.5; display: flex; align-items: center; gap: 0.5rem; }
.col-type { flex: 1; } .col-ind { flex: 1; } .col-loc { flex: 1; }
.col-name.highlight { color: var(--brand-dark); font-weight: 600; }
.icon.slack { width: 16px; height: 16px; background: linear-gradient(45deg, #ec4899, #ef4444, #eab308); border-radius: 3px; }
.icon.asana { width: 16px; height: 16px; background: #f43f5e; border-radius: 50%; position: relative; }
.icon.asana::after { content: ''; position: absolute; width: 6px; height: 6px; background: white; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Customer Logos Section (Divider) */
.customers-section {
    text-align: center;
    padding: 2rem 4rem 4rem;
}

.intro-text { font-size: 0.875rem; color: var(--text-light); font-weight: 500; margin-bottom: 2rem; }
.logos { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; opacity: 0.8; filter: grayscale(100%); }
.logo { display: flex; align-items: center; gap: 0.35rem; font-size: 1.5rem; font-weight: 700; color: var(--brand-dark); letter-spacing: -0.02em; }
.logo.intercom { font-weight: 900; letter-spacing: 0.05em; }
.logo.gong { font-weight: 900; font-size: 1.75rem; }
.logo.hubspot { font-weight: 700; }
.logo.hubspot .orange { color: #f97316; }

.segment-mark { width: 20px; height: 20px; border: 3px solid var(--brand-dark); border-right-color: transparent; border-bottom-color: transparent; border-top-left-radius: 20px; }
.asana-mark { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.asana-mark .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-dark); }
.asana-mark > div { display: flex; gap: 2px; }
.intercom-mark { display: flex; gap: 4px; align-items: flex-end; height: 20px; }
.intercom-mark span { background: var(--brand-dark); border-radius: 2px 2px 0 0; width: 6px; }
.intercom-mark span:nth-child(1) { height: 12px; } .intercom-mark span:nth-child(2) { height: 20px; } .intercom-mark span:nth-child(3) { height: 16px; } .intercom-mark span:nth-child(4) { height: 8px; }

/* Section 2 Main Heading */
.main-heading-section {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
}
.main-heading-section h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--brand-dark); margin-bottom: 2rem; }
.subtitle { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.6; }
.font-medium { font-weight: 500; color: var(--brand-dark); }
.text-light { color: var(--text-light); font-size: 1rem; }
.mt-sm { margin-top: 1rem; }

/* Section 2 Statistics Row */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
}
.stat-col { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat-divider { width: 1px; height: 120px; background-color: #e2e8f0; margin-top: 10px; }
.stat-num { font-size: 3.5rem; font-weight: 800; color: var(--brand-purple); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em; }
.stat-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 2rem; min-height: 42px; }
.stat-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--brand-dark); font-size: 1.25rem; }
.stat-logo.outreach { font-size: 1.2rem; }
.stat-logo.conversica { font-size: 1.2rem; font-weight: 600; }
.outreach-mark { width: 20px; height: 20px; background: var(--brand-dark); border-radius: 50%; position: relative; }
.outreach-mark::after { content: ''; position: absolute; width: 6px; height: 6px; background: white; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Section 2 CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 7rem;
}
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: 8px; font-size: 1rem; font-weight: 600; color: white; text-decoration: none; background: linear-gradient(135deg, #3B28CC, #2563EB); box-shadow: 0 10px 20px -5px rgba(37,99,235,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 25px -5px rgba(37,99,235,0.5); }

/* Section 2 Lower Content */
.lower-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 2rem 4rem 4rem;
}
.cards-column { flex: 1; position: relative; height: 420px; display: flex; justify-content: center; }
.circle-bg { position: absolute; top: 10%; left: 0%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; z-index: 0; pointer-events: none; }
.dots-bg-new { 
    position: absolute; 
    left: -100vw; 
    bottom: 20px; 
    width: calc(100vw + 130px); 
    height: 120px; 
    background-image: radial-gradient(#9ca3af 2px, transparent 2px); 
    background-size: 14px 14px; 
    z-index: 0; 
    opacity: 0.6; 
    animation: moveDotsOut 5s linear infinite;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

@keyframes moveDotsOut {
    from { background-position: 0 0; }
    to { background-position: -140px 0; }
}

.person-card-new, .company-card-new { background: white; border-radius: 16px; box-shadow: 0 15px 35px -10px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04); position: absolute; z-index: 2; padding: 2rem; }
.person-card-new { top: 60px; left: 20px; width: 280px; }
.company-card-new { top: 0; left: 220px; width: 340px; z-index: 3; padding: 2.25rem 2.5rem; }

/* New Card Inner Styles */
.card-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem; }
.avatar-large { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.hubspot-icon-svg { width: 36px; height: 36px; }
.name-block { display: flex; flex-direction: column; gap: 0.15rem; }
.name-block .name { font-size: 1.15rem; font-weight: 800; color: var(--brand-dark); line-height: 1.2; letter-spacing: -0.01em; }
.name-block .url { font-size: 0.85rem; color: var(--brand-blue); display: flex; align-items: center; gap: 0.25rem; font-weight: 600; }
.external-icon { width: 12px; height: 12px; stroke-width: 2.5; }

.card-body { display: flex; flex-direction: column; }
.data-group { display: flex; flex-direction: column; gap: 0.35rem; }
.data-group.mt-md { margin-top: 1.5rem; }
.data-group .label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.data-group .value { font-size: 0.95rem; font-weight: 700; color: var(--brand-dark); line-height: 1.3; }
.data-group .value.blue { color: var(--brand-blue); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.card-divider { height: 1px; background-color: #f1f5f9; margin-bottom: 1.5rem; width: 100%; }

.text-column { flex: 1; padding-left: 2rem; }
.text-column h2 { font-size: 3rem; font-weight: 900; line-height: 1.15; color: var(--brand-dark); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.text-column p { font-size: 1.05rem; line-height: 1.6; color: var(--brand-dark); font-weight: 400; }

/* Integrations Section */
.integrations-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    padding: 2rem 4rem 6rem;
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.integrations-text {
    flex: 0 1 500px;
}

.integrations-text h2 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.integrations-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.see-all-link:hover {
    transform: translateX(4px);
}

.integrations-cloud {
    flex: 0 1 550px;
    position: relative;
    height: 600px;
}

.cloud-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.dots-bg-right {
    position: absolute;
    right: 50px;
    top: 150px;
    width: 150px;
    height: 200px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 0;
}

.logo-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s;
}

.logo-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 35px -5px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02); z-index: 5; }

/* Positioning the scatter grid */
.pos-1 { width: 90px; height: 80px; top: 60px; left: 120px; }
.pos-2 { width: 100px; height: 80px; top: 70px; left: 320px; }
.pos-3 { width: 80px; height: 80px; top: 170px; left: 10px; }
.pos-4 { width: 80px; height: 80px; top: 140px; left: 250px; }
.pos-5 { width: 90px; height: 90px; top: 220px; left: 120px; }
.pos-6 { width: 110px; height: 80px; top: 210px; left: 350px; }
.pos-7 { width: 100px; height: 80px; top: 310px; left: 20px; }
.pos-8 { width: 80px; height: 80px; top: 280px; left: 240px; }
.pos-9 { width: 100px; height: 80px; top: 350px; left: 130px; }
.pos-10 { width: 90px; height: 80px; top: 330px; left: 350px; }
.pos-11 { width: 80px; height: 80px; top: 430px; left: 60px; }
.pos-12 { width: 80px; height: 80px; top: 440px; left: 220px; }

/* SVG Icon styles */
.logo-slack { width: 40px; height: 40px; }
.logo-salesforce { width: 60px; height: 60px; margin-top: -10px; }
.logo-text-purple { font-weight: 800; font-size: 18px; color: #7F2D87; letter-spacing: -0.5px; }
.logo-facebook { width: 50px; height: 50px; }
.logo-intercom { width: 50px; height: 50px; }
.logo-ms-dynamics { display: flex; align-items: center; gap: 0.5rem; }
.squares { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.sq { width: 6px; height: 6px; }
.sq.b { background: #00A4EF; } .sq.y { background: #FFB900; } .sq.g { background: #7FBA00; } .sq.o { background: #F25022; }
.ms-text { font-size: 8px; color: #737373; font-weight: 600; line-height: 1.1; }
.logo-snowflake { width: 40px; height: 40px; }
.logo-zapier { width: 40px; height: 40px; }
.logo-google-ads { width: 50px; height: 50px; }
.logo-hubspot-orange { width: 40px; height: 40px; }

/* Resources Section */
.resources-section {
    padding: 6rem 4rem 4rem;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.resources-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 6rem;
}

.resource-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.resource-icon {
    flex: 0 0 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.resource-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.resource-content a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.resource-content a:hover {
    transform: translateX(4px);
}

/* Demo Section */
.demo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    padding: 6rem 4rem 10rem;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* Unique Pop Up Animation */
@keyframes smoothPopUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.92); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.animate-pop-up {
    opacity: 0;
    animation: smoothPopUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.demo-card {
    flex: 0 1 450px;
    background: white;
    border-radius: 20px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-card-header { text-align: center; margin-bottom: 2.5rem; }
.demo-card-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark); margin-top: 1rem; }

.demo-form { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); }
.form-group label span { color: #ef4444; margin-left: 2px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 0.9rem; color: var(--text-primary); font-family: 'Inter', sans-serif; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group textarea { resize: none; }

.btn-primary.full-width { width: 100%; font-size: 0.95rem; padding: 1.15rem; }
.demo-link { font-size: 0.9rem; font-weight: 700; color: var(--brand-blue); text-decoration: none; }
.demo-link:hover { text-decoration: underline; }

.demo-content { flex: 0 1 580px; }
.demo-content h2 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; color: var(--brand-dark); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.demo-content p { font-size: 1.15rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 3.5rem; font-weight: 500; }

.demo-options { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.demo-option { display: flex; flex-direction: column; align-items: center; text-align: center; }
.option-icon-box {
    width: 80px; height: 80px; background: white; border-radius: 16px; box-shadow: 0 10px 20px -5px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: transform 0.2s;
}
.option-icon-box:hover { transform: translateY(-3px); }
.demo-option h4 { font-size: 1.1rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 0.75rem; }
.pill { padding: 0.25rem 0.6rem; border-radius: 4px; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em; color: white; margin-bottom: 1.25rem; }
.pill.recommended { background: #FF7A59; }
.pill.five-min { background: #e04a2c; }
.pill.fifteen-min { background: #FF7A59; }
.option-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.option-arrow { display: flex; align-items: center; justify-content: center; padding-bottom: 2rem; }
.option-arrow svg { stroke-dasharray: 2 4; }

/* Footer Section */
.site-footer {
    position: relative;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transform: translateY(100%);
    animation: waveShowUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes waveShowUp {
    to { transform: translateY(0); }
}

.footer-dots-right {
    position: absolute;
    right: -20px;
    bottom: 100px;
    width: 200px;
    height: 300px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 0;
    opacity: 0.6;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.newsletter-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.nl-text {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.nl-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-text h3 { font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 0.5rem; }
.nl-text p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }

.nl-form-wrapper { width: 450px; }
.nl-form {
    display: flex;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.25rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    margin-bottom: 0.75rem;
}
.nl-form input { flex: 1; border: none; padding: 0 1rem; font-size: 0.9rem; outline: none; border-radius: 6px; }
.nl-form .btn-primary { padding: 0.75rem 1.5rem; font-size: 0.9rem; border-radius: 6px; }

.nl-privacy { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 0.35rem; }

.footer-divider { border: none; border-top: 1px solid #e2e8f0; margin-bottom: 4rem; }

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

.brand-col p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 1.25rem 0; max-width: 250px; }
.footer-logo { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark); display: flex; align-items: center; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 32px; height: 32px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-dark); text-decoration: none; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: transform 0.2s; }
.social-icons a:hover { transform: translateY(-2px); }

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #8b5cf6;
    border-radius: 1px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer-col ul a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--brand-blue); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    padding-top: 2rem;
}

.fb-left { display: flex; gap: 1.5rem; font-size: 0.75rem; color: var(--text-light); }
.fb-left a { color: var(--text-light); text-decoration: none; }
.fb-left a:hover { color: var(--brand-dark); }
.fb-left span { margin-right: 1rem; }
.fb-left a { position: relative; padding-left: 1.5rem; }
.fb-left a::before {
    content: '|';
    position: absolute;
    left: 0.25rem;
    color: #cbd5e1;
}

.fb-right { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--brand-dark); cursor: pointer; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-section { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .nav-links { display: none; }
    .stats-row { flex-direction: column; align-items: center; gap: 2rem; }
    .stat-divider { width: 100px; height: 1px; margin: 0; }
    .lower-content { flex-direction: column; text-align: center; }
    .cards-column { width: 100%; display: flex; justify-content: center; margin-bottom: 4rem; height: 450px; }
    .person-card-new { left: 50%; transform: translateX(-50%); margin-left: -50px; }
    .company-card-new { left: 50%; transform: translateX(-50%); margin-left: 20px; }
    .text-column { padding-left: 0; }
    
    .integrations-section, .demo-section { flex-direction: column; text-align: center; }
    .integrations-text, .demo-card, .demo-content { max-width: 100%; margin-bottom: 4rem; }
    .integrations-cloud { width: 100%; height: 500px; display: flex; justify-content: center; }
    .logo-card { transform: scale(0.8); }
    .demo-options { flex-direction: column; gap: 2rem; }
    .option-arrow { transform: rotate(90deg); padding: 0; margin: -1rem 0; }
}

@media (max-width: 768px) {
    .navbar, .hero-section, .customers-section, .main-heading-section, .stats-row, .cta-section, .lower-content, .integrations-section, .resources-section, .demo-section, .footer-container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero-content h1 { font-size: 3rem; }
    .main-heading-section h1 { font-size: 2.5rem; }
    .integrations-text h2, .demo-content h2, .resources-section h2 { font-size: 2.5rem; }
    .logos { gap: 2rem; }
    .person-card-new, .company-card-new { position: relative; left: auto; top: auto; transform: none; margin: 0; width: 100%; margin-bottom: 1rem; z-index: 2; }
    .cards-column { height: auto; flex-direction: column; }
    .text-column h2 { font-size: 2rem; }
    
    .resources-grid { grid-template-columns: 1fr; gap: 3rem; }
    .resource-card { flex-direction: column; align-items: flex-start; }
    
    .integrations-cloud { height: 400px; transform: scale(0.7); transform-origin: top center; margin-top: -2rem; }
    
    .newsletter-section { flex-direction: column; gap: 2rem; text-align: left; align-items: stretch; }
    .nl-form-wrapper { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .fb-left { flex-direction: column; gap: 0.75rem; }
    .fb-left a::before { display: none; }
    .fb-left a { padding-left: 0; }
}


/* Integrations Section Background */
.integrations-section {
    padding: 8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
}

.integrations-text {
    flex: 0 0 40%;
}

.integrations-text h2 {
    color: var(--brand-dark);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.integrations-text p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Portfolio Pills Marquee Styles */
.portfolio-pills-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 5%;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.portfolio-pills-left {
    flex: 0 0 35%;
    padding-right: 2rem;
    z-index: 2;
}

.portfolio-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.portfolio-pills-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.portfolio-pills-left p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0f172a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
}

.portfolio-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-btn:hover svg {
    transform: translateX(4px);
}

.portfolio-pills-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.pills-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
}

.pills-track:hover .pills-content {
    animation-play-state: paused;
}

.track-1 .pills-content { animation: scrollPillsLeft 40s linear infinite; }
.track-2 .pills-content { animation: scrollPillsRight 45s linear infinite; }
.track-3 .pills-content { animation: scrollPillsLeft 35s linear infinite; }
.track-4 .pills-content { animation: scrollPillsRight 50s linear infinite; }

.pills-content {
    display: flex;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
    align-items: center;
}

.domain-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.domain-pill::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.domain-pill:hover {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.domain-pill:hover::before {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

@keyframes scrollPillsLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scrollPillsRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
    .portfolio-pills-section {
        flex-direction: column;
        padding: 3rem 5%;
        gap: 3rem;
    }
    
    .portfolio-pills-left {
        flex: 1;
        padding-right: 0;
        text-align: center;
    }
    
    .portfolio-pills-left p {
        margin: 0 auto 2rem;
    }
    
    .portfolio-pills-right {
        width: 100vw;
        margin-left: -5%;
    }
}

