/* ========================================
   EAZYBE HUBSPOT LANDING PAGE - STYLES
   ======================================== */

/* CSS Variables */
:root {
    --hubspot-orange: #FF7A59;
    --hubspot-orange-dark: #FF5C35;
    --hubspot-coral: #FF8F73;
    --hubspot-dark: #2D3E50;
    --hubspot-teal: #00BDA5;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F8FA;
    --text-primary: #2D3E50;
    --text-secondary: #516F90;
    --text-muted: #7C98B6;
    --border-color: #DFE3EB;
    --gradient-hubspot: linear-gradient(135deg, #FF7A59 0%, #FF5C35 100%);
    --gradient-hero: linear-gradient(135deg, #FFF5F3 0%, #FFF0EB 50%, #FFEBE5 100%);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lexend', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    padding: 1rem 2rem; 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid var(--border-color); 
}
.navbar.scrolled { 
    box-shadow: 0 4px 20px rgba(45,62,80,0.08); 
}
.navbar-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo-img { 
    height: 32px; 
}

/* ========================================
   BUTTONS
   ======================================== */
.btn { 
    padding: 0.875rem 1.75rem; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    text-decoration: none; 
    transition: all 0.3s; 
    cursor: pointer; 
    border: none; 
    font-family: inherit; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
}
.btn-primary { 
    background: var(--gradient-hubspot); 
    color: white; 
    box-shadow: 0 4px 15px rgba(255,122,89,0.35); 
}
.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(255,122,89,0.45); 
}
.btn-large { 
    padding: 1rem 2rem; 
    font-size: 1.05rem; 
    border-radius: 10px; 
}
.btn-outline { 
    background: transparent; 
    border: 2px solid var(--hubspot-orange); 
    color: var(--hubspot-orange); 
}
.btn-outline:hover { 
    background: var(--hubspot-orange); 
    color: white; 
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero { 
    padding: 7rem 2rem 4rem; 
    background: var(--gradient-hero); 
    min-height: 100vh; 
}
.hero-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}
.hero-content { 
    max-width: 560px; 
}

/* Hero Badge */
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.75rem; 
    padding: 0.5rem 1.25rem 0.5rem 0.5rem; 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 50px; 
    margin-bottom: 1.5rem; 
    box-shadow: 0 4px 15px rgba(45,62,80,0.08); 
}
.hubspot-badge-icon { 
    width: 32px; 
    height: 32px; 
    background: var(--gradient-hubspot); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.hubspot-badge-icon svg { 
    width: 18px; 
    height: 18px; 
    fill: white; 
}
.hero-badge-text { 
    font-size: 0.85rem; 
    color: var(--text-secondary); 
    font-weight: 500; 
}
.hero-badge-highlight { 
    color: var(--hubspot-orange); 
    font-weight: 700; 
}

/* Hero Typography */
.hero h1 { 
    font-size: clamp(2rem, 4vw, 2.75rem); 
    font-weight: 800; 
    line-height: 1.15; 
    margin-bottom: 1.25rem; 
    color: var(--hubspot-dark); 
}
.hero-subtitle { 
    font-size: 1.1rem; 
    color: var(--text-secondary); 
    margin-bottom: 1.5rem; 
    line-height: 1.7; 
}

/* Hero Trust Items */
.hero-trust { 
    display: flex; 
    flex-direction: column; 
    gap: 0.6rem; 
    margin-bottom: 2rem; 
}
.hero-trust-item { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.95rem; 
    color: var(--text-secondary); 
}
.hero-trust-item svg { 
    width: 20px; 
    height: 20px; 
    stroke: var(--hubspot-teal); 
    flex-shrink: 0; 
}

/* Hero Stats */
.hero-stats { 
    display: flex; 
    gap: 2rem; 
    padding-top: 1.5rem; 
    border-top: 1px solid var(--border-color); 
}
.hero-stat { 
    text-align: left; 
}
.hero-stat-value { 
    font-size: 1.75rem; 
    font-weight: 800; 
    color: var(--hubspot-orange); 
    line-height: 1; 
}
.hero-stat-label { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    margin-top: 0.25rem; 
}

/* ========================================
   CALENDLY EMBED
   ======================================== */
.calendly-container { 
    background: white; 
    border-radius: 24px; 
    box-shadow: 0 25px 80px rgba(255,122,89,0.2), 0 10px 30px rgba(45,62,80,0.1); 
    overflow: hidden; 
    border: 2px solid rgba(255,122,89,0.15);
    position: relative;
}
.calendly-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF7A59, #FF5C35, #00BDA5, #FF7A59);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}
.calendly-header { 
    background: var(--gradient-hubspot); 
    padding: 1.5rem 2rem; 
    text-align: center;
    position: relative;
    overflow: hidden;
}
.calendly-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.calendly-header h3 { 
    color: white; 
    font-size: 1.35rem; 
    font-weight: 800; 
    margin-bottom: 0.35rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.calendly-header p { 
    color: rgba(255,255,255,0.95); 
    font-size: 0.9rem;
    position: relative;
}
.calendly-inline-widget { 
    min-width: 320px; 
    height: 700px; 
}

/* ========================================
   TRUSTED BY / LOGO MARQUEE
   ======================================== */
.trusted-by {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gradient-hero) 0%, white 100%);
    overflow: hidden;
    position: relative;
}
.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.trusted-by-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}
.trusted-by-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(45,62,80,0.06);
}
.trusted-by-label svg {
    width: 18px;
    height: 18px;
    fill: var(--hubspot-orange);
}
.trusted-by-label span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hubspot-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.trusted-by-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--hubspot-dark);
    margin-bottom: 0.5rem;
}
.trusted-by-title span {
    background: var(--gradient-hubspot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trusted-by-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Logo Marquee */
.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
}
.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}
.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}
.logo-marquee-track {
    display: flex;
    width: max-content;
}
.logo-marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 35s linear infinite;
}
.logo-marquee.reverse .logo-marquee-content {
    animation: marquee-reverse 35s linear infinite;
}
.logo-marquee:hover .logo-marquee-content {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.brand-logo {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}
.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ========================================
   SECTIONS - COMMON STYLES
   ======================================== */
.section-inner { 
    max-width: 1100px; 
    margin: 0 auto; 
}
.section-header { 
    text-align: center; 
    margin-bottom: 3rem; 
}
.section-tag { 
    display: inline-block; 
    padding: 0.5rem 1rem; 
    background: rgba(255,122,89,0.1); 
    color: var(--hubspot-orange); 
    border-radius: 50px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 1rem; 
}
.section-title { 
    font-size: clamp(1.75rem, 4vw, 2.25rem); 
    font-weight: 700; 
    color: var(--hubspot-dark); 
    margin-bottom: 0.75rem; 
}
.section-subtitle { 
    font-size: 1.05rem; 
    color: var(--text-secondary); 
    max-width: 600px; 
    margin: 0 auto; 
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-points { 
    padding: 5rem 2rem; 
    background: var(--bg-secondary); 
}
.pain-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.25rem; 
}
.pain-card { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    padding: 1.5rem; 
    text-align: center; 
    transition: all 0.3s; 
}
.pain-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(45,62,80,0.1); 
    border-color: var(--hubspot-coral); 
}
.pain-icon { 
    width: 52px; 
    height: 52px; 
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1rem; 
    font-size: 1.4rem; 
}
.pain-card h3 { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: var(--hubspot-dark); 
    margin-bottom: 0.5rem; 
}
.pain-card p { 
    font-size: 0.85rem; 
    color: var(--text-secondary); 
    line-height: 1.5; 
}

