/* ========== Variables & Reset ========== */
:root {
    --primary: #c41818;
    /* Circuit Red */
    --primary-hover: #9c1313;
    --secondary: #fff5f5;
    --secondary-hover: #ffe4e4;

    --bg-main: #F3F4F6;
    --bg-light: #EBEDF0;
    --bg-dark: #0a0f18;

    --text-main: #1a202c;
    --text-muted: #4a5568;
    --text-light: #e2e8f0;

    --border: #e2e8f0;
    --border-dark: #2d3748;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2vw, 24px);
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: #ffffff;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.text-sm {
    font-size: 0.875rem;
}

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

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

.dark-section {
    background-color: var(--bg-dark);
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background-color: rgba(196, 24, 24, 0.15);
}

.badge-step-neutral {
    background-color: rgba(0, 0, 0, 0.06);
    color: #4a5568;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(196, 24, 24, 0.2);
    z-index: -1;
    transform: rotate(-1deg);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 24, 24, 0.2);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border-color: #4a5568;
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* ========== Grid Layouts ========== */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

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

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

@media (max-width: 900px) {

    .grid-2-col,
    .grid-3-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

@media (max-width: 900px) {
    .desktop-logo { display: none !important; }
    .mobile-logo { display: block !important; }
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: all var(--transition-short);
}

.nav-icon-btn svg {
    width: 20px;
    height: 20px;
}

.nav-icon-btn:hover {
    color: var(--primary);
    background-color: rgba(196, 24, 24, 0.05);
}

.nav-divider {
    height: 24px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 4px;
}

.login-link {
    font-weight: 500;
}

/* ========== Country Dropdown ========== */
.country-switcher {
    position: relative;
    display: inline-block;
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid var(--border);
}

.country-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: background-color 0.2s;
    text-align: left;
    font-family: inherit;
}

.country-option:hover {
    background-color: var(--bg-light);
}

.flag-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

@media (max-width: 900px) {

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .nav-right {
        margin-left: auto;
        margin-right: 1rem;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    padding: 120px 0 60px;
    /* Reduced vertical padding */
    overflow: hidden;
    /* User's background image */
    background-image: url('assets/images/hero_image_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    /* Dark semi-transparent overlay */
    z-index: 0;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background-color: rgba(24, 112, 213, 0.15);
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background-color: rgba(100, 200, 255, 0.1);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* Reduced gap */
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fca5a5 100%);
    /* Red gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.5;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
}

.tagline-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect ratio container */
    overflow: visible;
}

.hero-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keep the whole image visible */
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 30px rgba(196, 24, 24, 0.2));
}

.floating-hero {
    animation: heroFloat 8s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-20px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* ========== Rotating CSS Globe ========== */
.css-globe-container {
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-globe {
    width: 85%;
    height: 85%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateGlobe 45s linear infinite;
    border-radius: 50%;
}

.css-globe-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.css-globe-ring.horizontal {
    transform: rotateX(90deg);
    border: 12px solid rgba(255, 255, 255, 0.95);
    /* Thicker equator ring */
}

/* Rotating SVG Text Ring */
.css-globe-text-ring {
    position: absolute;
    width: 125%;
    height: 125%;
    top: -12.5%;
    left: -12.5%;
    transform-style: preserve-3d;
    transform: rotateX(55deg);
    /* Less aggressive curve so text stays readable */
    pointer-events: none;
    z-index: 10;
}

.css-globe-text-ring svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: rotateText 60s linear infinite;
}

.css-globe-text-ring text {
    font-size: 20px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.9);
    display: none;
    letter-spacing: 12px;
    text-transform: uppercase;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotateGlobe {
    0% {
        transform: rotateX(15deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(15deg) rotateY(360deg);
    }
}

/* ========== Steps Section ========== */
.steps-section {
    background-color: var(--bg-main);
    position: relative;
    z-index: 10;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    border-color: rgba(196, 24, 24, 0.1);
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step-card-header h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-main);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

/* Unified neutral icon colours */
.color-neutral {
    background: rgba(0, 0, 0, 0.05);
    color: #4a5568;
}

.step-content {
    flex-grow: 1;
    margin-bottom: 24px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: auto;
}

.learn-more-link .arrow {
    transition: transform 0.3s ease;
}

.step-card:hover .learn-more-link {
    color: var(--primary);
}

.step-card:hover .learn-more-link .arrow {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 960px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image-wrapper {
        padding-top: 75%;
        margin-top: 2rem;
    }

    /* Less tall on mobile */
}

/* ========== Animations General ========== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* ========== Problem Section ========== */
.problem-section {
    position: relative;
    background-color: var(--bg-light);
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
}

/* ========== Comparison Section ========== */
.comparison-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex: 1;
}

.old-way {
    opacity: 0.8;
}

.new-way {
    box-shadow: var(--shadow-lg);
    border-color: rgba(24, 112, 213, 0.2);
    position: relative;
}

.new-way::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    font-size: 1.25rem;
}

