:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* New Effects Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(12px);
    --mesh-1: #2563eb;
    --mesh-2: #db2777;
    --mesh-3: #7c3aed;
}

/* Animations */
@keyframes gradient-mesh {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float-particle {

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

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes shine {
    from {
        transform: translateX(-100%) skewX(-15deg);
    }

    to {
        transform: translateX(200%) skewX(-15deg);
    }
}

/* Particle Background */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
    background: var(--primary);
    animation: float-particle 10s infinite ease-in-out;
}


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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-15deg);
    animation: shine 3s infinite;
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

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

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

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

.bg-dark {
    background-color: var(--secondary);
    color: white;
}

/* Navbar */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
}

.logo-icon {
    color: var(--primary);
}

.logo-accent {
    color: var(--text-light);
    font-weight: 400;
}

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

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
}

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.input-group {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.75rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: var(--primary);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #444;
    margin-right: -8px;
}

.avatar-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: white;
    position: relative;
    z-index: 1;
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.5s;
}

.hero-image:hover {
    transform: rotateY(0) rotateX(0);
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    min-width: 220px;
    animation: float 6s ease-in-out infinite;
}

.card-top-right {
    top: 10%;
    right: -20px;
}

.card-bottom-left {
    bottom: 10%;
    left: -20px;
    animation-delay: 3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.bg-success {
    background: var(--accent-success);
}

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

.card-text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    line-height: 1.3;
}

.card-text strong {
    color: var(--secondary);
}

.card-text span {
    color: var(--text-light);
    font-size: 0.75rem;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

/* Logo Strip */
.logo-strip {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
    text-align: center;
}

.logo-strip p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Logo Carousel */
.logos-carousel-wrapper {
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.logos-carousel-wrapper::before,
.logos-carousel-wrapper::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100px;
    z-index: 2;
}

.logos-carousel-wrapper::before {
    background: linear-gradient(to right, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
}

.logos-carousel-wrapper::after {
    background: linear-gradient(to left, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
}

.logos-carousel {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.25rem;
    white-space: nowrap;
    transition: color 0.3s;
}

.logo-item:hover {
    color: var(--primary);
}

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

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

/* VSL Section */
.vsl-section {
    padding: 4rem 0;
    background: var(--bg-light);
    margin-bottom: 2rem;
}

.vsl-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: var(--secondary);
    /* 16:9 Aspect Ratio for YouTube */
    padding-bottom: 56.25%;
    height: 0;
}

.vsl-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
}

.vsl-wrapper:hover .vsl-video {
    transform: scale(1.01);
}

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

    .vsl-wrapper {
        border-radius: 12px;
    }
}

/* Dynamic Hero Text */
.dynamic-text {
    display: inline-block;
    min-width: 300px;
    min-height: 124px;
    transition: transform 0.3s, opacity 0.3s;
}

.dynamic-text.swapping {
    transform: translateY(10px);
    opacity: 0;
}

@media (max-width: 768px) {
    .logos-carousel {
        gap: 2rem;
    }

    .logo-item {
        font-size: 1rem;
    }

    .logos-carousel-wrapper::before,
    .logos-carousel-wrapper::after {
        width: 50px;
    }
}

.logo-item:hover {
    color: var(--primary);
}

/* Feature Section */
.feature-section {
    padding: 6rem 0;
    overflow: hidden;
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.reverse {
    direction: rtl;
}

.reverse>* {
    direction: ltr;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.feature-text-col p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-success);
    font-size: 1.25rem;
}

/* Mockups - CSS Only */
.feature-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.mockup-header {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-body {
    padding: 1.5rem;
}

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

.itinerary-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.tag {
    background: #e0f2fe;
    color: #0284c7;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.timeline {
    border-left: 2px dashed #e2e8f0;
    margin-left: 12px;
    padding-left: 25px;
    position: relative;
    padding-bottom: 1rem;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    cursor: default;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-icon {
    position: absolute;
    left: -37px;
    top: 0;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary);
    box-shadow: 0 0 0 4px #eff6ff;
    transition: all 0.3s;
}

.timeline-item:hover .timeline-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 6px #dbeafe;
}