/* ========================================
   FEATURE SECTIONS
   ======================================== */
.feature-section { 
    padding: 5rem 2rem; 
}
.feature-section:nth-child(even) { 
    background: var(--bg-secondary); 
}
.feature-section .section-inner { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}
.feature-section:nth-child(even) .section-inner { 
    direction: rtl; 
}
.feature-section:nth-child(even) .feature-content, 
.feature-section:nth-child(even) .feature-visual { 
    direction: ltr; 
}

/* Feature Content */
.feature-content h2 { 
    font-size: clamp(1.4rem, 3vw, 1.85rem); 
    font-weight: 700; 
    color: var(--hubspot-dark); 
    margin-bottom: 1rem; 
    line-height: 1.25; 
}
.feature-content .description { 
    font-size: 1rem; 
    color: var(--text-secondary); 
    line-height: 1.7; 
    margin-bottom: 1.25rem; 
}
.feature-points { 
    list-style: none; 
    margin-bottom: 1.25rem; 
}
.feature-points li { 
    display: flex; 
    align-items: flex-start; 
    gap: 0.6rem; 
    margin-bottom: 0.7rem; 
    font-size: 0.9rem; 
    color: var(--text-secondary); 
}
.feature-points li .check-icon { 
    color: var(--hubspot-orange); 
    font-weight: 700; 
}
.feature-points li strong { 
    color: var(--hubspot-dark); 
    font-weight: 600; 
}

