/* 
   FASEEH LALL & CO - Core Styling System
   Elite B2B Landing Page / CRO Optimized / Brutalist Tech-Forward
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #09090B;          /* Pitch Black */
    --bg-dark-card: #121214;     /* Dark Charcoal Card */
    --bg-light: #FFFFFF;         /* Stark White */
    --bg-light-gray: #F4F4F6;    /* Light Muted Gray */
    --accent: #D90429;           /* Deep Crimson Red */
    --accent-glow: rgba(217, 4, 41, 0.15);
    --accent-hover: #EF233C;
    
    /* Typography */
    --text-white: #FFFFFF;
    --text-dark: #09090B;
    --text-muted-dark: #71717A;
    --text-muted-light: #A1A1AA;
    
    /* Borders */
    --border-dark: #27272A;
    --border-light: #E4E4E7;
    
    /* Typography Rules */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Animation defaults */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
    --grid-line-color: rgba(255, 255, 255, 0.03);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

p {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Base Layout Utility */
.section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

/* Custom Grid BG (Brutalist visual pattern) */
.grid-bg {
    background-image: 
        linear-gradient(to right, var(--grid-line-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line-color) 1px, transparent 1px);
    background-size: 40px 40px;
}

.grid-bg-light {
    background-image: 
        linear-gradient(to right, rgba(9, 9, 11, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(9, 9, 11, 0.03) 1px, transparent 1px);
    background-size: 45px 45px;
}

/* Radial Glows */
.radial-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Global Buttons & CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.btn:hover::after {
    height: 300%;
    opacity: 1;
}

.btn-primary {
    background-image: linear-gradient(to right, #D90429 0%, #EF233C 50%, #D90429 100%);
    background-size: 200% auto;
    color: var(--text-white);
    border: 1px solid var(--accent);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-position: right center;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--text-white);
    background-image: linear-gradient(to right, #D90429 0%, #EF233C 100%);
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.2);
    transform: translateY(-3px);
}

.btn-inverted {
    background-image: linear-gradient(to right, #FFFFFF 0%, #F4F4F6 50%, #FFFFFF 100%);
    background-size: 200% auto;
    color: var(--accent);
    border: 1px solid var(--bg-light);
    transition: var(--transition-smooth);
}

.btn-inverted:hover {
    background-position: right center;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
    transform: translateY(-3px);
}

/* Floating Navigation Header */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 2rem;
    transition: var(--transition-fast);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link-item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #4B5563;
    transition: var(--transition-fast);
}

.nav-link-item:hover {
    color: var(--accent);
}

.btn-pill {
    border-radius: 100px !important;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent);
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

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

.nav-cta .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}

/* --- Section 1: Hero --- */
#hero {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 11rem 2rem 7rem 2rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    width: 100%;
    z-index: 2;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.hero-badge {
    background-color: #FFF0F2;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(217, 4, 41, 0.1);
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.hero-title-main .text-accent {
    color: var(--accent);
    background: linear-gradient(135deg, #D90429 0%, #EF233C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext-main {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted-dark);
    line-height: 1.6;
}

/* Checklist custom styling */
.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon-wrapper {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.check-icon-wrapper svg {
    width: 10px;
    height: 10px;
}

.check-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    line-height: 1.4;
}

/* Right-side form card */
.hero-form-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(9, 9, 11, 0.05);
}

.hero-form-card .modal-label {
    color: #374151; /* Dark gray labels instead of default white */
}

.hero-form-card .modal-input,
.hero-form-card .modal-select {
    background-color: #F9FAFB; /* Light gray input background instead of default dark */
    border: 1px solid #D1D5DB; /* Clean light gray borders */
    color: #111827; /* Dark text color */
}

.hero-form-card .modal-input::placeholder {
    color: #9CA3AF; /* Light gray placeholder text */
}

.hero-form-card .modal-input:focus,
.hero-form-card .modal-select:focus {
    background-color: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.08);
}

.form-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-card-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 2rem;
}

.hero-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.hero-textarea {
    resize: none;
}

.required-star {
    color: var(--accent);
}