.timeline-content {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
    background: white;
    border-color: #e2e8f0;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.btn-xs {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    background: var(--secondary);
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-xs:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Finance Mockup */
.finance-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-box small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.stat-box strong {
    font-size: 1.25rem;
    margin: 0.25rem 0;
}

.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
}

.invoice-item div {
    display: flex;
    flex-direction: column;
}

.invoice-item strong {
    font-size: 0.9rem;
}

.invoice-item small {
    font-size: 0.75rem;
    color: var(--text-light);
}

.badge-success {
    background: #dcfce7;
    color: #166534;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Grid Section */
.features-grid-section {
    padding: 6rem 0;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 5rem auto;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    text-align: left;
}

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

.feature-card .icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    /* slightly transparent on dark bg if desired, but here specific style */
    background: #1e293b;
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #333;
    font-size: 0.8rem;
}

.testimonial-author small {
    display: block;
    color: #94a3b8;
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-button {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    text-align: left;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
}

.faq-content p {
    padding-bottom: 1.25rem;
    color: var(--text-light);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active .faq-button i {
    transform: rotate(180deg);
}

/* CTA */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.cta-box {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-list span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-list i {
    color: #a5f3fc;
    /* Light cyan for contrast on blue bg */
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--secondary);
}

.footer-col a:not(.footer-logo):not(.social-links a) {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.footer-col a:not(.footer-logo):not(.social-links a):hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {

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

    .container {
        padding: 1rem;
    }

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

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

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

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

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

    .reverse>* {
        direction: ltr;
    }

    .feature-text-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list {
        text-align: left;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        background: white;
        /* Solid background for mobile legibility */
    }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
        text-align: center;
        flex-direction: column;
        padding: 1rem 0;
        background: white;
        border-top: 1px solid var(--border);
    }

    .navbar.mobile-open .nav-links,
    .navbar.mobile-open .nav-actions {
        display: flex;
    }

    .navbar.mobile-open .navbar-container {
        flex-wrap: wrap;
    }

    .navbar-container {
        position: relative;
    }

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

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

    .cta-box h2 {
        font-size: 2rem;
    }

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

    .bento-grid {
        grid-template-columns: 1fr;
        /* Force 1 column on mobile */
    }

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

    .section-header h2 {
        font-size: 2.25rem;
    }

    .hero-image-wrapper {
        perspective: none;
        /* Disable 3D tilt on mobile for performance */
    }

    .hero-image {
        transform: none !important;
    }

    .process-steps::before {
        display: none;
    }
}

/* --- New Sections --- */

/* Quote-to-Cash Process */
.process-section {
    padding: 6rem 0;
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--primary);
    background: #eff6ff;
    transform: scale(1.1);
}

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

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 200px;
    margin: 0 auto;
}

/* Vendor Hub */
.vendor-section {
    padding: 6rem 0;
    background: var(--secondary);
    color: white;
}

.vendor-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.vendor-text h2 {
    color: white;
}

.vendor-text p {
    color: #94a3b8;
}

.vendor-list li i {
    color: var(--accent-success);
}

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

.vendor-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.vendor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.vendor-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.vendor-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.vendor-card p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
}

/* Team Command Center - Bento Grid */
.team-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto));
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bento-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-color: var(--primary);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 50%, #1e3a8a 100%);
    color: white;
    border: none;
}

.bento-large h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bento-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 90%;
    line-height: 1.6;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.bento-item:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white;
}

.bento-stat {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.5rem 0;
    line-height: 1;
}

