/* ========================================
   INTERACTIVE LANDING PAGE STYLES
   ======================================== */

/* === CSS Variables === */
:root {
    /* Brand Guide Colors */
    --iron-gray: #4A4541;        /* Primary text, headings */
    --soft-sand: #F5F0E8;        /* Backgrounds */
    --factory-red: #A84032;      /* Primary CTA & highlights */
    --muted-teal: #4E7C7B;       /* Secondary highlights, icons */
    --light-warm-gray: #E2E0DD;  /* Cards, borders */
    --pure-white: #FFFFFF;       /* Clean background */
    --charcoal: #111827;         /* Strong text */

    /* Extended palette */
    --gray-medium: #6B7280;      /* Secondary text */
    --red-dark: #8d342a;         /* Hover states for factory red */
    --teal-dark: #3D6463;        /* Hover states for teal */

    /* Gradients - minimal use */
    --gradient-primary: linear-gradient(135deg, #4A4541 0%, #6B7280 100%);
    --gradient-accent: linear-gradient(135deg, #A84032 0%, #C25533 100%);
    --gradient-hero: linear-gradient(180deg, #F5F0E8 0%, #FFFFFF 100%);
    --gradient-subtle: linear-gradient(135deg, #E2E0DD 0%, #F5F0E8 100%);

    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Text Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 2rem;      /* 32px */
    --text-4xl: 2.5rem;    /* 40px */

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Animations */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--iron-gray);
    background: var(--soft-sand);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Clean professional background - NO GRIDS */
body::before {
    content: none;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--light-warm-gray);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container,
.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--iron-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-text {
    letter-spacing: 0.15em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2em;
}

.logo-dot {
    color: var(--factory-red);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile logo - just "S" in factory red */
.logo-mobile {
    display: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--factory-red);
    letter-spacing: 0.05em;
}

/* Show full logo on desktop, hide mobile version */
.logo-full {
    display: inline-flex;
}

/* On mobile: hide full logo, show just "S" */
@media (max-width: 768px) {
    .logo-full {
        display: none;
    }

    .logo-mobile {
        display: inline-flex;
    }
}

.logo:hover .logo-text {
    color: var(--factory-red);
}

.logo:hover .logo-dot {
    color: var(--iron-gray);
}

.logo:hover .logo-mobile {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--iron-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--factory-red);
    transition: width 0.3s ease;
}

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

.btn-nav {
    padding: 0.75rem 1.5rem;
    background: var(--factory-red);
    color: var(--soft-sand);
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 108, 59, 0.3);
    background: var(--orange-dark);
}

/* Mobile Navigation */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--iron-gray);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-top: 1px solid var(--light-warm-gray);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
    opacity: 1;
    display: flex;
}

.mobile-nav a {
    color: var(--iron-gray);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--factory-red);
}

.mobile-nav .btn-mobile {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem !important;
    background: var(--factory-red);
    color: var(--soft-sand) !important;
    border-radius: 8px;
    text-align: center !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.mobile-nav .btn-mobile:hover {
    background: var(--red-dark);
    color: var(--soft-sand) !important;
}

/* Button styles for navigation */
.btn-primary.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--soft-sand) !important;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

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

    .mobile-menu-btn {
        display: block;
    }

    .nav-container,
    .container .nav-content {
        padding: 1rem 1.5rem;
    }
}

/* === Hero Section - Immersive === */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Clean hero - remove decorative brackets */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--muted-teal) 0%, transparent 70%);
    top: -250px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--factory-red) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: 10s;
}

.orb-3 {
    display: none; /* Remove third orb - too much */
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: white;
    border: 1px solid var(--light-warm-gray);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-teal);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
    overflow: hidden;
}

#rotating-text {
    display: inline-block;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--factory-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--iron-gray);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.highlight-text {
    color: var(--factory-red);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 0.1em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-medium);
    opacity: 0.8;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--factory-red), transparent);
    position: relative;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: var(--factory-red);
    border-radius: 50%;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* === Section Reality === */
