/* ===========================
   CSS Reset & Base Styles
   Styled to match ramprfid.com
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - ramprfid.com inspired */
    --primary-dark: #0a2846;
    --primary-teal: #44bdc4;
    --teal-gradient: linear-gradient(135deg, #44bdc4 0%, #569eba 100%);
    --navy-gradient: linear-gradient(135deg, #0a2846 0%, #153d64 100%);
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography - ramprfid.com uses Poppins for headlines, Lato for body */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Navigation - ramprfid.com style
   =========================== */
.navbar {
    background: var(--primary-dark);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu > li > a {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-base);
}

.nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: transform var(--transition-base);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 14px;
    transition: all var(--transition-base);
}

.dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary-teal);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Selector */
.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    transition: all var(--transition-base);
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-selector option {
    background: var(--primary-dark);
    color: var(--white);
}

/* Custom Language Dropdown (with flag icons) */
.lang-dropdown {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

.lang-dropdown-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    pointer-events: none;
}

.lang-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    transition: all var(--transition-base);
    line-height: 1;
}

.lang-dropdown-toggle:hover,
.lang-dropdown-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.2);
}

.lang-dropdown-flag.fi {
    width: 1.25em;
    height: 0.95em;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-dropdown-caret {
    font-size: 11px;
    opacity: 0.8;
    transition: transform var(--transition-base);
}

.lang-dropdown.open .lang-dropdown-caret {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    margin: 0;
    padding: 6px;
    z-index: 1000;
    max-height: 360px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: background var(--transition-base);
    white-space: nowrap;
}

.lang-dropdown-item:hover,
.lang-dropdown-item:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.lang-dropdown-item[aria-selected="true"] {
    background: rgba(68, 189, 196, 0.18);
}

.lang-dropdown-item .fi {
    width: 1.25em;
    height: 0.95em;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Pricing controls wrapper — keeps the currency selector + team-size stepper
   on the same horizontal row above the cards, wrapping on small screens. */
.pricing-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 32px;
    margin: 0 auto 32px;
}

/* Currency selector (pricing section) */
.currency-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Team-size stepper — mirrors the Flutter Plans screen's team-size selector
   so the per-user price quoted on the cards updates live as the visitor
   types or clicks the +/− buttons. */
.team-size-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-size-label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-muted, #5a6470);
}

.team-size-stepper {
    display: inline-flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #d9dde2;
    border-radius: 6px;
    overflow: hidden;
    line-height: 1;
}

.team-size-btn {
    background: transparent;
    border: 0;
    padding: 0 12px;
    cursor: pointer;
    color: #1f2933;
    font-size: 13px;
    transition: background var(--transition-base), color var(--transition-base);
}

.team-size-btn:hover,
.team-size-btn:focus-visible {
    background: rgba(68, 189, 196, 0.12);
    color: #44bdc4;
    outline: none;
}

.team-size-btn:disabled {
    color: #b6bcc4;
    cursor: not-allowed;
}

.team-size-input {
    width: 64px;
    text-align: center;
    border: 0;
    border-left: 1px solid #d9dde2;
    border-right: 1px solid #d9dde2;
    background: #fff;
    color: #1f2933;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.team-size-input::-webkit-outer-spin-button,
.team-size-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.team-size-input:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(68, 189, 196, 0.35);
}

/* Total line on each card (only shown when team size > 1 and the plan
   has a per-user price). */
.pricing-total {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-muted, #5a6470);
}

.pricing-total .pricing-total-amount {
    font-weight: 700;
    color: #1f2933;
}

@media (max-width: 640px) {
    .pricing-controls {
        flex-direction: column;
        gap: 16px;
    }
    .team-size-selector {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .team-size-label {
        text-align: center;
    }
}

.currency-selector-label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-muted, #5a6470);
}

.currency-dropdown {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

.currency-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #d9dde2;
    color: #1f2933;
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    transition: all var(--transition-base);
    line-height: 1;
    min-width: 110px;
    justify-content: space-between;
}

