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

/* Brand Design Tokens */
:root {
    --primary-olive: #2C3A1E;
    --primary-olive-rgb: 44, 58, 30;
    --secondary-olive: #4A5E30;
    --accent-gold: #C8A96E;
    --accent-gold-rgb: 200, 169, 110;
    --accent-gold-hover: #BCA063;
    --bg-cream: #F0EDE6;
    --bg-cream-light: #F8F6F2;
    --white: #FFFFFF;
    --text-dark: #1C2414;
    --text-muted: #5A664E;
    --text-light: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
    --box-shadow-sm: 0 4px 12px rgba(44, 58, 30, 0.04);
    --box-shadow-md: 0 12px 36px rgba(44, 58, 30, 0.06);
    --box-shadow-lg: 0 24px 56px rgba(44, 58, 30, 0.1);
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
    font-size: 16px;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    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);
    color: var(--primary-olive);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-page-top {
    padding-top: 9rem;
}

/* Typography Extensions */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--white); }

.tagline {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: inline-block;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-olive);
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 169, 110, 0.4);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-olive);
    color: var(--primary-olive);
}

.btn-outline:hover {
    background-color: var(--primary-olive);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navigation Bar — Frosted Glass */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    color: #2C3A1E;
    background-color: rgba(240, 237, 230, 0.92);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition:
        background-color 0.3s ease,
        backdrop-filter 0.3s ease,
        -webkit-backdrop-filter 0.3s ease,
        padding 0.3s ease;
}

