/* Shared styles */
:root {
    --primary-red: #E31E24;
    --dark-black: #0b0b0b;
    --off-white: #F8F9FA;
    --text-gray: #555;
    --card-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --nav-bg: rgba(255, 255, 255, 0.9);
    --soft-red: rgba(227, 30, 36, 0.12);
    --bg-dark: #0d1117;
    --card-bg: #ffffff;
    --footer-dark: #080a0d;
    --text-main: #121212;
    --text-muted: #555555;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    --reveal-duration: 0.9s;
    --reveal-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
    --reveal-range-start: 5%;
    --reveal-range-end: 40%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(227, 30, 36, 0.18), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(0, 0, 0, 0.08), transparent 55%),
        #ffffff;
    color: var(--dark-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--soft-red);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

body::before {
    top: -120px;
    left: -80px;
}

body::after {
    bottom: -140px;
    right: -100px;
}

body > * {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.btn-red {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-red:hover {
    gap: 12px;
}

.btn-primary {
    background: var(--primary-red);
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 16px 30px rgba(227, 30, 36, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline,
.btn-ghost {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--dark-black);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    background: #fff;
}

.btn-outline:hover,
.btn-ghost:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Scroll reveal (CSS + JS fallback) */
.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px) scale(0.98);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
}

.reveal-group .reveal-item {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

@supports (animation-timeline: view()) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-group .reveal-item {
        animation: reveal var(--reveal-duration) var(--reveal-ease) forwards;
        animation-timeline: view();
        animation-range: entry var(--reveal-range-start) cover var(--reveal-range-end);
    }
}

@supports not (animation-timeline: view()) {
    .reveal.is-visible,
    .reveal-left.is-visible,
    .reveal-right.is-visible,
    .reveal-group .reveal-item.is-visible {
        animation: reveal var(--reveal-duration) var(--reveal-ease) forwards;
    }
}

.reveal-group .reveal-item:nth-child(1) { animation-delay: 0.05s; }
.reveal-group .reveal-item:nth-child(2) { animation-delay: 0.12s; }
.reveal-group .reveal-item:nth-child(3) { animation-delay: 0.18s; }
.reveal-group .reveal-item:nth-child(4) { animation-delay: 0.24s; }
.reveal-group .reveal-item:nth-child(5) { animation-delay: 0.3s; }
.reveal-group .reveal-item:nth-child(6) { animation-delay: 0.36s; }

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Reveal variations */
.reveal-fade {
    transform: none;
}

.reveal-slide-up {
    transform: translateY(30px);
}

.reveal-slide-down {
    transform: translateY(-26px);
}

.reveal-zoom {
    transform: translateY(12px) scale(0.94);
}

.reveal-pop {
    transform: translateY(18px) scale(0.96) rotate(-0.6deg);
}

.reveal-fast {
    --reveal-duration: 0.6s;
}

.reveal-slow {
    --reveal-duration: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-group .reveal-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Navbar (shared) */
.navbar,
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.topbar {
    background: var(--dark-black);
    color: #fff;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-item {
    font-weight: 600;
}

.topbar-right {
    font-weight: 600;
    opacity: 0.9;
}

.primary-nav {
    background: var(--primary-red);
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.primary-nav .brand {
    color: #fff;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-weight: 800;
    font-size: 1.1rem;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    opacity: 0.9;
}

.primary-nav .nav-links a {
    color: #fff;
    font-weight: 700;
}

.primary-nav .nav-links a:hover {
    color: #fff;
    opacity: 0.8;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-black);
    font-weight: 800;
    font-size: 1.1rem;
}

.brand img {
    height: 40px;
    width: auto;
    animation: logo-pulse 4.2s ease-in-out infinite;
}

.brand:hover img {
    animation: logo-bounce 0.8s ease-in-out;
}

@keyframes logo-pulse {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-3px) rotate(-2deg) scale(1.04); }
}