.currency-dropdown-toggle:hover,
.currency-dropdown-toggle:focus-visible {
    border-color: #44bdc4;
    box-shadow: 0 0 0 3px rgba(68, 189, 196, 0.15);
}

.currency-dropdown-flag.fi {
    width: 1.25em;
    height: 0.95em;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.currency-dropdown-caret {
    font-size: 11px;
    opacity: 0.6;
    margin-left: auto;
    transition: transform var(--transition-base);
}

.currency-dropdown.open .currency-dropdown-caret {
    transform: rotate(180deg);
}

.currency-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 6px;
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.currency-dropdown.open .currency-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #1f2933;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--transition-base);
    white-space: nowrap;
}

.currency-dropdown-item:hover,
.currency-dropdown-item:focus-visible {
    background: rgba(68, 189, 196, 0.12);
    outline: none;
}

.currency-dropdown-item[aria-selected="true"] {
    background: rgba(68, 189, 196, 0.2);
    font-weight: 600;
}

.currency-dropdown-item .fi {
    width: 1.25em;
    height: 0.95em;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.btn-login {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    transition: all var(--transition-base);
}

.btn-login:hover {
    color: var(--primary-teal);
}

.btn-register {
    background: var(--primary-teal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all var(--transition-base);
}

.btn-register:hover {
    background: var(--primary-teal-dark, #0d8a8a);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-cta {
    background: var(--primary-teal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all var(--transition-base);
}

.btn-cta:hover {
    background: #3aa8af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 189, 196, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===========================
   Buttons
   =========================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.btn-primary:hover {
    background: #3aa8af;
    border-color: #3aa8af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 189, 196, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ===========================
   Hero Section - ramprfid.com style
   Auto-scaled to fit viewport
   =========================== */
.hero {
    background: var(--navy-gradient);
    color: var(--white);
    padding-top: 80px; /* Account for fixed navbar */
    height: 100vh;
    min-height: 600px; /* Minimum height for very small screens */
    max-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 60px);
    align-items: center;
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    padding-top: clamp(20px, 3vh, 60px);
    padding-bottom: clamp(20px, 3vh, 40px);
}

.hero-content {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: clamp(12px, 2vh, 24px);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.7;
    margin-bottom: clamp(20px, 3vh, 40px);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* AMO logo lives in the hero-image rotation (id="heroAmo"). The source PNG
   has a transparent background outside the AMO triangle, so it sits directly
   on the navy hero (no white plate / padding) — matching how the
   IndustryShop logo and gears sit in the same slot. */
.hero-amo-visual[hidden] {
    display: none;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: calc(100vh - 160px);
}

.hero-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    max-height: 100%;
    object-fit: contain;
}

/* SVG logo in hero - transparent background, no shadow */
.hero-image img[src$=".svg"] {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    max-height: clamp(250px, 50vh, 500px);
    height: auto;
    width: auto;
}

/* ===========================
   Trust Section - Logo Strip
   =========================== */
.trust-section {
    padding: 60px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.trust-label {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.trust-logo-item:hover {
    opacity: 1;
}

.trust-logo-item i {
    font-size: 32px;
    color: var(--primary-dark);
}

.trust-logo-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(68, 189, 196, 0.1);
    color: var(--primary-teal);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: var(--section-padding);
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 15px;
}

/* ===========================
   Solutions Section
   =========================== */
.solutions {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: rgba(68, 189, 196, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 24px;
    color: var(--primary-teal);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.solution-card > p {
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.solution-card ul {
    margin-bottom: 24px;
}

.solution-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--gray-600);
    font-size: 15px;
}

.solution-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 50%;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: gap var(--transition-base);
}

.solution-link:hover {
    gap: 12px;
}

/* ===========================
   Audience Split Section
   =========================== */
.audience-section {
    padding: var(--section-padding);
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    align-items: stretch;
}

.audience-card {
    display: flex;
    flex-direction: column;
    padding: 44px 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.audience-card-buyer {
    background: var(--gray-50);
}

.audience-card-buyer:hover {
    border-color: var(--primary-teal);
}

.audience-card-business {
    background: var(--navy-gradient);
    border-color: transparent;
    color: rgba(255, 255, 255, 0.85);
}

.audience-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.audience-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-card-buyer .audience-icon {
    background: rgba(68, 189, 196, 0.12);
}

.audience-card-buyer .audience-icon i {
    color: var(--primary-teal);
    font-size: 26px;
}

.audience-card-business .audience-icon {
    background: var(--teal-gradient);
}

.audience-card-business .audience-icon i {
    color: var(--white);
    font-size: 26px;
}

.audience-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-teal);
    margin-bottom: 4px;
}

.audience-card-head h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

.audience-card-business .audience-card-head h3 {
    color: var(--white);
}

.audience-card-lead {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray-500);
}

.audience-card-business .audience-card-lead {
    color: rgba(255, 255, 255, 0.8);
}

.audience-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
}

.audience-card-business .audience-list li {
    color: rgba(255, 255, 255, 0.88);
}

.audience-list li i {
    flex-shrink: 0;
    width: 20px;
    margin-top: 3px;
    text-align: center;
    color: var(--primary-teal);
    font-size: 15px;
}

.audience-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
}

.audience-card-buyer .audience-cta {
    background: var(--primary-teal);
    color: var(--white);
}

.audience-card-buyer .audience-cta:hover {
    background: var(--primary-dark);
}

.audience-card-business .audience-cta {
    background: var(--white);
    color: var(--primary-dark);
}

.audience-card-business .audience-cta:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--white);
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--navy-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.step-card p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

/* ===========================
   Platform Preview Section
   =========================== */
.platform-preview {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.platform-view-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.view-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.view-toggle-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.view-toggle-btn.active {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: var(--white);
}

.platform-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.platform-screenshots.mobile-view {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.platform-screenshots.mobile-view .screenshot-item img {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.screenshot-item img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 16px;
    transition: transform var(--transition-smooth), border-radius 0.3s ease, max-width 0.3s ease;
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

.screenshot-item:hover img {
    transform: scale(1.02);
}

.screen-plans {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.screen-plans__label {
    font-size: 12px;
    color: var(--gray-500);
}

.plan-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--gray-100, #eef2f6);
    color: var(--primary-dark);
    border: 1px solid var(--gray-200);
}

.plan-pill--all {
    background: rgba(68, 189, 196, 0.14);
    border-color: rgba(68, 189, 196, 0.5);
}

/* ===========================
   Screenshot Lightbox
   =========================== */
.screenshot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 40, 70, 0.92);
    padding: 32px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.screenshot-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.screenshot-lightbox__figure {
    margin: 0;
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: auto;
}

.screenshot-lightbox__img {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    background: #fff;
    cursor: zoom-out;
}

.screenshot-lightbox__caption {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

.screenshot-lightbox__close,
.screenshot-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

.screenshot-lightbox__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 64px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.screenshot-lightbox__nav--prev { left: 16px; }
.screenshot-lightbox__nav--next { right: 16px; }

.screenshot-lightbox__close:hover,
.screenshot-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

.screenshot-lightbox__close:active {
    transform: scale(0.95);
}

.screenshot-lightbox__nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Hide nav buttons on very narrow screens; users can still swipe/tap-out */
@media (max-width: 480px) {
    .screenshot-lightbox { padding: 16px; }
    .screenshot-lightbox__nav { display: none; }
    .screenshot-lightbox__close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }
}

body.is-lightbox-open {
    overflow: hidden;
}

.screenshot-item p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

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

.platform-apps > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-badge img {
    height: 48px;
    width: auto;
    transition: transform var(--transition-base);
}

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

.app-badges-disabled .app-badge-disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.app-badge-disabled img {
    filter: grayscale(100%);
    opacity: 0.45;
}

.app-badge-disabled:hover img {
    transform: none;
}

.app-coming-soon {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal, #44bdc4);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    color: var(--gray-500);
    font-size: 14px;
}

.author-company {
    color: var(--primary-teal);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.author-company:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--navy-gradient);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   About Us Section
   =========================== */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.amo-logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 200px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.about-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-highlight {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    border-left: 3px solid var(--primary-teal);
}

.about-highlight i {
    color: var(--primary-teal);
    font-size: 22px;
    margin-bottom: 12px;
}

.about-highlight h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.about-highlight p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amo-logo {
        position: static;
        display: block;
        width: 160px;
        margin: 40px auto 0;
    }
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item span {
    color: var(--gray-700);
    font-size: 16px;
}

.contact-item:has(.contact-entity) {
    align-items: flex-start;
}

.contact-entity {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-entity-name {
    font-weight: 600;
}

.contact-entity-id {
    font-size: 14px !important;
    color: var(--gray-500) !important;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(68, 189, 196, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 18px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition-base);
}

.footer-section a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: clamp(20px, 3vh, 40px);
    }

    .hero {
        height: 100vh;
        min-height: 550px;
        padding-top: 80px;
    }

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

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

    .hero-title {
        font-size: clamp(28px, 5vw, 42px);
    }

    .hero-image {
        max-height: clamp(200px, 35vh, 350px);
    }

    .hero-image img[src$=".svg"] {
        max-height: clamp(180px, 30vh, 300px);
    }

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

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

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

    .platform-screenshots.mobile-view {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .platform-screenshots.mobile-view .screenshot-item img {
        max-width: 180px;
    }

    .platform-screenshots .screenshot-item:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .platform-screenshots.mobile-view .screenshot-item:last-child {
        grid-column: auto;
        max-width: none;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 30px;
        gap: 10px;
        display: none;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 15px;
        font-size: 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border-radius: 8px;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-actions {
        display: none;
    }

    .nav-menu .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo-img {
        height: 32px;
        max-width: 32px;
    }

    .nav-logo-text {
        font-size: 18px;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
        padding-top: 80px;
    }

    .hero .container {
        gap: clamp(15px, 2vh, 30px);
        padding-top: clamp(10px, 2vh, 30px);
        padding-bottom: clamp(10px, 2vh, 20px);
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .hero-subtitle {
        font-size: clamp(13px, 3vw, 16px);
        margin-bottom: clamp(15px, 2vh, 25px);
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .hero-cta .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-image {
        max-height: clamp(150px, 30vh, 280px);
    }

    .hero-image img[src$=".svg"] {
        max-height: clamp(140px, 28vh, 250px);
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid,
    .solutions-grid,
    .steps-grid,
    .audience-grid,
    .platform-screenshots,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        gap: 48px;
    }

    .audience-card {
        padding: 32px 24px;
    }

    .platform-screenshots .screenshot-item:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .platform-screenshots.mobile-view {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .platform-screenshots.mobile-view .screenshot-item img {
        max-width: 140px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .social-links {
        justify-content: center;
    }

    .trust-logos {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-logo-text {
        display: none;
    }

    .nav-logo-img {
        height: 36px;
        max-width: 36px;
    }

    .hero {
        height: 100vh;
        min-height: 450px;
    }

    .hero .container {
        gap: clamp(10px, 2vh, 20px);
        padding-top: clamp(8px, 1.5vh, 20px);
        padding-bottom: clamp(8px, 1.5vh, 15px);
    }

    .hero-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: clamp(8px, 1.5vh, 15px);
    }

    .hero-subtitle {
        font-size: clamp(12px, 3vw, 14px);
        margin-bottom: clamp(12px, 2vh, 20px);
        line-height: 1.5;
    }

    .hero-cta .btn-large {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-image {
        max-height: clamp(120px, 25vh, 200px);
    }

    .hero-image img[src$=".svg"] {
        max-height: clamp(110px, 22vh, 180px);
    }

    .section-header h2 {
        font-size: 26px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    .feature-card,
    .solution-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .trust-logos {
        gap: 20px;
    }

    .trust-logo-item i {
        font-size: 24px;
    }

    .trust-logo-item span {
        font-size: 10px;
    }
}

/* Very short viewport (landscape phones) */
@media (max-height: 500px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 20px;
    }

    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        height: auto;
        max-height: none;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .hero-cta .btn-large {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-image {
        max-height: 150px;
    }

    .hero-image img[src$=".svg"] {
        max-height: 130px;
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image {
    animation-delay: 0.2s;
}