/* Hero UI Mockup Visual */
.hero-visual {
    margin-top: 5rem;
    width: 100%;
    max-width: 800px;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    background-color: var(--bg-dark-card);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.visual-header {
    background-color: #18181B;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.visual-title {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    font-family: monospace;
    margin-left: 1rem;
}

.visual-body {
    padding: 2rem;
    background: radial-gradient(circle at 10% 20%, rgba(217,4,41,0.05) 0%, transparent 60%);
}

/* --- Section 2: Narrative Shift (Comparison) --- */
#narrative {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
}

.comparison-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.comparison-card {
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

/* Custom Visibility Cards */
.visibility-card {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    opacity: 1;
    filter: none;
}

.visibility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(217, 4, 41, 0.08);
    border-color: var(--accent);
}

.visibility-card .card-type {
    color: var(--accent);
}

.visibility-card h3 {
    color: var(--text-dark);
}

.visibility-card .comparison-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted-dark);
}

.visibility-card .comparison-list li::before {
    display: none;
}

/* Old Model styling */
.card-old {
    background-color: var(--bg-light-gray);
    border: 1px solid var(--border-light);
    opacity: 0.6;
    filter: grayscale(80%);
}

.card-old:hover {
    opacity: 0.8;
    filter: grayscale(30%);
    transform: translateY(-4px);
}

/* FLC Engine Model styling (Dominant Red Highlights) */
.card-new {
    background-color: var(--bg-dark);
    color: var(--text-white);
    border: 1px solid var(--accent);
    box-shadow: 0 20px 40px rgba(217, 4, 41, 0.12);
}

.card-new::before {
    content: 'RECOMMENDED ASSET BUILD';
    position: absolute;
    top: 0;
    right: 3rem;
    transform: translateY(-50%);
    background-color: var(--accent);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 6px;
}

.card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(217, 4, 41, 0.25);
    border-color: var(--accent-hover);
}

.card-type {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.card-old .card-type {
    color: var(--text-muted-dark);
}

.card-new .card-type {
    color: var(--accent);
}

.comparison-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.comparison-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.card-new .comparison-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.card-old .comparison-list li::before {
    content: '✕';
    color: var(--text-muted-dark);
    font-weight: bold;
}

.card-new .comparison-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* --- Section 3: Core Services Grid --- */
#services {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(217, 4, 41, 0.05);
    color: var(--accent);
    border-radius: 8px;
    border: 1px solid rgba(217, 4, 41, 0.1);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--accent);
    color: var(--text-white);
}

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

.service-card p {
    color: var(--text-muted-dark);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- Section 4: 90-Day Roadmap --- */
#roadmap {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0 auto;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--border-light);
}

.timeline-progress {
    position: absolute;
    left: 7px;
    top: 10px;
    height: 0%;
    width: 2px;
    background-color: var(--accent);
    transition: height 0.5s ease-out;
}

.timeline-node {
    position: relative;
    margin-bottom: 4rem;
}

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

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 2px solid var(--border-light);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-node.active .timeline-dot {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(217, 4, 41, 0.15);
    animation: timeline-pulse 2s infinite;
}

@keyframes timeline-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(217, 4, 41, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(217, 4, 41, 0);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(217, 4, 41, 0);
    }
}

.timeline-days {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-node h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-node p {
    color: var(--text-muted-dark);
    font-size: 1.05rem;
    max-width: 650px;
}



/* --- Section 6: Bottom CTA --- */
#bottom-cta {
    background-color: var(--bg-dark);
    text-align: center;
    padding: 10rem 2rem;
    border-top: 1px solid var(--border-dark);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#bottom-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

#bottom-cta p {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Conversion form directly on bottom CTA */
.cta-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    padding: 3rem;
    border-radius: 16px;
}



.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light-gray);
    transition: var(--transition-fast);
}

.form-group {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
}

.form-input {
    flex-grow: 1;
    padding: 1.1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    background-color: var(--bg-dark-card);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.2);
}

/* Footer Section */
.footer-brand {
    border-top: 1px solid var(--border-dark);
    background-color: #050507;
    padding: 3rem 2rem;
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

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

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--accent);
}