@supports (backdrop-filter: blur(1px)) {
    .header {
        background-color: rgba(240, 237, 230, 0.28);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .header.nav--scrolled {
        background-color: rgba(240, 237, 230, 0.6);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
}

.header.nav--scrolled {
    padding: 0.85rem 0;
}

@media (prefers-reduced-transparency: reduce) {
    .header,
    .header.nav--scrolled {
        background-color: rgba(240, 237, 230, 0.92);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-olive);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.header-social-link:hover {
    color: var(--accent-gold);
    background: rgba(200, 169, 110, 0.15);
}

.header-social-icon {
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 52px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: #2C3A1E;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

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

.nav-link.active {
    color: var(--accent-gold);
    font-weight: 600;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher Button (FR/EN) */
.lang-switcher {
    display: flex;
    background-color: rgba(44, 58, 30, 0.06);
    border-radius: 30px;
    padding: 3px;
    position: relative;
    border: 1px solid rgba(44, 58, 30, 0.1);
}

.lang-btn {
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-olive);
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    background-color: var(--primary-olive);
    color: var(--white);
    box-shadow: var(--box-shadow-sm);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--primary-olive);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background-color: var(--bg-cream-light);
    overflow: hidden;
    position: relative;
}

.hero--aurora {
    background-color: #2C3A1E;
}

.hero--aurora::before,
.hero--aurora::after {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(240, 237, 230, 0.78) 0%, rgba(240, 237, 230, 0.38) 42%, rgba(255, 255, 255, 0.06) 68%, transparent 100%),
        linear-gradient(180deg, transparent 50%, rgba(44, 58, 30, 0.16) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
}

.hero-grid--centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.hero-grid--centered .hero-content-panel {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.hero-grid--centered .hero-content {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-grid--centered .hero-subheadline {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-grid--centered .hero-stats {
    width: 100%;
    max-width: 520px;
}

.hero-grid--centered .hero-actions {
    justify-content: center;
}

.hero-content-panel {
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 24px 64px rgba(44, 58, 30, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-content {
    max-width: 620px;
}

.hero-headline {
    font-size: clamp(1.75rem, 4.2vw + 0.85rem, 4.15rem);
    line-height: 1.1;
    margin-bottom: 1.35rem;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.1vw + 0.85rem, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 54ch;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding-top: 0.25rem;
}

.hero-stat {
    padding: 0.9rem 1rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(200, 169, 110, 0.22);
}

.hero-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw + 0.5rem, 1.45rem);
    font-weight: 700;
    color: var(--primary-olive);
    line-height: 1.1;
}

.hero-stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: clamp(0.68rem, 1.5vw + 0.4rem, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(44, 58, 30, 0.18);
}

.hero-secondary-btn:hover {
    background: var(--primary-olive);
    color: var(--white);
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(44, 58, 30, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    width: 100%;
    aspect-ratio: 1.05;
    transform-style: preserve-3d;
    animation: heroDeviceSpin 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

@keyframes heroDeviceSpin {
    0% {
        transform: rotateY(0deg) rotateX(2deg) translateY(0px);
        box-shadow: 0 24px 56px rgba(44, 58, 30, 0.1);
    }
    25% {
        transform: rotateY(12deg) rotateX(0deg) translateY(-12px);
        box-shadow: -15px 30px 60px rgba(44, 58, 30, 0.15);
    }
    50% {
        transform: rotateY(0deg) rotateX(-2deg) translateY(0px);
        box-shadow: 0 24px 56px rgba(44, 58, 30, 0.1);
    }
    75% {
        transform: rotateY(-12deg) rotateX(0deg) translateY(-12px);
        box-shadow: 15px 30px 60px rgba(44, 58, 30, 0.15);
    }
    100% {
        transform: rotateY(0deg) rotateX(2deg) translateY(0px);
        box-shadow: 0 24px 56px rgba(44, 58, 30, 0.1);
    }
}

.hero-image-wrapper:hover {
    animation-play-state: paused;
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Decorative Badge on Hero Image */
.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-olive);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    border-left: 4px solid var(--accent-gold);
    z-index: 5;
    animation: floating 4s ease-in-out infinite;
}

.hero-badge-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.hero-badge-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

/* Problem Section */
.problem-section {
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(44, 58, 30, 0.05);
}

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

.problem-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(44, 58, 30, 0.03);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: rgba(200, 169, 110, 0.15);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(200, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--primary-olive);
    transition: var(--transition-smooth), box-shadow 0.3s ease;
}

.problem-card:hover .problem-icon-wrapper {
    background-color: var(--primary-olive);
    color: var(--accent-gold);
    transform: rotate(5deg);
    box-shadow: 0 0 12px 3px rgba(200, 169, 110, 0.5);
}

.problem-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.problem-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Challenges cards — scroll reveal (fade + slide up) */
.problem-section .problem-card.problem-card--reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease-out,
        transform 0.55s ease-out,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.problem-section .problem-card.problem-card--reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .problem-section .problem-card.problem-card--reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Services Section */
.services-section {
    background-color: var(--bg-cream-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (min-width: 993px) {
    .service-card:last-child:nth-child(odd) {
        grid-column: span 2;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(44, 58, 30, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(200, 169, 110, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(44, 58, 30, 0.06);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(44, 58, 30, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-olive);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-olive);
    color: var(--accent-gold);
}

.service-title {
    font-size: 1.65rem;
    font-weight: 700;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
}

.service-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-gold);
}

.service-item span {
    color: var(--text-muted);
}

.services-note-wrapper {
    margin-top: 4.5rem;
    padding: 0 1rem;
}

.services-note {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Elovance Section */
.why-section {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-content {
    max-width: 550px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.why-feature-card {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.25rem;
}

.why-feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-feature-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

.why-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-card {
    background-color: var(--bg-cream-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-md);
    border: 1px solid rgba(44, 58, 30, 0.04);
    width: 100%;
    max-width: 440px;
    text-align: center;
    position: relative;
}

.why-photo-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 4px solid var(--white);
    box-shadow: var(--box-shadow-sm);
}

.why-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-badge {
    display: inline-block;
    background-color: rgba(200, 169, 110, 0.12);
    color: var(--primary-olive);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.why-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.why-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.why-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    padding: 0 1rem;
}

.why-quote::before, .why-quote::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    line-height: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(44, 58, 30, 0.02);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: rgba(200, 169, 110, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.testimonial-placeholder-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-placeholder-text::before {
    content: '“';
}
.testimonial-placeholder-text::after {
    content: '”';
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: rgba(44, 58, 30, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-olive);
    border: 2px dashed rgba(200, 169, 110, 0.3);
}

.testimonial-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-olive);
    margin-bottom: 0.15rem;
}

.testimonial-info-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-cream-light) 0%, var(--bg-cream) 100%);
    padding: 5rem 0 8rem;
}

.cta-banner {
    position: relative;
    padding: 3px;
    border-radius: calc(var(--border-radius-lg) + 6px);
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.55) 0%,
        rgba(74, 94, 48, 0.35) 45%,
        rgba(200, 169, 110, 0.45) 100%
    );
    box-shadow:
        0 28px 72px rgba(44, 58, 30, 0.18),
        0 0 0 1px rgba(200, 169, 110, 0.2);
}

.cta-banner-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 25%, rgba(200, 169, 110, 0.35), transparent 60%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(74, 94, 48, 0.5), transparent 55%),
        linear-gradient(145deg, #2C3A1E 0%, #354928 50%, #2C3A1E 100%);
    background-size: 200% 200%;
    animation: ctaMeshShift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ctaMeshShift {
    0%   { background-position: 0% 40%; }
    100% { background-position: 100% 60%; }
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 3.5rem;
    border-radius: var(--border-radius-lg);
    background: rgba(44, 58, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

@supports not (backdrop-filter: blur(1px)) {
    .cta-banner-content {
        background: rgba(44, 58, 30, 0.94);
    }
}

.cta-eyebrow {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2C3A1E;
    background: linear-gradient(135deg, #F0EDE6 0%, #C8A96E 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 16px rgba(200, 169, 110, 0.25);
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.15rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0EDE6 45%, #C8A96E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(240, 237, 230, 0.88);
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.cta-btn {
    padding: 1rem 2.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(135deg, #C8A96E 0%, #e8d5a3 50%, #C8A96E 100%);
    background-size: 200% 100%;
    color: #2C3A1E;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 10px 32px rgba(200, 169, 110, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-position 0.4s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background-position: 100% 0;
    box-shadow:
        0 16px 40px rgba(200, 169, 110, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    color: #2C3A1E;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: ctaOrbFloat 6s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes ctaOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(12px, -18px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .cta-banner-mesh {
        animation: none;
    }

    .cta-orb {
        animation: none;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .cta-banner-content {
        background: #2C3A1E;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Footer Section */
.footer {
    background-color: var(--primary-olive);
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 38px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-contact-email {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-contact-email:hover {
    color: var(--accent-gold);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    color: var(--accent-gold);
}

.footer-social-icon {
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--accent-gold);
}


/* Scroll Fade-in Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for list/grid items */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Responsive Media Queries (Mobile First) */

/* Up to Tablet (Max 992px) */
@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-headline {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hero-content-panel {
        padding: 2rem;
    }

    .hero-stats {
        width: 100%;
        max-width: 520px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subheadline {
        max-width: none;
    }

    .hero-image-wrapper {
        max-width: 480px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .why-content {
        max-width: 100%;
        text-align: center;
    }

    .why-features {
        max-width: 500px;
        margin: 3rem auto 0 auto;
        text-align: left;
    }

    .why-media {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }

    .header {
        padding: 0.85rem 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-cream-light);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        box-shadow: var(--box-shadow-lg);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-actions {
        margin-top: 1rem;
    }
}

/* Up to Mobile (Max 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* ── Hero: stack, scale, tap-friendly ── */
    .hero {
        min-height: auto;
        padding: 6.5rem 0 3rem;
        align-items: flex-start;
    }

    .hero-inner {
        width: 100%;
    }

    .hero-grid--centered .hero-content-panel {
        max-width: 100%;
    }

    .hero-content-panel {
        padding: 1.75rem 1.25rem;
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 16px 48px rgba(44, 58, 30, 0.12);
    }

    .hero-content {
        width: 100%;
        align-items: stretch;
        text-align: left;
    }

    .hero-grid--centered .hero-content {
        align-items: stretch;
        text-align: left;
    }

    .hero-grid--centered .hero-subheadline {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .hero-grid--centered .hero-stats,
    .hero-grid--centered .hero-actions {
        justify-content: stretch;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero-headline.gradient-text-animate {
        background: none;
        background-clip: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: var(--primary-olive);
        color: var(--primary-olive);
        animation: none;
    }

    .hero-content-panel .tagline {
        color: var(--secondary-olive);
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.85rem;
    }

    .hero-subheadline {
        font-size: clamp(0.95rem, 3.8vw, 1.08rem);
        color: var(--text-dark);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-subheadline .rt-inner {
        color: var(--secondary-olive);
        background: rgba(200, 169, 110, 0.2);
        border-color: rgba(200, 169, 110, 0.45);
    }

    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.85rem 1rem;
        width: 100%;
    }

    .hero-stat-value {
        flex-shrink: 0;
        min-width: 3.25rem;
        font-size: 1.35rem;
    }

    .hero-stat-label {
        margin-top: 0;
        font-size: 0.72rem;
        line-height: 1.35;
        text-align: left;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-badge {
        bottom: -10px;
        left: 10px;
        right: 10px;
        padding: 1rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .service-card {
        padding: 2rem;
    }

    .service-title {
        font-size: 1.35rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-banner-content {
        padding: 3rem 1.75rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 58, 30, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

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

.modal-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 169, 110, 0.15);
    box-shadow: var(--box-shadow-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    padding: 3.5rem 3rem 3rem 3rem;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-cream-light);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.privacy-modal-card {
    max-width: 680px;
}

.privacy-last-update {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.privacy-modal-body {
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-top: 1.25rem;
    color: var(--text-dark);
}

.privacy-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.35rem 0 0.5rem;
    color: var(--primary-olive);
}

.privacy-section-body {
    margin-bottom: 0.5rem;
}

.privacy-section-body ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
    padding: 0;
}

.privacy-section-body li {
    margin-bottom: 0.35rem;
}

.privacy-section-body a {
    color: var(--primary-olive);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-section-body a:hover {
    color: var(--accent-gold);
}

.privacy-inline-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-inline-link:hover {
    color: var(--accent-gold);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    color: var(--primary-olive);
    background-color: var(--bg-cream-light);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-olive);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-olive);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(44, 58, 30, 0.15);
    background-color: var(--bg-cream-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
    background-color: var(--white);
}

.form-select {
    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='%232C3A1E' stroke-width='2' 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 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    margin-top: 0.25rem;
}

.form-checkbox-full {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .logo-link {
        height: 42px;
    }

    .hero {
        padding: 6rem 0 2.5rem;
    }

    .hero-content-panel {
        padding: 1.5rem 1.1rem;
    }

    .hero-headline {
        font-size: clamp(1.65rem, 8.2vw, 2rem);
    }

    .section-title {
        font-size: 1.75rem;
    }
    .form-checkbox-grid {
        grid-template-columns: 1fr;
    }
    .modal-card {
        padding: 3rem 1.25rem 2rem 1.25rem;
    }
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
}

.form-checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(44, 58, 30, 0.25);
    border-radius: 4px;
    background-color: var(--bg-cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-checkbox-label input[type="checkbox"]:checked {
    background-color: var(--primary-olive);
    border-color: var(--primary-olive);
}

.form-checkbox-label input[type="checkbox"]:checked::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid var(--accent-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.form-textarea {
    resize: vertical;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    text-align: left;
}

/* Success State Styles */
.success-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: rgba(44, 58, 30, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: var(--primary-olive);
}

.success-checkmark {
    animation: scaleCheckmark 0.5s ease-out forwards;
}

@keyframes scaleCheckmark {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Powered By Tool Logos in Footer Brand Column */
.footer-powered-by {
    margin-top: 1.55rem;
}

.powered-by-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.powered-by-logos {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.powered-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14px;
    transition: var(--transition-smooth);
}

.powered-logo-svg {
    height: 100%;
    width: auto;
    max-height: 13px;
    display: block;
}

.powered-logo-svg path {
    fill: var(--white);
    opacity: 0.22;
    transition: var(--transition-smooth);
}

.powered-logo-item:hover {
    transform: scale(1.18);
}

.powered-logo-item:hover .powered-logo-svg path {
    fill: var(--accent-gold);
    opacity: 0.95;
}

/* FAQ Accordion Styling */
.faq-section {
    background-color: var(--bg-cream-light);
    border-top: 1px solid rgba(44, 58, 30, 0.05);
    border-bottom: 1px solid rgba(44, 58, 30, 0.05);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(44, 58, 30, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
    padding: 0 0.5rem;
}

.faq-item:first-child {
    border-top: 1px solid rgba(44, 58, 30, 0.1);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.85rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-olive);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question-btn:hover {
    color: var(--accent-gold);
}

.faq-icon-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(200, 169, 110, 0.08);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.faq-question-btn:hover .faq-icon-toggle {
    background-color: rgba(200, 169, 110, 0.18);
    color: var(--primary-olive);
}

.faq-icon-toggle svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon-toggle svg line {
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    opacity: 0;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    padding-bottom: 1.85rem;
}

/* FAQ Active State */
.faq-item.active {
    border-bottom-color: rgba(44, 58, 30, 0.18);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    opacity: 1;
}

.faq-item.active .faq-icon-toggle {
    background-color: var(--primary-olive);
    color: var(--accent-gold);
}

.faq-item.active .faq-icon-toggle svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-toggle svg line:first-child {
    transform: scaleY(0);
    opacity: 0;
}

/* ═══════════════════════════════════════════════════
   PREMIUM ANIMATION SYSTEM — Elovance
   ═══════════════════════════════════════════════════ */

/* Magnetic Buttons */
.magnetic-btn {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                background-color 0.4s ease,
                box-shadow 0.4s ease,
                color 0.4s ease;
    will-change: transform;
}

/* 3D Tilt Cards */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out, box-shadow 0.4s ease;
    will-change: transform;
}

/* Morphing Gradient Blob Cursor */
.cursor-blob {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(200, 169, 110, 0.08) 0%,
        rgba(74, 94, 48, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.5s ease;
    mix-blend-mode: normal;
}

.cursor-blob.blob-active {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at center,
        rgba(200, 169, 110, 0.14) 0%,
        rgba(74, 94, 48, 0.06) 40%,
        transparent 70%);
}

@media (max-width: 768px) {
    .cursor-blob {
        display: none;
    }
}


/* Icon Glow-In Animation */
.icon-glow-in {
    animation: iconGlowPulse 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes iconGlowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 169, 110, 0);
        transform: scale(0.8);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(200, 169, 110, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 110, 0);
        transform: scale(1);
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), var(--secondary-olive), var(--accent-gold));
    background-size: 200% 100%;
    animation: progressShimmer 3s linear infinite;
    z-index: 10000;
    border-radius: 0 2px 2px 0;
    transition: width 0.1s linear;
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Service Card Cascade Entrance */
.service-card {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}

.service-card.card-cascade-in {
    animation: cascadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cascadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ambient Floating Particles Canvas */
.ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}


/* Service card hover glow ring */
.service-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(200, 169, 110, 0) 0%,
        rgba(200, 169, 110, 0.15) 50%,
        rgba(200, 169, 110, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

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

/* Testimonial card shine sweep effect */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 169, 110, 0.06) 50%,
        transparent 100%
    );
    transition: none;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover::after {
    animation: shineSweep 0.8s ease forwards;
}

@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Problem card border glow on hover */
.problem-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.problem-card:hover {
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.15),
                0 4px 12px rgba(44, 58, 30, 0.06);
}

/* FAQ item expand glow */
.faq-item.active .faq-question-btn {
    text-shadow: 0 0 20px rgba(200, 169, 110, 0.15);
}

/* Why feature card — left border expand animation */
.why-feature-card {
    border-left-width: 3px;
    transition: border-left-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s ease;
}

.why-feature-card:hover {
    border-left-width: 5px;
    padding-left: 1.5rem;
    transform: translateX(4px);
}

/* Why feature card — left border expand animation */

/* 14. Star Sparkle Cascade */
.star-sparkle {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
    animation: starSparkleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes starSparkleIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-30deg);
        filter: brightness(1);
    }
    60% {
        opacity: 1;
        transform: scale(1.4) rotate(10deg);
        filter: brightness(2.5) drop-shadow(0 0 8px rgba(200, 169, 110, 0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: brightness(1) drop-shadow(0 0 0 transparent);
    }
}

/* Quote icon floating animation */
.quote-float-active {
    animation: quoteFloat 4s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(2deg); }
    75% { transform: translateY(4px) rotate(-1deg); }
}

/* 15. Service Card Checklist Stagger Reveal */
.service-item {
    opacity: 0;
    transform: translateX(-20px);
}

.service-item.checklist-reveal {
    animation: checklistSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes checklistSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Checkmark SVG draw animation */
.check-draw {
    opacity: 0;
    animation: checkDrawIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes checkDrawIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    60% {
        transform: scale(1.3) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* 16. Service Card Cursor Spotlight */
.card-spotlight {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(200, 169, 110, 0.12) 0%,
        rgba(200, 169, 110, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* 17. Testimonial Card Entrance */
.testimonial-card {
    perspective: 1000px;
}

.testimonial-entrance {
    animation: testimonialFlipIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(60px) rotateX(15deg) scale(0.95);
}

@keyframes testimonialFlipIn {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(15deg) scale(0.95);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) rotateX(-2deg) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        box-shadow: var(--box-shadow-sm);
    }
}

/* 18. Service Icon Hover Spin */
.icon-hover-spin {
    animation: iconBounceSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounceSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    30% {
        transform: rotate(-15deg) scale(1.15);
    }
    60% {
        transform: rotate(10deg) scale(1.05);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Service icon color transition on hover — enhance existing */
.service-card:hover .service-icon-wrapper svg {
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(200, 169, 110, 0.4));
}

/* 19. Testimonial Avatar Pulse Ring */
.avatar-pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(200, 169, 110, 0.4);
    animation: avatarPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        border-color: rgba(200, 169, 110, 0.4);
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
        border-color: rgba(200, 169, 110, 0.1);
    }
}

/* Testimonial profile hover lift */
.testimonial-profile {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover .testimonial-profile {
    transform: translateX(6px);
}

/* 20. Service Card Rotating Border Gradient */
.rotating-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 0%,
        transparent 30%,
        rgba(200, 169, 110, 0.3) 50%,
        transparent 70%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
    animation: rotateBorderGlow 4s linear infinite;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorderGlow {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

.service-card:hover .rotating-border-glow {
    opacity: 1;
}

/* Testimonial text highlight on hover */
.testimonial-placeholder-text {
    transition: color 0.4s ease;
}

.testimonial-card:hover .testimonial-placeholder-text {
    color: var(--text-dark);
}

/* Testimonial card left accent bar that grows on hover */
.testimonial-card {
    border-left: 3px solid transparent;
    transition: border-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    border-left-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(44, 58, 30, 0.1),
                0 8px 20px rgba(200, 169, 110, 0.08);
}

/* Service card number badge */
.service-card {
    counter-increment: service-counter;
}

.service-card::before {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(200, 169, 110, 0.06);
    line-height: 1;
    transition: color 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::before {
    color: rgba(200, 169, 110, 0.15);
    transform: scale(1.1) translateY(-4px);
}

/* Services grid counter reset */
.services-grid {
    counter-reset: service-counter;
}

/* ═══════════════════════════════════════════════════
   GRADIENT TEXT — GradientText Component (React Bits port)
   ═══════════════════════════════════════════════════ */

.gradient-text-animate {
    display: inline;
    background-image: linear-gradient(
        115deg,
        #2C3A1E 0%,
        #4A5E30 28%,
        #C8A96E 52%,
        #e8d5a3 68%,
        #C8A96E 82%,
        #4A5E30 100%
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientTextShift 5s ease-in-out infinite alternate;
    font-weight: inherit;
}

.hero-headline.gradient-text-animate {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .gradient-text-animate {
        animation: none;
        background-position: 50% 50%;
    }
}

@keyframes gradientTextShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* ═══════════════════════════════════════════════════
   ROTATING TEXT COMPONENT (React Bits port)
   ═══════════════════════════════════════════════════ */

.rotating-text-host {
    display: inline-flex;
    align-items: center;
    vertical-align: baseline;
    position: relative;
}

.rt-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rt-inner {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(200, 169, 110, 0.15);
    border: 1px solid rgba(200, 169, 110, 0.35);
    border-radius: 6px;
    padding: 0.05em 0.45em 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
}

.rt-word {
    display: inline-flex;
    overflow: hidden;
    padding-bottom: 0.05em;
}

.rt-char {
    display: inline-block;
}

.rt-space {
    white-space: pre;
}

/* Enter: slide up from below */
@keyframes rtCharEnter {
    0%   { transform: translateY(110%); opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}

/* Exit: slide up out of view */
@keyframes rtCharExit {
    0%   { transform: translateY(0);     opacity: 1; }
    100% { transform: translateY(-120%); opacity: 0; }
}

.rt-char-enter {
    animation: rtCharEnter 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.rt-char-exit {
    animation: rtCharExit 0.28s cubic-bezier(0.4, 0, 1, 1) both;
}

/* ═══════════════════════════════════════════════════════════
   EFFECT 1 — DIAGONAL SHIMMER SWEEP
   Soft gold light band sweeps hero bottom-left → top-right
   1.5s sweep, pauses 2.5s, repeats every 4s
   ═══════════════════════════════════════════════════════════ */

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(200, 169, 110, 0.08) 50%,
        transparent 100%
    );
    animation: heroShimmerSweep 4s ease-in-out infinite;
}

@keyframes heroShimmerSweep {
    0%     { transform: translateX(-120%); }
    37.5%  { transform: translateX(320%); }  /* 1.5s / 4s = 37.5% */
    100%   { transform: translateX(320%); }  /* hold off-screen for remaining 2.5s */
}

/* ═══════════════════════════════════════════════════════════
   LIVE AUTOMATION TERMINAL — below hero
   ═══════════════════════════════════════════════════════════ */

.terminal-section {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, var(--bg-cream-light) 0%, var(--bg-cream) 100%);
    border-top: 1px solid rgba(44, 58, 30, 0.06);
}

.terminal-section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.terminal-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.terminal-section-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.terminal-stage {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    overflow: visible;
}

.hero-terminal {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 880px;
    margin: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-cream-light);
    border: 1px solid rgba(44, 58, 30, 0.1);
    box-shadow:
        0 24px 64px rgba(44, 58, 30, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.hero-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(44, 58, 30, 0.08);
}

.hero-terminal-window-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.hero-terminal-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.hero-terminal-label {
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-terminal-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f7a32;
    background: rgba(40, 200, 64, 0.12);
    border: 1px solid rgba(40, 200, 64, 0.28);
}

.hero-terminal-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.45);
    animation: terminalPulse 2s ease-out infinite;
}

@keyframes terminalPulse {
    0%   { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(40, 200, 64, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}

.hero-terminal-body {
    position: relative;
    min-height: 240px;
    max-height: 280px;
    overflow: hidden;
    padding: 1.25rem 1.5rem 1.5rem;
    background:
        linear-gradient(180deg, rgba(200, 169, 110, 0.08) 0%, transparent 18%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 23px,
            rgba(44, 58, 30, 0.05) 23px,
            rgba(44, 58, 30, 0.05) 24px
        ),
        #FFFFFF;
}

.hero-terminal-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(240, 237, 230, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

#hero-terminal-lines {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(44, 58, 30, 0.2) transparent;
}

.hero-terminal-line {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    opacity: 0;
    transform: translateX(-8px);
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-dark);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
    white-space: normal;
}

.hero-terminal-line.ht-visible {
    opacity: 1;
    transform: translateX(0);
    background: rgba(200, 169, 110, 0.12);
}

.hero-terminal-line .ht-prefix {
    flex-shrink: 0;
    color: var(--primary-olive);
    font-weight: 700;
}

/* Live seal — rotating ring beside terminal */
.live-seal-wrap {
    position: relative;
    width: 145px;
    height: 145px;
    flex: 0 0 auto;
}

.live-seal-rotate {
    width: 145px;
    height: 145px;
    transform-origin: center center;
    animation: liveSealSpin 20s linear infinite;
    will-change: transform;
}

.live-seal-ring {
    display: block;
    width: 145px;
    height: 145px;
    overflow: visible;
}

.live-seal-text {
    fill: #C8A96E;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.live-seal-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    pointer-events: none;
}

.live-seal-disc {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    margin: -34px 0 0 -34px;
    border-radius: 50%;
    background: #131a0d;
    z-index: 0;
}

.live-seal-dot {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7fb08a;
    animation: liveSealDotPulse 1.8s ease-in-out infinite;
}

.live-seal-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F0EDE6;
    line-height: 1;
}

@keyframes liveSealSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes liveSealDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.28);
        opacity: 0.62;
    }
}

@media (max-width: 900px) {
    .terminal-section-intro {
        margin-bottom: 2rem;
    }

    .terminal-stage {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-terminal {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .live-seal-wrap {
        align-self: center;
        margin-inline: auto;
        width: 120px;
        height: 120px;
    }

    .live-seal-rotate,
    .live-seal-ring {
        width: 120px;
        height: 120px;
    }

    .live-seal-disc {
        width: 56px;
        height: 56px;
        margin: -28px 0 0 -28px;
    }

    .live-seal-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .live-seal-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .terminal-section {
        padding: 3.5rem 0 4rem;
    }

    .hero-terminal-window-controls {
        display: none;
    }

    .hero-terminal-header {
        padding: 0.7rem 1rem;
        gap: 0.5rem;
    }

    .hero-terminal-label {
        text-align: left;
        font-size: 0.65rem;
    }

    .hero-terminal-body {
        min-height: 200px;
        max-height: 240px;
        padding: 1rem 1rem 1.25rem;
    }

    .hero-terminal-line {
        font-size: 0.75rem;
    }
}

@media (max-width: 520px) {
    .terminal-stage {
        gap: 0;
    }

    .live-seal-wrap {
        display: none;
    }

    .hero-terminal-body {
        min-height: 180px;
        max-height: 220px;
    }

    .hero-terminal-status {
        font-size: 0.62rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-terminal-pulse {
        animation: none;
    }

    .hero-terminal-line {
        transform: none;
        transition: opacity 0.2s ease;
    }

    .live-seal-rotate {
        animation: none;
    }

    .live-seal-dot {
        animation: none;
    }
}