.bento-img-wrapper {
    margin-top: 2rem;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.bento-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.8;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.bento-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.bento-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bento-icon-sm {
    margin-bottom: 0.5rem !important;
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
        /* Hide line on mobile */
    }

    .vendor-container {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Problem Section */
.section-alt {
    padding: 6rem 0;
    background: #f8fafc;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e2e8f0;
    border-radius: 100px;
}

.accent {
    color: #ef4444;
    /* Red for 'slow, scattered and risky' */
    position: relative;
    display: inline-block;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;

    /* Gallery Mockup */
    .mockup-gallery {
        background: white;
    }

    .gallery-mock-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .gallery-mock-header h5 {
        margin: 0;
        font-size: 1.1rem;
        color: var(--secondary);
    }

    .gallery-mock-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 80px);
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .mock-img {
        background: #e2e8f0;
        border-radius: 8px;
        background-size: cover;
        background-position: center;
    }

    .img-1 {
        grid-row: span 2;
        background-image: linear-gradient(45deg, #3b82f6, #60a5fa);
    }

    .img-2 {
        background-image: linear-gradient(45deg, #10b981, #34d399);
    }

    .img-3 {
        background-image: linear-gradient(45deg, #f59e0b, #fbbf24);
    }

    .mock-preview {
        background: #1e293b;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .mock-testimonial {
        background: #f8fafc;
        padding: 1rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary);
    }

    .mock-testimonial p {
        font-size: 0.85rem;
        font-style: italic;
        margin-bottom: 0.5rem;
        color: var(--text-main);
        line-height: 1.4;
    }

    .mock-testimonial small {
        color: var(--text-light);
        font-weight: 600;
    }

    height: 12px;
    background: rgba(239, 68, 68, 0.3);
    z-index: -1;
    transform: skewX(-15deg) rotate(-2deg);
    border-radius: 4px;
}

.section-sub {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card,
.solution-card {
    padding: 2.5rem;
    border-radius: 16px;
}

.problem-card {
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.solution-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    position: relative;
    z-index: 1;
}

.problem-card h3 {
    color: #64748b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-card h3::before {
    content: '\F622';
    /* Bootstrap X icon */
    font-family: 'bootstrap-icons';
    color: #ef4444;
}

.solution-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-card h3::before {
    content: '\F26B';
    /* Bootstrap check icon */
    font-family: 'bootstrap-icons';
    color: #22c55e;
}

.problem-card ul,
.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-card li,
.solution-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.problem-card li {
    color: var(--text-light);
}

.solution-card li {
    color: #cbd5e1;
}

.problem-card li::before,
.solution-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.problem-card li::before {
    background: #cbd5e1;
}

.solution-card li::before {
    background: #22c55e;
}

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

    .solution-card {
        transform: none;
    }
}

/* Feature Overview Section */
.feature-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-group {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.feature-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
}

.feature-group h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 3rem;
}

.feature-group ul {
    list-style: none;
    padding: 0;
}

.feature-group li {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}

.feature-group li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-icon-blue {
    color: #3b82f6;
    background: #eff6ff;
}

.feature-icon-orange {
    color: #f97316;
    background: #fff7ed;
}

.feature-icon-teal {
    color: #14b8a6;
    background: #f0fdfa;
}

.feature-group .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

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

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


/* Pricing Section */
.section-highlight {
    background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.pricing-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    font-weight: 600;
    color: var(--secondary);
}

.billing-label.active {
    color: var(--primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.pill-save {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-left: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    /* Align cards vertically centered if different heights */
}

/* Pricing Card */
.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.pricing-card.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 3rem;
    /* Align prices */
}

.pricing-main {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--secondary);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    color: var(--text-light);
    font-weight: 500;
}

.pricing-list {
    margin-bottom: 2.5rem;
    text-align: left;
}

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

.pricing-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.btn-full {
    width: 100%;
}

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

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

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.pricing-card-featured {
        transform: none;
        margin: 1rem 0;
    }

    .pricing-card.pricing-card-featured:hover {
        transform: translateY(-5px);
    }
}

/* Lead Mockup */
.mockup-leads {
    background: #fff;
}

.lead-alert-box {
    background: #1e293b;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.pulse-icon {
    width: 40px;
    height: 40px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.alert-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.alert-text strong {
    font-size: 0.9rem;
}

.alert-text span {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.alert-text small {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}

.leads-list-mock {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lead-item-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s;
}

.lead-item-mock.active {
    border-color: var(--primary);
    background: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.lead-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.lead-info strong {
    font-size: 0.85rem;
    color: var(--secondary);
}

.lead-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.lead-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-hot {
    background: #fee2e2;
    color: #991b1b;
}

.status-warm {
    background: #fef3c7;
    color: #92400e;
}

/* Lead Capture Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    /* Changed from center to allow scrolling from top */
    justify-content: center;
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding: 1rem;
    /* Add padding for mobile */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 100%;
    /* Full width on mobile with max-width constraint */
    max-width: 500px;
    padding: 2rem;
    /* Reduce padding slightly for mobile */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 2rem auto;
    /* Add margin for scrolling space */
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-backdrop.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-full {
    width: 100%;
}