.section-reality {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: white;
    position: relative;
}

/* Subtle accent bar instead of corners */
.section-reality::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--muted-teal) 20%,
        var(--muted-teal) 80%,
        transparent 100%);
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

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

.reveal-text {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--iron-gray);
    margin-bottom: 3rem;
}

.email-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.email-card {
    background: white;
    border: 1px solid var(--light-warm-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateX(-50px) rotate(-2deg);
    transition: var(--transition-bounce);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Clean professional look - no decorative elements */
.email-card::before,
.email-card::after {
    content: none;
}

.email-card.revealed {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.email-card:nth-child(2) {
    transform: translateX(-50px) rotate(1deg);
    transition-delay: 0.1s;
}

.email-card:nth-child(3) {
    transform: translateX(-50px) rotate(-1deg);
    transition-delay: 0.2s;
}

.email-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--iron-gray);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.email-info strong {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
}

.email-info span {
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 0.9;
}

.email-subject {
    font-weight: 500;
    color: var(--charcoal);
}

/* Highlighted email card (the "You" card) */
.email-card-highlight {
    border: 2px solid var(--factory-red);
    background: linear-gradient(135deg, rgba(168, 64, 50, 0.02) 0%, white 100%);
    box-shadow: 0 4px 12px rgba(168, 64, 50, 0.12);
}

.email-card-highlight .email-info span {
    color: var(--factory-red);
    font-weight: 600;
}

.big-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--iron-gray);
    max-width: 800px;
    margin: 0 auto;
}

.big-text .highlight {
    color: var(--factory-red);
    font-weight: 700;
}

.reality-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--iron-gray);
    max-width: 700px;
    margin: 0 auto 1rem;
    text-align: center;
}

.reality-question {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--factory-red);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.reveal-delay {
    transition-delay: 0.4s;
}

/* === Section Question === */
.section-question {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: white;
    position: relative;
}

/* Clean sections - no decorative borders */
.section-question::before,
.section-question::after {
    content: none;
}

.question-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-bounce);
}

.question-circle.revealed {
    opacity: 1;
    transform: scale(1);
}

.question-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--iron-gray);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--iron-gray);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

/* Industrial accent line for titles - subtle */
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--iron-gray);
    opacity: 0.3;
}

.section-title.centered {
    text-align: center;
    padding-left: 0;
}

.section-title.centered::before {
    display: none;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    opacity: 1;
}

.section-subtitle.centered {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Section Solution === */
.section-solution {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 0;
    background: white;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-smooth);
}

.feature-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-item:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--iron-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--iron-gray);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--gray-medium);
    opacity: 1;
}

.solution-visual {
    position: relative;
}

.visitor-journey-card {
    background: white;
    border: 1px solid var(--light-warm-gray);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: var(--transition-smooth);
    position: relative;
}

/* Clean - no decorative elements */
.visitor-journey-card::before,
.visitor-journey-card::after {
    content: none;
}

.visitor-journey-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.journey-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-warm-gray);
}

.visitor-avatar {
    width: 56px;
    height: 56px;
    background: var(--iron-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.visitor-info strong {
    display: block;
    font-weight: 600;
    color: var(--iron-gray);
}

.visitor-info span {
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 1;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 30px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: var(--light-warm-gray);
}

.timeline-dot {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--factory-red);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--factory-red);
    position: relative;
    z-index: 1;
}

.timeline-content strong {
    display: block;
    font-weight: 600;
    color: var(--iron-gray);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 1;
}

.journey-footer {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-warm-gray);
}

.journey-stat {
    flex: 1;
    text-align: center;
}

.journey-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--iron-gray);
}

.journey-stat span {
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 1;
}