@keyframes logo-bounce {
    0% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-6px) scale(1.05); }
    70% { transform: translateY(2px) scale(0.98); }
    100% { transform: translateY(0) scale(1); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-cta {
    background: var(--black, #000);    
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}
/* Home page */
.hero {
    padding: 90px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    z-index: 0;
}


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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(227, 30, 36, 0.08);
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-landing {
    text-align: left;
    padding: 70px 0 70px;
}

.hero-landing .hero-actions {
    justify-content: flex-start;
}

.hero-landing h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.build-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: var(--card-shadow);
}

.build-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.checklist {
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.panel-note {
    margin-top: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

/* Combine card styles */
.card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease !important;
    position: relative;
    border: 2px solid transparent; /* Default border */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
    border: 2px solid transparent;
}

/* Hover effects for specific card types */
.card.ai-automation:hover {
    border-color: var(--primary-red);
}

/* Icon hover effects for specific card types */
.card.ai-automation .icon-box {
    transition: all 0.3s ease;
}

.card.ai-automation:hover .icon-box {
    background: var(--dark-black); /* Keep black background on hover */
    border-radius: 12px;
    transform: translateY(-5px) scale(1.1);
}

.card.booking-platform:hover,
.card.booking:hover {
    border-color: var(--dark-black);
}

/* Hover effects for service cards in "Our Services" section */
.service-list-card.ai-service {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-list-card.ai-service:hover {
    border-left: 5px solid var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-list-card.booking-service {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-list-card.booking-service:hover {
    border-left: 5px solid var(--dark-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 40px;
    color: #fff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-header.red {
    background-color: var(--primary-red);
}

.card-header.black {
    background-color: var(--dark-black);
}

.icon-box {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

/* Specific icon styles for cards */
.card .icon-box {
    transition: all 0.3s ease;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

/* Set black background for AI automation card icon by default */
.card.ai-automation .icon-box {
    background: var(--dark-black); /* Black background for AI automation icon by default */
}

/* Set red background for booking card icon by default */
.card.booking .icon-box {
    background: var(--primary-red); /* Red background for booking card icon by default */
}

.card-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff; /* White text for contrast with colored backgrounds */
}

.card-body {
    padding: 40px;
}

.card-body p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Animations for Booking Platform card */
.card.booking .icon-box {
    transition: all 0.3s ease;
}

.card.booking:hover .icon-box {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary-red); /* Maintain red background on hover */
    border-radius: 12px;
}

.card.booking:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-6deg); }
    75% { transform: rotate(6deg); }
}

.section-padding {
    padding: 100px 0;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about h2 span {
    color: var(--primary-red);
}

.about-text {
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    background: #FFF5F5;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.value-card h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.services {
    background-color: #fff;
}

/* Standardize h2 headings to match Our Services section */
h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    color: var(--dark-black);
}

h2 span {
    color: var(--primary-red);
}

/* Style for headings that should have first word in black and subsequent words in red */
.half-colored-heading {
    color: var(--dark-black);
}

.half-colored-heading span {
    color: var(--primary-red);
}

/* Override for specific sections that need different styling */
.about h2,
.contact-section h2 {
    font-size: 2.5rem;
}

/* Card header h2 should keep its original size */
.card-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff; /* White text for contrast with colored backgrounds */
}

.build-card h3,
.value-card h3,
.service-list-card h3,
.hero-panel h3,
.offer-card h3,
.founder-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

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

.metrics {
    padding: 80px 0 40px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-red);
}

.metric-label {
    color: var(--text-gray);
}

.ai-focus {
    padding: 90px 0;
}

.ai-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.ai-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.ai-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ai-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.ai-card p {
    color: var(--text-gray);
}

.industry-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-example {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--card-shadow);
}

.comparison {
    margin-top: 50px;
    overflow-x: auto;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.comparison th,
.comparison td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.comparison th {
    background: rgba(227, 30, 36, 0.08);
    font-weight: 700;
}

.workflow {
    padding: 80px 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 35px;
    position: relative;
}

.workflow-step {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.workflow-step span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-red);
    font-weight: 800;
}