/* Feature Visual */
.feature-visual { 
    background: var(--gradient-hero); 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    padding: 1.25rem; 
    box-shadow: 0 12px 40px rgba(255,122,89,0.1); 
}
.feature-visual-card { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 10px; 
    overflow: hidden; 
}
.visual-header { 
    background: var(--bg-secondary); 
    padding: 0.6rem 0.75rem; 
    border-bottom: 1px solid var(--border-color); 
    display: flex; 
    align-items: center; 
    gap: 0.4rem; 
}
.visual-dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
}
.visual-dot.red { background: #FF5F57; }
.visual-dot.yellow { background: #FFBD2E; }
.visual-dot.green { background: #28C840; }
.visual-content { 
    padding: 1rem; 
}

/* Contact Timeline */
.contact-header { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    margin-bottom: 1rem; 
    padding-bottom: 0.75rem; 
    border-bottom: 1px solid var(--border-color); 
}
.contact-avatar { 
    width: 40px; 
    height: 40px; 
    background: var(--gradient-hubspot); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-weight: 700; 
    font-size: 0.95rem; 
}
.contact-avatar-img { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--border-color); 
}
.contact-info h4 { 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--hubspot-dark); 
    margin-bottom: 0.15rem; 
}
.contact-info span { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
}
.activity-list { 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
}
.activity-item { 
    display: flex; 
    gap: 0.6rem; 
    padding: 0.6rem; 
    background: var(--bg-secondary); 
    border-radius: 8px; 
    align-items: flex-start; 
}
.activity-icon { 
    width: 28px; 
    height: 28px; 
    background: white; 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 12px; 
    flex-shrink: 0; 
}
.activity-details { 
    flex: 1; 
}
.activity-details .type { 
    font-size: 0.65rem; 
    font-weight: 600; 
    color: var(--hubspot-orange); 
    text-transform: uppercase; 
}
.activity-details .content { 
    font-size: 0.75rem; 
    color: var(--text-secondary); 
    line-height: 1.4; 
}
.activity-time { 
    font-size: 0.65rem; 
    color: var(--text-muted); 
}

/* Inbox Visual */
.inbox-visual { 
    background: var(--bg-secondary); 
    border-radius: 8px; 
    overflow: hidden; 
}
.inbox-tabs { 
    display: flex; 
    border-bottom: 1px solid var(--border-color); 
    background: white; 
}
.inbox-tab { 
    padding: 0.6rem 0.75rem; 
    font-size: 0.75rem; 
    font-weight: 500; 
    color: var(--text-muted); 
    border: none; 
    background: transparent; 
    cursor: pointer; 
    position: relative; 
}
.inbox-tab.active { 
    color: var(--hubspot-orange); 
}
.inbox-tab.active::after { 
    content: ''; 
    position: absolute; 
    bottom: -1px; 
    left: 0; 
    right: 0; 
    height: 2px; 
    background: var(--hubspot-orange); 
}
.inbox-tab .count { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    min-width: 16px; 
    height: 16px; 
    padding: 0 4px; 
    background: var(--bg-secondary); 
    border-radius: 100px; 
    font-size: 0.65rem; 
    margin-left: 3px; 
}
.inbox-tab.active .count { 
    background: rgba(255,122,89,0.15); 
    color: var(--hubspot-orange); 
}
.inbox-list { 
    padding: 0.6rem; 
}
.inbox-item { 
    display: flex; 
    align-items: center; 
    gap: 0.6rem; 
    padding: 0.6rem; 
    background: white; 
    border-radius: 6px; 
    margin-bottom: 0.4rem; 
}
.inbox-item-icon { 
    font-size: 0.9rem; 
}
.inbox-item-content { 
    flex: 1; 
}
.inbox-item-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 1px; 
}
.inbox-item-name { 
    font-size: 0.8rem; 
    font-weight: 600; 
    color: var(--hubspot-dark); 
}
.inbox-item-amount { 
    font-size: 0.8rem; 
    font-weight: 600; 
    color: var(--hubspot-orange); 
}
.inbox-item-detail { 
    font-size: 0.7rem; 
    color: var(--text-muted); 
}