.visualization-caption {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray-medium);
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.visualization-caption[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Section Communication === */
.section-communication {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: var(--soft-sand);
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

/* Clean cards - no grid */
.comparison-card::before {
    content: none;
}

.comparison-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.comparison-card.generic {
    border: 1px solid var(--light-warm-gray);
    transition-delay: 0s;
}

.comparison-card.personalized {
    border: 2px solid var(--iron-gray);
    box-shadow: 0 4px 16px rgba(217, 108, 59, 0.06);
    transition-delay: 0.2s;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--iron-gray);
}

.email-preview {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
}

.email-line {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.card-indicator {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-indicator.negative {
    background: #E57373;
}

.card-indicator.positive {
    background: var(--factory-red);
}

.arrow-indicator {
    font-size: 2rem;
    color: var(--factory-red);
    font-weight: 700;
}

/* === Section Relationship === */
.section-relationship {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: white;
}

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

.handshake-container {
    position: relative;
    margin: 0 auto 3rem;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handshake-animation {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--factory-red);
}

.handshake-animation.revealed {
    opacity: 1;
    transform: scale(1);
    animation: gentleFloat 3s ease-in-out infinite;
}

.handshake-animation svg {
    filter: drop-shadow(0 8px 20px rgba(168, 64, 50, 0.25));
}

@keyframes gentleFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1) translateY(-8px);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.benefit-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.benefit-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--factory-red);
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.benefit-item p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* === Simple Setup Section === */
.section-setup {
    padding: var(--spacing-xxl) 2rem;
    background: var(--soft-sand);
}

.setup-header {
    text-align: center;
    margin-bottom: 4rem;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.setup-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.setup-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.setup-number {
    width: 56px;
    height: 56px;
    background: var(--factory-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.setup-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.setup-item p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

/* === Pricing Section === */
.section-pricing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--light-warm-gray);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.pricing-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    border: 2px solid var(--iron-gray);
    box-shadow: 0 4px 16px rgba(217, 108, 59, 0.08);
    transform: scale(1.02);
}

.pricing-card.featured.revealed {
    transform: scale(1.02) translateY(0);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--iron-gray);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
    margin: 0 0.25rem;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--gray-medium);
    opacity: 1;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 1;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-warm-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--factory-red);
    margin-top: 2px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--light-warm-gray);
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--iron-gray);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-pricing:hover {
    background: var(--soft-sand);
    border-color: var(--iron-gray);
    color: var(--iron-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 108, 59, 0.1);
}

.btn-pricing-featured {
    background: var(--factory-red);
    border: none;
    color: white;
}

.btn-pricing-featured:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(217, 108, 59, 0.25);
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 1;
    margin-top: 2rem;
}

/* === FAQ Section === */
.section-faq {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--light-warm-gray);
    border-radius: 8px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--factory-red);
    margin-top: 2px;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--iron-gray);
    margin: 0;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-medium);
    opacity: 1;
    margin: 0;
    padding-left: 2.5rem;
}

/* === Section CTA === */
.section-cta {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) 2rem;
    background: var(--soft-sand);
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--iron-gray);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    opacity: 1;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 30px rgba(217, 108, 59, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(217, 108, 59, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--iron-gray);
    border: 2px solid var(--light-warm-gray);
}

.btn-secondary:hover {
    background: var(--soft-sand);
    border-color: var(--iron-gray);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-medium);
    opacity: 1;
}

.cta-feature svg {
    color: var(--factory-red);
}

/* === Footer === */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-column h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: white;
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--factory-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .arrow-indicator {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .setup-item h3 {
        font-size: 1.125rem;
    }

    .setup-item p {
        font-size: 0.9375rem;
    }
}