.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.bad {
    background: #fed7d7;
    color: #c53030;
}

.badge.good {
    background: #c6f6d5;
    color: #276749;
}

.comparison-list li {
    display: flex;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.comparison-list .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 14px;
}

.old-way .icon {
    background: #fed7d7;
    color: #c53030;
}

.new-way .icon {
    background: #c6f6d5;
    color: #2f855a;
}

.comparison-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.vs-divider {
    font-weight: 800;
    color: var(--text-light);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .comparison-grid {
        flex-direction: column;
    }

    .vs-divider {
        transform: rotate(90deg);
    }
}

/* ========== Brain Section ========== */
.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.feature-list li svg {
    margin-top: 4px;
    /* Align with first line of text */
    flex-shrink: 0;
}

/* ========== 3D Logic Stack (Circuit 42) ========== */
.logic-stack-3d {
    position: relative;
    width: 340px;
    height: 520px;
    margin: 0 auto;
    top: -80px;
    /* Shift up more to center in the dark section */
    transform-style: preserve-3d;
}

.logic-brick {
    position: absolute;
    width: 280px;
    height: 70px;
    background: rgba(59, 130, 246, 0.08);
    /* Faint tech blue */
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    padding-left: 30px;
    transform: rotateX(55deg) rotateZ(-35deg);
    transform-style: preserve-3d;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Generous vertical stacking to prevent overlap */
.logic-brick:nth-child(4) {
    bottom: 0;
}

.logic-brick:nth-child(3) {
    bottom: 115px;
    z-index: 2;
}

.logic-brick:nth-child(2) {
    bottom: 230px;
    z-index: 3;
}

.logic-brick:nth-child(1) {
    bottom: 345px;
    z-index: 4;
}

.logic-brick span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Face the camera */
    transform: rotateZ(35deg) rotateX(-55deg) translateY(2px);
    display: block;
}

/* 3D Sides */
.logic-brick::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 15px;
    height: 100%;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.5);
    transform: rotateY(90deg);
    transform-origin: left;
}

.logic-brick::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.5);
    transform: rotateX(-90deg);
    transform-origin: top;
}

/* Top block accent */
.logic-brick.top-brick {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    border-width: 2.5px;
}

