/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   CSS VARIABLES (DESIGN TOKENS)
   =================================== */
:root {
    /* Colors */
    --color-primary: #000000;
    --color-primary-dark: #000000;
    --color-secondary: #F5E6D3;
    --color-accent: #fcb900;
    --color-text: #222222;
    /* Updated to #222222 per request */
    --color-text-light: #222222;
    /* Also updating lighter text to match or slightly lighter? User said "non heading text #222222" */
    --color-bg: #FFFFFF;
    --color-bg-light: #F7FAFC;
    --color-bg-dark: #000000;
    --color-border: #E2E8F0;
    --color-hero-bg: #FFF0BE;
    /* Updated to #FFF0BE per request */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --font-typewriter: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    --radius-none: 0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-none);
    transition: all var(--transition-base);
    cursor: pointer;
    text-transform: capitalize;
}

.btn-primary {
    background: var(--color-bg-dark);
    color: white;
    box-shadow: none;
    border: none;
    position: relative;
    padding-left: calc(2.5rem + 6px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--color-accent);
}

.btn-primary:hover {
    background: #000000;
    transform: none;
    box-shadow: none;
    opacity: 0.8;
    /* Subtle hover effect for black button */
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-text);
    color: white;
}

.btn-sm {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: relative;
    background: var(--color-hero-bg);
    padding: var(--spacing-md) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 29px;
    /* Reduced by 50% from 58px */
    width: auto;
    max-width: none;
    /* Prevent shrinking constraints if any */
    object-fit: contain;
}

.header-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.header-contact-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: var(--spacing-md);
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    padding: 0.12rem;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-hero-bg);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    opacity: 0.3;
}

.hero-bg-shapes .shape-1 {
    top: 10%;
    right: 5%;
}

.hero-bg-shapes .shape-2 {
    bottom: 10%;
    left: 5%;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    text-align: left;
}

.hero-copy {
    max-width: 560px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: #000000;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateX(-26px);
    animation: heroLineIn 0.48s ease-out forwards;
    animation-delay: inherit;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.05s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.55s;
}

.hero-title-line-dynamic {
    display: flex;
    align-items: baseline;
    gap: 0.08em;
    width: 13ch;
    height: 1.2em;
    line-height: 1.1;
    padding: 0;
}

.hero-typewriter {
    display: block;
    font-family: var(--font-heading);
    letter-spacing: normal;
    white-space: nowrap;
    color: #ff667f;
    font-weight: 700;
    line-height: 1.1;
}

.hero-typewriter-cursor {
    width: 0.07em;
    height: 0.95em;
    background: #ff667f;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-title-highlight {
    background: var(--color-bg-dark);
    color: white;
    padding: 0.25rem 1.5rem;
    display: inline-block;
    position: relative;
    min-height: 1.5em;
    /* Prevent vertical collapse */
    vertical-align: middle;
    /* Align nicely */
}