/* === Utility Classes === */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === FAQ Page Styles === */
.faq-page-hero {
    background: linear-gradient(135deg, var(--muted-teal) 0%, var(--iron-gray) 100%);
    padding: 8rem 0 5rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.faq-page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.faq-page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.faq-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-question-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-question-block:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question-block h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--factory-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question-block h3 svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.faq-question-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.faq-question-block p:last-child {
    margin-bottom: 0;
}

.faq-question-block strong {
    color: var(--iron-gray);
    font-weight: 600;
}

.faq-question-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-question-block li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-highlight {
    background: var(--soft-sand);
    border-left: 4px solid var(--factory-red);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.faq-highlight p {
    margin-bottom: 0.5rem;
}

.faq-highlight p:last-child {
    margin-bottom: 0;
}

.faq-cta-section {
    background: var(--soft-sand);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.faq-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.faq-cta-section p {
    font-size: 1.125rem;
    color: var(--iron-gray);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.faq-cta-section ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.faq-cta-section li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    .faq-page-hero {
        padding: 5rem 0 3rem;
    }

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

    .faq-page-hero p {
        font-size: 1rem;
    }

    .faq-page-content {
        padding: 2rem 1.5rem;
    }

    .faq-question-block {
        padding: 1.5rem;
    }

    .faq-question-block h3 {
        font-size: 1.125rem;
    }

    .faq-cta-section {
        padding: 2rem 1.5rem;
    }

    .faq-cta-section h2 {
        font-size: 1.5rem;
    }
}

/* === Form Pages (Contact, Get Started) === */
.hero {
    padding: 8rem 0 4rem;
    background: var(--soft-sand);
    margin-top: 80px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--iron-gray);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.form-page-section {
    padding: 2.5rem 0 4rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-card {
    background: var(--soft-sand);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    height: fit-content;
}

.contact-info-card h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.3;
}

.contact-method {
    display: flex;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(74, 69, 65, 0.08);
}

.contact-method:first-of-type {
    padding-top: 0;
}

.contact-method:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-method h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--iron-gray);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-method p {
    color: var(--iron-gray);
    line-height: 1.5;
    margin: 0;
    font-size: 0.875rem;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3;
}

.form-container > form > p {
    margin-bottom: 1.25rem !important;
    font-size: 0.9375rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--iron-gray);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-warm-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--iron-gray);
    background: white;
    transition: all 0.3s ease;
}

.form-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A4541' 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 0.75rem center;
    background-size: 1.25rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--factory-red);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--factory-red);
    box-shadow: 0 0 0 3px rgba(168, 64, 50, 0.1);
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A84032' 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");
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-medium);
    opacity: 0.6;
}

.form-group select option {
    padding: 0.5rem;
    background: white;
    color: var(--iron-gray);
}

.btn-full-width {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--iron-gray);
    opacity: 0.7;
    margin-top: -0.5rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--iron-gray);
    margin-bottom: 1rem;
}

.success-detail {
    font-size: 0.95rem;
    opacity: 0.8;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--iron-gray);
}

.trust-badge svg {
    color: var(--factory-red);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--factory-red);
    color: white;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(168, 64, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--iron-gray);
    border: 2px solid var(--iron-gray);
}

.btn-secondary:hover {
    background: var(--iron-gray);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Form Page Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-page-section {
        padding: 2rem 0;
    }

    .contact-info-card,
    .form-container {
        padding: 1.5rem;
    }
}

/* ========================================
   SUCCESS ANIMATION STYLES
   ======================================== */

.success-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1rem 0;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #10B981;
    background-color: #ffffff;
    display: block;
}

.icon-line {
    height: 5px;
    background-color: #10B981;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 56px;
    left: 21px;
    width: 30px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s ease-out;
    animation-fill-mode: forwards;
}

.icon-line.line-long {
    top: 48px;
    right: 12px;
    width: 54px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s ease-out;
    animation-fill-mode: forwards;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.5);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 34px;
    z-index: 1;
    height: 90px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #ffffff;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 28px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 28px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 64px;
    }
    84% {
        width: 25px;
        left: 24px;
        top: 60px;
    }
    100% {
        width: 30px;
        left: 21px;
        top: 56px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 48px;
        top: 56px;
    }
    65% {
        width: 0;
        right: 48px;
        top: 56px;
    }
    84% {
        width: 60px;
        right: 0;
        top: 44px;
    }
    100% {
        width: 54px;
        right: 12px;
        top: 48px;
    }
}

/* Error notification animation */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Button loading state */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Spinner animation for form submission */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Success message fade in */
.success-message {
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