/* Workflow Visual */
.workflow-visual { 
    padding: 1rem; 
}
.workflow-step { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    margin-bottom: 0.6rem; 
}
.workflow-node { 
    background: var(--bg-secondary); 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    padding: 0.6rem 0.75rem; 
    font-size: 0.8rem; 
    color: var(--text-secondary); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    flex: 1; 
}
.workflow-node.trigger { 
    border-color: var(--hubspot-orange); 
    background: rgba(255,122,89,0.08); 
}
.workflow-node .node-icon { 
    font-size: 0.9rem; 
}
.workflow-node .node-label { 
    font-weight: 600; 
    color: var(--hubspot-dark); 
    font-size: 0.75rem; 
}
.workflow-node.trigger .node-label { 
    color: var(--hubspot-orange); 
}
.workflow-node .node-detail { 
    font-size: 0.65rem; 
    color: var(--text-muted); 
}
.workflow-arrow { 
    color: var(--hubspot-orange); 
    font-size: 1rem; 
    font-weight: 700; 
}
.workflow-connector { 
    width: 2px; 
    height: 12px; 
    background: var(--border-color); 
    margin-left: 1.25rem; 
}

/* HubSpot Properties Visual */
.properties-section { 
    margin-top: 0.5rem; 
}
.properties-title { 
    font-size: 0.7rem; 
    font-weight: 600; 
    color: var(--hubspot-orange); 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 0.75rem; 
    padding-bottom: 0.5rem; 
    border-bottom: 1px solid var(--border-color); 
}
.property-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    padding: 0.5rem 0; 
    border-bottom: 1px solid var(--bg-secondary); 
}
.property-row:last-child { 
    border-bottom: none; 
}
.property-label { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    font-weight: 500; 
}
.property-value { 
    font-size: 0.75rem; 
    color: var(--hubspot-dark); 
    font-weight: 600; 
    text-align: right; 
}
.property-value.highlight { 
    color: var(--hubspot-teal); 
}
.property-row.summary { 
    flex-direction: column; 
    gap: 0.4rem; 
}
.property-row.summary .property-value { 
    text-align: left; 
}
.property-value.summary-text { 
    font-size: 0.7rem; 
    font-weight: 400; 
    color: var(--text-secondary); 
    font-style: italic; 
    line-height: 1.5; 
    background: var(--bg-secondary); 
    padding: 0.5rem; 
    border-radius: 6px; 
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats { 
    padding: 4rem 2rem; 
    background: var(--gradient-hubspot); 
}
.stats-grid { 
    max-width: 900px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem; 
}
.stat-item { 
    text-align: center; 
}
.stat-value { 
    font-size: clamp(2rem, 4vw, 2.75rem); 
    font-weight: 800; 
    color: white; 
    margin-bottom: 0.25rem; 
    line-height: 1; 
}
.stat-label { 
    color: rgba(255,255,255,0.9); 
    font-size: 0.9rem; 
    font-weight: 500; 
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials { 
    padding: 6rem 0; 
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,122,89,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials .section-inner {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}
.testimonials .section-header {
    margin-bottom: 3.5rem;
}
.testimonials-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(45,62,80,0.06);
}
.testimonials-header-badge svg {
    width: 18px;
    height: 18px;
    fill: #FFB800;
}
.testimonials-header-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hubspot-dark);
}
.testimonials .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}
.testimonials .section-title span {
    background: var(--gradient-hubspot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonials-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* Testimonial Marquee */
.testimonial-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}
.testimonial-marquee::before,
.testimonial-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}
.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}
.testimonial-marquee-track {
    display: flex;
    width: max-content;
}
.testimonial-marquee-content {
    display: flex;
    gap: 1.5rem;
    animation: testimonial-scroll 40s linear infinite;
}
.testimonial-marquee.reverse .testimonial-marquee-content {
    animation: testimonial-scroll-reverse 40s linear infinite;
}
.testimonial-marquee:hover .testimonial-marquee-content {
    animation-play-state: paused;
}
@keyframes testimonial-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes testimonial-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Testimonial Card */
.testimonial-card { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 20px; 
    padding: 1.75rem; 
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 380px;
    flex-shrink: 0;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(255,122,89,0.08);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(255,122,89,0.12); 
    border-color: var(--hubspot-orange); 
}
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.testimonial-stars { 
    display: flex; 
    gap: 2px;
}
.testimonial-stars svg { 
    width: 16px; 
    height: 16px; 
    fill: #FFB800; 
}
.testimonial-rating-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.testimonial-text { 
    font-size: 0.95rem; 
    color: var(--text-primary); 
    line-height: 1.7; 
    margin-bottom: 1.25rem; 
    font-weight: 400;
    position: relative;
    z-index: 1;
    min-height: 80px;
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.testimonial-avatar { 
    width: 40px; 
    height: 40px; 
    background: var(--gradient-hubspot); 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-weight: 700; 
    font-size: 0.9rem; 
}
.testimonial-avatar-img { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(45,62,80,0.12);
    flex-shrink: 0;
}
.testimonial-info {
    flex: 1;
    min-width: 0;
}
.testimonial-info .name { 
    font-size: 0.9rem; 
    font-weight: 700; 
    color: var(--hubspot-dark); 
    display: block;
    margin-bottom: 0.15rem;
}
.testimonial-info .role { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    display: block; 
}
.testimonial-company {
    padding: 0.35rem 0.7rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Trust Badges */
.trust-badges { 
    display: flex; 
    justify-content: center; 
    gap: 1rem; 
    flex-wrap: wrap;
    margin-top: 2rem;
}
.trust-badge { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.75rem 1.25rem; 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 500; 
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.trust-badge:hover {
    border-color: var(--hubspot-orange);
    box-shadow: 0 4px 15px rgba(255,122,89,0.1);
}
.trust-badge.hubspot-badge { 
    background: linear-gradient(135deg, rgba(255,122,89,0.1) 0%, rgba(255,92,53,0.05) 100%); 
    border-color: rgba(255,122,89,0.3); 
    color: var(--hubspot-dark); 
    font-weight: 600; 
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq { 
    padding: 6rem 2rem; 
    background: linear-gradient(180deg, white 0%, var(--bg-secondary) 100%);
    position: relative;
}
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.faq-inner { 
    max-width: 850px; 
    margin: 0 auto; 
}
.faq .section-header {
    margin-bottom: 3rem;
}
.faq-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(45,62,80,0.06);
}
.faq-header-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--hubspot-orange);
}
.faq-header-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hubspot-dark);
}
.faq .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}
.faq .section-title span {
    background: var(--gradient-hubspot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}
.faq-list { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}
.faq-item { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(45,62,80,0.04);
}
.faq-item:hover {
    border-color: rgba(255,122,89,0.3);
    box-shadow: 0 4px 15px rgba(255,122,89,0.08);
}
.faq-item.active { 
    border-color: var(--hubspot-orange); 
    box-shadow: 0 8px 30px rgba(255,122,89,0.15); 
}
.faq-question { 
    width: 100%; 
    padding: 1.25rem 1.5rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: none; 
    border: none; 
    color: var(--hubspot-dark); 
    font-size: 1rem; 
    font-weight: 600; 
    text-align: left; 
    cursor: pointer; 
    font-family: inherit;
    gap: 1rem;
    transition: all 0.3s ease;
}
.faq-question:hover {
    color: var(--hubspot-orange);
}
.faq-question-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-question-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hubspot-orange);
    flex-shrink: 0;
}
.faq-item.active .faq-question-number {
    background: var(--gradient-hubspot);
    color: white;
}
.faq-icon { 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    background: var(--bg-secondary); 
    border: 1px solid var(--border-color); 
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-icon svg { 
    width: 16px; 
    height: 16px; 
    stroke: var(--hubspot-orange); 
    transition: transform 0.3s ease; 
}
.faq-item.active .faq-icon { 
    background: var(--gradient-hubspot); 
    border-color: transparent;
    transform: rotate(180deg);
}
.faq-item.active .faq-icon svg { 
    stroke: white; 
}
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease; 
}
.faq-item.active .faq-answer { 
    max-height: 300px; 
}
.faq-answer-content { 
    padding: 0 1.5rem 1.5rem 4rem; 
    color: var(--text-secondary); 
    font-size: 0.95rem; 
    line-height: 1.75; 
}
.faq-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.faq-cta-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.faq-cta-text strong {
    color: var(--hubspot-dark);
}
.faq-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hubspot-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.faq-cta-link:hover {
    gap: 0.75rem;
}
.faq-cta-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta { 
    padding: 5rem 2rem; 
    background: var(--gradient-hero); 
}
.final-cta-inner { 
    max-width: 900px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    align-items: center; 
}
.final-cta-content h2 { 
    font-size: clamp(1.75rem, 3vw, 2.25rem); 
    font-weight: 800; 
    color: var(--hubspot-dark); 
    margin-bottom: 0.75rem; 
}
.final-cta-content p { 
    font-size: 1.05rem; 
    color: var(--text-secondary); 
    margin-bottom: 1.5rem; 
}
.final-cta-content .trust-line { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
}
.final-calendly { 
    background: white; 
    border-radius: 20px; 
    box-shadow: 0 20px 60px rgba(255,122,89,0.18), 0 8px 25px rgba(45,62,80,0.1); 
    overflow: hidden; 
    border: 2px solid rgba(255,122,89,0.12);
    position: relative;
}
.final-calendly::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF7A59, #FF5C35, #00BDA5);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(6px);
}
.final-calendly-header { 
    background: var(--gradient-hubspot); 
    padding: 1.25rem; 
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-calendly-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.final-calendly-header h3 { 
    color: white; 
    font-size: 1.15rem; 
    font-weight: 800;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.final-calendly .calendly-inline-widget { 
    height: 550px; 
}

/* ========================================
   FOOTER
   ======================================== */
.footer { 
    padding: 1.5rem 2rem; 
    background: var(--hubspot-dark); 
}
.footer-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}
.footer-logo { 
    height: 24px; 
    filter: brightness(0) invert(1); 
    opacity: 0.9; 
}
.footer-links { 
    display: flex; 
    gap: 1.25rem; 
}
.footer-links a { 
    color: rgba(255,255,255,0.7); 
    text-decoration: none; 
    font-size: 0.8rem; 
}
.footer-copyright { 
    color: rgba(255,255,255,0.5); 
    font-size: 0.8rem; 
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner { 
        grid-template-columns: 1fr; 
        gap: 2.5rem; 
    }
    .hero-content { 
        max-width: 100%; 
        text-align: center; 
    }
    .hero-trust { 
        align-items: center; 
    }
    .hero-stats { 
        justify-content: center; 
    }
    .calendly-container { 
        max-width: 450px; 
        margin: 0 auto; 
    }
    .pain-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .feature-section .section-inner { 
        grid-template-columns: 1fr; 
        gap: 2.5rem; 
    }
    .feature-section:nth-child(even) .section-inner { 
        direction: ltr; 
    }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .final-cta-inner { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .final-calendly { 
        max-width: 400px; 
        margin: 0 auto; 
    }
}

@media (max-width: 768px) {
    .hero h1 { 
        font-size: 1.75rem; 
    }
    .hero-stats { 
        flex-wrap: wrap; 
        gap: 1.5rem; 
    }
    .pain-grid { 
        grid-template-columns: 1fr; 
    }
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-inner { 
        flex-direction: column; 
        text-align: center; 
    }
}