.workflow-line {
    position: absolute;
    left: 0;
    top: -16px;
    height: 3px;
    width: 0;
    background: var(--primary-red);
    border-radius: 999px;
    transition: width 1.1s ease;
}

.workflow.is-visible .workflow-line {
    width: 100%;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.trust-badge {
    background: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: var(--card-shadow);
    font-weight: 600;
}

.demo-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.demo-card {
    background: #0f0f12;
    color: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.demo-card h4 {
    margin-bottom: 12px;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.testimonials {
    padding: 80px 0;
}

.carousel {
    position: relative;
}

.carousel-item {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--card-shadow);
}

.carousel-item.active {
    display: block;
}

.carousel-controls {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--primary-red);
}

.services-animated h2 {
    position: relative;
    display: inline-block;
}

.services-animated h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.services-animated:hover .section-title::after {
    width: 100%;
}

.services-animated .service-list-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-animated .service-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.services-animated .service-list-card ul li {
    transition: color 0.25s ease;
}

.services-animated .service-list-card:hover ul li {
    color: #333;
}

.service-list-card {
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--primary-red);
    text-align: left;
    background: #fff;
    transition: all 0.3s ease;
}

.service-list-card.black-border {
    border-left-color: var(--dark-black);
}

.service-list-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-list-card ul {
    list-style: none;
}

.service-list-card ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--text-gray);
}

.service-list-card ul li::before {
    content: "\2022";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}



.contact-section {
    background-color: var(--dark-black);
    color: #fff;
    padding: 20px 0 20px;
}

.contact-section h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.query-section h2 {
    color: var(--primary-red);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

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

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* AI page */
body.ai-page {
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(227, 30, 36, 0.2), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(0, 0, 0, 0.1), transparent 55%),
        #ffffff;
    color: var(--text-main);
}

.ai-page .container {
    max-width: 1150px;
}

.ai-page .hero {
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4.4vw, 3.8rem);
    margin-bottom: 16px;
}

.hero-copy h1 span {
    color: var(--primary-red);
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stat-row {
    display: flex;
    gap: 30px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    min-width: 140px;
}

.stat span {
    color: var(--primary-red);
    font-size: 1.6rem;
    font-weight: 800;
}

.stat small {
    color: var(--text-muted);
}

.hero-panel {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.hero-panel ul {
    list-style: none;
}

.hero-panel li {
    padding-left: 22px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-muted);
}

.hero-panel li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 18px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 50px;
}

.offer-grid,
.industry-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    gap: 22px;
}

.offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 90px;
}

.offer-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 52px;
    height: 52px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: white;
    font-size: 1.4rem;
}

.offer-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 90px;
}

.industry-pill {
    background: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.industry-pill span {
    color: var(--primary-red);
    font-weight: 800;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 90px;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.process-card h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-banner {
    background: var(--bg-dark);
    color: white;
    padding: 70px 0;
    border-radius: 28px;
    text-align: center;
    margin-bottom: 90px;
}

.impact-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.impact-banner h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.impact-item h2 {
    color: var(--primary-red);
    font-size: 2.8rem;
    margin-bottom: 6px;
}

.impact-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.testimonials {
    margin-bottom: 90px;
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-card strong {
    display: block;
}

.form-section {
    background: #fffafb;
    padding: 90px 0;
    border-radius: 40px;
}

.form-container {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label span {
    color: var(--primary-red);
}

input,
textarea {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fdfdfd;
    font-size: 1rem;
}

.full-width {
    grid-column: span 2;
}

.btn-schedule {
    grid-column: span 2;
    background: var(--primary-red);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.query-section {
    background: var(--black, #000);
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.founder-card h4 {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.founder-card h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.founder-info {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.footer-dark {
    background: var(--footer-dark);
    padding: 70px 0 20px;
    color: white;
}

.contact-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0 60px;
}

.contact-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.contact-pill p {
    font-size: 0.9rem;
    color: #bbb;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

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

@media (min-width: 901px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .topbar-right {
        width: 100%;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .form-grid,
    .contact-grid-small {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .btn-schedule {
        grid-column: span 1;
    }
}