.logic-brick.top-brick span {
    color: #fff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.logic-brick.top-brick::after,
.logic-brick.top-brick::before {
    background: rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

/* ========== On Ramps ========== */
.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(24, 112, 213, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.bg-blue-light {
    background: #60a5fa;
}

.bg-blue-main {
    background: var(--primary);
}

.bg-blue-dark {
    background: #1e3a8a;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-muted);
}

/* ========== Hands Section (C44) ========== */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a202c;
    border-radius: 40px;
    margin: 0 auto;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    border: 4px solid #cbd5e0;
}

.phone-screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.chat-app {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #efeae2;
}

.chat-header {
    background: #075e54;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg {
    padding: 10px 15px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.msg.bot {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg.user {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.875rem;
}

.tag-icon {
    width: 20px;
    height: 20px;
}

/* ========== Loop Section ========== */
.loop-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.loop-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.loop-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    z-index: 2;
    margin-right: 24px;
}

.step-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    flex-grow: 1;
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
}

/* ========== Footer ========== */
.footer {
    padding: 100px 0 60px;
    border-top: 1px solid var(--border-dark);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-dark);
    margin: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.legal-links a:hover {
    color: #fff;
}

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

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

/* ========== Step Detail Enhancements ========== */
.visual-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.media-backdrop-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-blue {
    background: #94a3b8;
    top: 0;
    left: 0;
}

.glow-orange {
    background: #94a3b8;
    bottom: 0;
    right: 0;
}

.glow-green {
    background: #94a3b8;
    top: 10%;
    right: 10%;
}

.glow-purple {
    background: #94a3b8;
    bottom: 10%;
    left: 10%;
}

.floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floating-anim 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-glass-card .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.floating-glass-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-glass-card .card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 2px;
}

.floating-glass-card .card-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
}

/* Specific Positions for Floating Cards */
.pos-tr {
    top: -15px;
    right: -25px;
    animation-delay: 0.5s;
}

.pos-bl {
    bottom: 10px;
    left: -30px;
    animation-delay: 1.2s;
}

.pos-tl {
    top: 20px;
    left: -40px;
    animation-delay: 0.8s;
}

.pos-br {
    bottom: -20px;
    right: -15px;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes floating-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* ========== Section Divider Arrow ========== */
.section-divider-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
    color: var(--primary);
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Adding "Life" through a very subtle ambient glow in the background */
.section-divider-arrow::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: ambient-pulse 8s ease-in-out infinite alternate;
}

@keyframes ambient-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.section-divider-arrow svg {
    opacity: 0;
    animation: arrow-complex 2.5s ease-in-out infinite;
}

@keyframes arrow-complex {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    30%,
    70% {
        opacity: 0.25;
    }

    50% {
        transform: translateY(30px);
        opacity: 0.35;
    }
}

/* ========== Brand Showcase Marquee ========== */
.brand-showcase {
    background-color: #f8fafc;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.brand-grid {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    gap: 6rem;
    padding: 0 3rem;
    align-items: center;
}

.brand-showcase::before,
.brand-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15rem;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-showcase::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.brand-showcase::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: 3px;
    opacity: 0.6;
    transition: var(--transition);
    cursor: default;
    user-select: none;
    flex-shrink: 0;
}

.brand-item:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

/* ========== Global Offices ========== */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.office-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.office-visual {
    height: 180px;
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

.office-visual iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2) brightness(0.8);
    opacity: 0.7;
    transition: var(--transition);
}

.office-card:hover .office-visual iframe {
    filter: grayscale(0.5) invert(0.1) contrast(1) brightness(1);
    opacity: 1;
}

.office-info {
    padding: 1.5rem;
}

.office-info h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.office-info p {
    line-height: 1.5;
}

/* Responsive Gaps */
@media (max-width: 991px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .brand-grid {
        justify-content: center;
    }
}

/* ========== Control Tower Section ========== */
.metric-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

.feature-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-preview {
    background: #0f172a;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    height: 400px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.dash-sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dash-header {
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    justify-content: space-between;
}

.dash-search {
    width: 150px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.dash-user {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.dash-content {
    padding: 1.5rem;
    flex: 1;
}

.dash-card-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-mini-card {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.dash-vis-grid {
    display: flex;
    gap: 1.5rem;
    height: 180px;
}

.dash-big-card {
    flex: 2;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.dash-small-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 100px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 100%);
    clip-path: polygon(0 80%, 10% 75%, 20% 85%, 30% 60%, 40% 65%, 50% 40%, 60% 50%, 70% 30%, 80% 35%, 90% 10%, 100% 20%, 100% 100%, 0 100%);
}

.pulsing-radar {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    position: relative;
}

.pulsing-radar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.2;
    animation: marker-pulse 2s infinite;
}

.floating-alert {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    border-left: 4px solid #ef4444;
}

/* ========== Megamenu Navigation ========== */
.nav-item.has-megamenu {
    position: static;
    /* Allows megamenu to be full width of container if needed, but we'll use a set width */
}

.desktop-nav {
    display: flex;
    align-items: center;
    position: relative;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 1000px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding: 3rem;
}

.nav-item.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-inner {
    display: block;
}

.megamenu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.megamenu-column h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1.2px;
    margin-bottom: 2rem;
    font-weight: 800;
}