.hero-title-highlight::after {
    content: '|';
    position: absolute;
    right: 10px;
    animation: blink 0.75s step-end infinite;
    color: white;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateX(-26px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.125rem;
    color: var(--color-text-light);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-split .hero-description {
    margin-left: 0;
    margin-right: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-split .hero-buttons {
    justify-content: flex-start;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: center;
    animation: bounceInUp 1s ease-out 0.8s backwards;
}

.hero-image img {
    transform: scale(1.1);
    transform-origin: center;
    animation: heroFloat 5.8s ease-in-out infinite;
}

.hero-split .hero-image {
    margin-top: 0;
    justify-content: flex-end;
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px);
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0% {
        transform: scale(1.1) translateY(0);
    }

    50% {
        transform: scale(1.1) translateY(-10px);
    }

    100% {
        transform: scale(1.1) translateY(0);
    }
}



/* ===================================
   SECTIONS
   =================================== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.section-title-large {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #000000;
    text-align: center;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   SOLUTIONS SECTION
   =================================== */
.solutions-section {
    background: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: none;
    box-shadow: none;
}

.service-icon {
    margin: 0 auto var(--spacing-md);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: #000000;
}

.service-description {
    color: var(--color-text-light);
}

/* ===================================
   TRAINING SECTION
   =================================== */
.training-section {
    background: white;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-item img {
    flex-shrink: 0;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
}

.training-image img {
    border-radius: 0;
    box-shadow: none;
}

/* ===================================
   AUTOMATION SECTION
   =================================== */
.automation-section {
    background: var(--color-bg-light);
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
}

.automation-image img {
    border-radius: 0;
    box-shadow: none;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    background: var(--color-bg-dark);
    padding: var(--spacing-xl);
    border-radius: 0;
    color: white;
    text-align: center;
    box-shadow: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.stat-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.stat-label h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */
.testimonial-section {
    background: var(--color-bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
}

.testimonial-image img {
    border-radius: 0;
    box-shadow: none;
}

.testimonial-content {
    position: relative;
}

.quote-decoration {
    position: absolute;
    top: -40px;
    right: 0;
    opacity: 0.3;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: var(--spacing-xs);
}

.testimonial-role {
    color: var(--color-text-light);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.pricing-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.pricing-card:hover {
    transform: none;
    box-shadow: none;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: var(--spacing-sm);
}

.pricing-subtitle {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
}

.price-period {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.pricing-price-alt {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.pricing-price-alt .price-amount {
    font-size: 2rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.pricing-features img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.pricing-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    background: var(--color-hero-bg);
    overflow: hidden;
}

.contact-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.contact-bg-shapes .shape {
    position: absolute;
    opacity: 0.1;
}

.contact-bg-shapes .shape-1 {
    top: 10%;
    right: 5%;
    animation: rotate-slow 20s linear infinite;
}

.contact-bg-shapes .shape-2 {
    bottom: 10%;
    left: 5%;
    animation: rotate-slow 25s linear infinite reverse;
}

.contact-section .section-title-large {
    color: #000000;
}

.contact-form-section {
    background: white;
    padding: var(--spacing-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: var(--spacing-xl);
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-input {
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
    color: var(--color-text-light);
}

.footer-social h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-text-light);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.footer-links a {
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}


/* ===================================
   NEW SECTIONS (REWRITE)
   =================================== */

/* TRUST STRIP */
.trust-strip {
    background: white;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-heading {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.trust-points {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
}

/* PROBLEM SECTION */
.problem-section {
    background: var(--color-bg-light);
}

.problem-list {
    margin: var(--spacing-lg) 0;
    padding-left: 1.5rem;
}

.problem-list li {
    margin-bottom: var(--spacing-xs);
}

.closing-line {
    font-weight: 600;
    margin-top: var(--spacing-lg);
}

/* PARTNER SECTION */
.partner-section {
    background: white;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.closing-callout {
    margin-top: var(--spacing-lg);
    font-weight: 600;
    border-left: 4px solid var(--color-accent);
    padding-left: var(--spacing-md);
}

/* SERVICES SECTION */
.services-section {
    background: var(--color-bg-light);
}

.services-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    /* Existing style reused, ensuring bullet list looks good */
    height: 100%;
}

.service-bullets {
    margin-top: var(--spacing-md);
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.services-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta p {
    margin-bottom: var(--spacing-md);
}

/* PROCESS SECTION (TIMELINE) */
.process-section {
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    /* Adjust based on marker size */
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: var(--spacing-xl);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--color-bg-dark);
    color: white;
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.process-footer {
    text-align: center;
    font-weight: 600;
}

/* SUPPORT SECTION */
.support-section {
    background: var(--color-bg-light);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-box {
    background: white;
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    border: 1px solid var(--color-border);
    text-align: left;
}

.check-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.boundary-line {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: var(--spacing-xl) 0;
}

/* WHY SECTION */
.why-section {
    background: white;
}

.why-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.why-list li {
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.why-list li:last-child {
    border-bottom: none;
}

.trust-microcopy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    opacity: 0.8;
}

/* BOOKING SECTION */
.booking-section {
    background: var(--color-bg-light);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.calendly-placeholder {
    background: white;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    gap: var(--spacing-md);
}

/* CONTACT CARDS SECTION */
.contact-cards-section {
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background: var(--color-bg-light);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    text-align: center;
}

.contact-options .contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options .contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "body body"
        "cta cta";
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-sm);
    align-items: center;
    text-align: left;
    height: 100%;
    padding: var(--spacing-lg);
}

.contact-options .contact-card .btn {
    grid-area: cta;
    margin-top: auto;
}

.contact-options .contact-card .icon-badge {
    grid-area: icon;
    margin-bottom: 0;
}

.contact-options .contact-card .card-title {
    grid-area: title;
    margin-bottom: 0;
}

.contact-options .contact-card .card-body {
    grid-area: body;
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.card-body {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

/* FOOTER SIMPLE */
.footer-simple {
    text-align: center;
}

.footer-logo {
    display: block;
    margin: 0 auto var(--spacing-md);
    max-width: 180px;
    height: auto;
}

.footer-legal {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.footer-legal a {
    color: var(--color-text-light);
    text-decoration: none;
}


@media (max-width: 768px) {
    :root {
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Force smaller size on mobile for better fit */
    }

    .hero-title-highlight {
        min-width: 0;
        padding: 0.25rem 0.5rem;
        /* Reduce padding to fit text */
        display: inline;
        /* Allow natural wrapping if needed */
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }

    .hero-content.hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-split .hero-buttons {
        justify-content: center;
    }

    .hero-split .hero-image {
        justify-content: center;
        margin-top: var(--spacing-xl);
    }

    .btn {
        width: 100%;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    /* Stack Grids */
    .grid-2,
    .grid-3,
    .grid-4,
    .partner-grid,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .testimonial-grid,
    .automation-grid,
    .training-grid,
    .pricing-grid,
    .services-grid,
    .contact-grid,
    .contact-cards-section .contact-cards-grid,
    .contact-options .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-social {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .logo img {
        height: 25px;
        /* Smaller logo on mobile */
        width: auto;
    }
}

/* ===================================
   ANIMATIONS & INTERACTIONS
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ===================================
   REMODEL ADDITIONS
   =================================== */
.header-content {
    gap: var(--spacing-lg);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-left: auto;
    justify-content: flex-end;
    text-align: right;
}

.nav-link {
    font-weight: 700;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ff667f;
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.page-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background: var(--color-hero-bg);
}

.page-hero-content {
    text-align: center;
}

.page-hero-content.reveal {
    transform: none;
}

.page-hero-content.reveal.is-visible {
    transform: none;
}

.page-hero .hero-title-line {
    opacity: 0;
    transform: translateY(-12px);
    animation: pageHeroTitleIn 0.45s ease-out forwards;
    animation-delay: 0.08s;
}

.home-intro {
    background: white;
}

.home-intro .section-description {
    max-width: 900px;
}

.quick-blocks {
    background: var(--color-bg-light);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.quick-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl);
}

.quick-card-cta {
    margin-top: var(--spacing-md);
}

.quick-icon {
    width: 42px;
    height: 42px;
    border: 2px solid var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.closing-banner {
    background: var(--color-bg-light);
}

.closing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.closing-inner .section-description {
    margin: 0;
}

.product-section {
    background: white;
}

.product-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl);
    background: white;
}

.product-card img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
}

.product-card img.product-image-portrait {
    max-height: 520px;
    object-fit: contain;
}

.product-card img.product-image-full {
    height: auto;
    max-height: none;
    object-fit: contain;
}

.product-body p {
    margin-bottom: var(--spacing-md);
}

.subheading {
    font-size: 1rem;
    font-weight: 600;
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.pill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.pill-list li {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.highlight-section {
    background: var(--color-bg-light);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.highlight-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl);
}

.simple-list {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.simple-list li {
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border);
}

.simple-list li:last-child {
    border-bottom: none;
}

.services-detail {
    background: white;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.detail-card {
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl);
    background: var(--color-bg-light);
}

.detail-illustration {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
}

.outcomes-section {
    background: var(--color-bg-light);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.outcome-card {
    border: 1px solid var(--color-border);
    background: white;
    padding: var(--spacing-lg);
    text-align: center;
    font-weight: 600;
}

.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.faq-item {
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl);
    background: var(--color-bg-light);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.contact-options {
    background: white;
}

.services-overview {
    background: white;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.service-feature-card {
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl);
    background: var(--color-bg-light);
}

.service-feature-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: #000000;
}

.service-feature-card p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.service-feature-card p:last-of-type {
    margin-bottom: 0;
}

.services-support {
    background: var(--color-bg-light);
}

.services-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.services-support-card {
    border: 1px solid var(--color-border);
    background: white;
    padding: var(--spacing-xl);
}

.services-support-card p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.services-support-card .btn {
    margin-top: var(--spacing-sm);
}

@keyframes pageHeroTitleIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .header-contact-actions {
        margin-left: 0;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .closing-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cards-grid,
    .services-support-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ANIMATION + VISUAL INTEREST
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.delay-4 {
    transition-delay: 0.4s;
}

.icon-badge {
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    background: linear-gradient(120deg, rgba(252, 185, 0, 0.22), rgba(252, 185, 0, 0.04));
}

.icon-badge::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -6px;
    width: 22px;
    height: 22px;
    background: var(--color-accent);
    opacity: 0.22;
    z-index: -1;
}

.icon-badge svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.product-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.product-card.reverse .product-body {
    order: 1;
}

.product-card.reverse img {
    order: 2;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