/* --- Interactive Booking Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    width: 100%;
    max-width: 550px;
    padding: 3rem;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted-light);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent);
}

.modal-header {
    margin-bottom: 2rem;
}

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

.modal-header p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.modal-input, .modal-select {
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--border-dark);
    background-color: rgba(9, 9, 11, 0.6);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.modal-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D90429' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.modal-input:focus, .modal-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.15);
}

.modal-select option {
    background-color: var(--bg-dark-card);
    color: var(--text-white);
}

.modal-submit {
    margin-top: 1rem;
}

/* Success notification message */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg-dark-card);
    border-left: 4px solid var(--accent);
    border-top: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(120px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.toast-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.toast-text {
    font-size: 0.9rem;
    color: var(--text-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* FAQ Accordion Transitions & States */
.faq-item:hover {
    border-color: rgba(9, 9, 11, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-trigger:hover {
    color: var(--accent) !important;
}

/* Range Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: var(--border-dark);
    height: 6px;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--accent);
    height: 18px;
    width: 18px;
    border-radius: 50%;
    margin-top: -6px;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
}

input[type="range"]::-webkit-slider-thumb:hover {
    background-color: var(--accent-hover);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.5);
}

input[type="range"]::-moz-range-track {
    background: var(--border-dark);
    height: 6px;
    border-radius: 3px;
}

input[type="range"]::-moz-range-thumb {
    background-color: var(--accent);
    height: 18px;
    width: 18px;
    border: none;
    border-radius: 50%;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
}

input[type="range"]::-moz-range-thumb:hover {
    background-color: var(--accent-hover);
    transform: scale(1.2);
}

/* Scroll Animation Transitions */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.animate-fade-left {
    transform: translateX(-40px);
}

.animate-on-scroll.animate-fade-right {
    transform: translateX(40px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.95) translateY(20px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Nav Link Underline Hover Effect */
.nav-link-item {
    position: relative;
    padding-bottom: 4px;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Card Sweep Animations on Hover */
.metric-card, .service-card, .comparison-card, .hero-form-card, .domain-form-wrapper {
    position: relative;
    overflow: hidden;
}

.metric-card::before, .service-card::before, .comparison-card::before, .hero-form-card::before, .domain-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.metric-card:hover::before, .service-card:hover::before, .comparison-card:hover::before, .hero-form-card:hover::before, .domain-form-wrapper:hover::before {
    left: 150%;
}

/* Services Cards delays */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.35s; }

/* Pricing Cards delays */
.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0.05s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.25s; }

/* Comparison Grid Card delays */
.comparison-grid .comparison-card:nth-child(1) { transition-delay: 0.05s; }
.comparison-grid .comparison-card:nth-child(2) { transition-delay: 0.2s; }

/* Logo visual interaction */
.logo svg {
    transition: transform var(--transition-fast);
}

.logo:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Service Card visual tilt hover */
.service-card {
    will-change: transform, box-shadow;
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, transparent, rgba(217, 4, 41, 0.2), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01) rotate(0.5deg) !important;
}

.service-card:hover::after {
    opacity: 1;
}

/* Nav Links hover animations */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width var(--transition-fast);
}

.footer-links a:hover::after {
    width: 100%;
}


/* SVG Pipeline Graph Drawing Animation */
.graph-path-main {
    stroke-dasharray: 750;
    stroke-dashoffset: 750;
    transition: stroke-dashoffset 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.graph-area {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.graph-path-dashed {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.graph-dot, .graph-dot-target, .graph-dot-pulse {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.graph-dot {
    transform-origin: 350px 170px;
}

.graph-dot-target {
    transform-origin: 700px 80px;
}

.graph-dot-pulse {
    transform-origin: 700px 80px;
}

/* Active State Triggered by Scroll (When .hero-visual gets .visible) */
.hero-visual.visible .graph-path-main {
    stroke-dashoffset: 0;
}

.hero-visual.visible .graph-area {
    clip-path: inset(0 0 0 0);
}

.hero-visual.visible .graph-path-dashed {
    clip-path: inset(0 0 0 0);
}

.hero-visual.visible .graph-dot {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.1s;
}

.hero-visual.visible .graph-dot-target {
    opacity: 1;
    transform: scale(1);
    transition-delay: 2.1s;
}

.hero-visual.visible .graph-dot-pulse {
    opacity: 1;
    transform: scale(1);
    transition-delay: 2.1s;
}

/* Mobile Responsive Optimizations */
@media (max-width: 768px) {
    .section {
        padding: 5rem 1.25rem;
    }
    
    .nav-header {
        padding: 0.75rem 1.25rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    #hero {
        padding: 9rem 1.25rem 4rem 1.25rem;
        min-height: auto;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .visual-body {
        padding: 1rem;
    }
    
    .comparison-card {
        padding: 2.5rem 1.5rem;
    }
    
    .qualification-card {
        padding: 2.5rem 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    
    .timeline-wrapper {
        padding-left: 2rem;
        margin-top: 2.5rem;
    }
    
    .timeline-dot {
        left: -2.35rem;
        width: 14px;
        height: 14px;
        top: 5px;
    }
    
    .timeline-line, .timeline-progress {
        left: 5px;
    }
    
    .faq-trigger {
        padding: 1.25rem 1.5rem !important;
        font-size: 1.05rem !important;
    }
    
    .faq-content p {
        padding: 0 1.5rem 1.25rem 1.5rem !important;
    }
    
    .cta-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    /* Highlight pricing card adjustment for mobile (avoids clipping on edges) */
    .pricing-card.pricing-highlight {
        transform: none !important;
        margin: 0;
    }
    
    .pricing-card.pricing-highlight:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .comparison-grid {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-wrapper {
        padding-left: 1.5rem;
    }
    
    .timeline-dot {
        left: -1.85rem;
    }
    
    .timeline-line, .timeline-progress {
        left: 3px;
    }
    
    .footer-brand {
        padding: 3rem 1.25rem;
    }
}

/* Performance Metrics Section Styles */
.metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.metric-card {
    position: relative;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(217, 4, 41, 0.15);
}

/* Rounded dog-ear fold in top right corner */
.metric-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background-color: rgba(217, 4, 41, 0.15);
    border-bottom-left-radius: 12px;
    transition: var(--transition-fast);
}

.metric-card:hover::after {
    background-color: var(--accent);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #D90429 0%, #EF233C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.metric-subtext {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted-light);
}

/* Responsiveness overrides for new hero grid and metrics */
@media (max-width: 992px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-left-content {
        align-items: center;
    }

}

@media (max-width: 768px) {
    .hero-form-card {
        padding: 2.5rem 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* --- Section 1.8: Free Domain Overview Section --- */
.domain-form-wrapper {
    background-color: var(--bg-dark-card); /* #121214 */
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.domain-form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    text-align: left;
}

.domain-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.domain-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.domain-form-row input,
.domain-form-row select {
    background-color: #FFFFFF;
    color: #121214;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.15rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    height: 58px; /* Ensure uniform height */
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.domain-form-row input::placeholder {
    color: #8E9BAE;
}

.domain-form-row input:focus,
.domain-form-row select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.25);
    background-color: #FFFFFF;
}

/* Custom Select Dropdown Chevron styling */
.domain-form-row select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121214' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.domain-form-row select option {
    background-color: #FFFFFF;
    color: #121214;
    padding: 1rem;
}

/* Button overrides to ensure uniformity and mockup match */
.domain-btn-submit {
    height: 58px; /* Uniform height with inputs/selects */
    background-color: #FFFFFF !important;
    background-image: none !important;
    color: var(--accent) !important;
    border: 1px solid #FFFFFF !important;
    border-radius: 12px !important; /* Overriding btn-pill for uniform rounded corners */
    padding: 0 1.5rem !important;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all var(--transition-smooth) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.domain-btn-submit:hover {
    background-color: var(--accent) !important;
    color: #FFFFFF !important;
    border-color: var(--accent) !important;
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.35) !important;
    transform: translateY(-3px);
}

.domain-btn-submit:active {
    transform: translateY(-1px);
}

/* Responsive styles for Free Domain Overview */
@media (max-width: 992px) {
    .domain-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .domain-form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .domain-form-grid {
        gap: 1.25rem;
    }
}