.megamenu-item {
    display: flex;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.megamenu-item:hover {
    background: #f8fafc;
}

.menu-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.megamenu-item:hover .menu-icon {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 4px;
}

.badge-new {
    font-size: 0.65rem;
    background: #eff6ff;
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

/* Arrow Animation */
.nav-item.has-megamenu .nav-link svg {
    transition: transform 0.3s ease;
}

.nav-item.has-megamenu:hover .nav-link svg {
    transform: rotate(180deg);
}

/* ========== Testimonial Showcase ========== */
.testimonial-section {
    background: #fff;
    overflow: hidden;
}

.testimonial-card {
    display: flex;
    background: #0f172a;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.2);
}

.testimonial-visual {
    flex: 1.1;
    position: relative;
    min-height: 500px;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 50%, #0f172a 100%);
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2.5rem;
    position: relative;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-meta {
    margin-bottom: 3rem;
}

.meta-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.meta-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.meta-company {
    font-size: 0.85rem;
    color: #60a5fa;
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 0.75rem;
}

.nav-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Responsive adjustment */
@media (max-width: 1024px) {
    .testimonial-card {
        flex-direction: column;
    }

    .visual-overlay {
        background: linear-gradient(0deg, #0f172a 10%, transparent 100%);
    }

    .testimonial-content {
        padding: 3rem 2rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }
}

/* ========== COMPREHENSIVE RESPONSIVENESS ========== */

/* Tablet & Mobile Adjustments */
@media (max-width: 1024px) {
    .nav-container {
        height: 70px;
    }

    .desktop-nav {
        display: none;
        /* Hide standard nav on tablet/mobile */
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .css-globe-container {
        margin: 0 auto;
        transform: scale(0.8);
    }

    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .megamenu {
        width: 100% !important;
        position: fixed;
        top: 70px;
        left: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        border-radius: 0;
        box-shadow: none;
    }

    .megamenu-inner {
        padding: 2rem;
    }

    .megamenu-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Mobile Specific (Phone) */
@media (max-width: 640px) {
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .brand-grid {
        gap: 2rem;
    }

    .step-card {
        padding: 2rem;
    }

    .dashboard-preview {
        transform: scale(0.9);
        margin-left: -5%;
    }

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

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }

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

    .testimonial-content {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .section-divider-arrow {
        padding: 2rem 0 !important;
    }

    /* Refine floating cards for mobile */
    .floating-glass-card {
        padding: 0.5rem 0.75rem;
        transform: scale(0.85);
    }

    .pos-tl {
        left: 0 !important;
        top: 10px !important;
    }

    .pos-br {
        right: 0 !important;
        bottom: -10px !important;
    }

    .pos-tr {
        right: 0 !important;
        top: -10px !important;
    }

    .pos-bl {
        left: 0 !important;
        bottom: 10px !important;
    }
}

/* Fix for overlapping header on anchor links */
:target {
    scroll-margin-top: 100px;
}

/* ========== MOBILE NAVIGATION LOGIC ========== */
@media (max-width: 1024px) {
    .desktop-nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        /* Start hidden */
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        padding: 100px 2rem 2rem;
        z-index: 200;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .desktop-nav.active {
        right: 0;
        /* Slide in */
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
        color: var(--text-main);
    }

    .nav-link svg {
        float: right;
    }

    /* Overlay when menu is active */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 150;
        transition: all 0.3s ease;
    }

    body.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
}

/* Hamburger animations */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ========== Cookie Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: #ffffff;
    border: 1px solid var(--border-dark);
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 2000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-actions .btn {
    width: auto;
    padding: 8px 16px;
}

@media (max-width: 600px) {
    .cookie-banner {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}