:root {
    --landing-primary: #1A1615;
    --landing-accent: #6132D2;
    --landing-bg-inner: #E8F0F9;
    --landing-bg-outer: #9CC1E7;
    --landing-text: #1A1615;
    --landing-text-muted: #5A5A5F;
    --landing-white: #FFFFFF;
    --landing-glass: rgba(255, 255, 255, 0.4);
    --landing-glass-heavy: rgba(255, 255, 255, 0.6);
    --landing-radius-pill: 100px;
    --landing-radius-btn: 12px;
    /* New button radius */
    --landing-radius-card: 40px;
    --landing-shadow: 0 20px 80px rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at top center, var(--landing-bg-inner) 0%, var(--landing-bg-outer) 100%);
    background-attachment: fixed;
    color: var(--landing-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Cloud Background Elements */
.cloud {
    position: absolute;
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    animation: drift 20s ease-in-out infinite alternate;
}

.cloud-left {
    top: 15%;
    left: -100px;
}

.cloud-right {
    top: 25%;
    right: -100px;
    animation-delay: -5s;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 20px);
    }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav - Floating Capsule */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--landing-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.logo {
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.5rem;
    color: oklch(0.5393 0.2713 286.7462);
    /* Dashboard Primary Purple */
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, oklch(0.5393 0.2713 286.7462) 0%, oklch(0.6 0.2 300) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--landing-text);
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.auth-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login {
    text-decoration: none;
    color: var(--landing-text);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    /* Consistency */
}

.btn-signup {
    background: var(--landing-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-signup:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Hero Section - Centered Layout */
.hero {
    padding: 14rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.4);
    color: var(--landing-text);
    padding: 0.4rem 1rem;
    border-radius: var(--landing-radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    color: var(--landing-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--landing-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn-hero-primary {
    background: var(--landing-primary);
    color: white;
    padding: 1.15rem 2.25rem;
    border-radius: var(--landing-radius-btn);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-hero-secondary {
    background: var(--landing-glass);
    color: var(--landing-text);
    padding: 1.15rem 2.25rem;
    border-radius: var(--landing-radius-btn);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover,
.btn-hero-primary:hover {
    transform: translateY(-2px);
}

.hero-visual {
    width: 100%;
    max-width: 1000px;
    position: relative;
    padding: 2rem 0 3rem;
}

.animate-float {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-img-wrapper {
    background: var(--landing-glass);
    padding: 0.75rem;
    border-radius: var(--landing-radius-card);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-img-wrapper img {
    width: 100%;
    border-radius: calc(var(--landing-radius-card) - 10px);
    display: block;
}

/* Companies */
.companies {
    padding: 3rem 0;
    text-align: center;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
    gap: 4rem;
    flex-wrap: wrap;
}

.company-logos i {
    font-size: 2rem;
}

/* Features */
.features {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--landing-accent);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--landing-glass);
    padding: 3rem;
    border-radius: var(--landing-radius-card);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
}

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.feat-1 {
    color: #FF5A5F;
}

.feat-2 {
    color: #FFB400;
}

.feat-3 {
    color: #00A699;
}

.feat-4 {
    color: #14b8a6;
}

/* Teal */
.feat-5 {
    color: #8b5cf6;
}

/* Violet */
.feat-6 {
    color: #ec4899;
}

/* Pink */

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--landing-text);
}

.feature-card p {
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.learn-more {
    color: var(--landing-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.learn-more i {
    font-size: 0.8rem;
}

.learn-more:hover {
    gap: 0.8rem;
}

/* Solutions Section */
.solutions {
    padding: 8rem 0 4rem;
    /* Reduced bottom padding */
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 5rem;
}

.sol-card {
    height: 500px;
    border-radius: var(--landing-radius-card);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sol-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sol-card:hover .sol-img {
    transform: scale(1.05);
}

.sol-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.sol-card h4 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sol-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.75rem;
    line-height: 1.5;
    font-weight: 500;
}

.sol-card.black {
    background: var(--landing-primary);
    color: white;
}

.sol-card.black .sol-overlay {
    background: none;
}

/* Footer */
.footer {
    padding: 8rem 0 4rem;
    background: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-info p {
    color: var(--landing-text-muted);
    margin: 2rem 0;
    max-width: 320px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--landing-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--landing-primary);
    color: white;
}

.footer-links h5 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--landing-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--landing-text-muted);
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--landing-primary);
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--landing-text-muted);
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 10rem 0;
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.pricing-switch {
    background: var(--landing-glass);
    padding: 0.3rem;
    border-radius: 12px;
    display: flex;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 200px;
    backdrop-filter: blur(10px);
}

.switch-option {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
    transition: color 0.3s;
    color: var(--landing-text);
}

.switch-option.active {
    color: var(--landing-primary);
}

.switch-slider {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    width: calc(50% - 0.4rem);
    height: calc(100% - 0.8rem);
    background: white;
    border-radius: 10px;
    /* Slightly smaller for internal padding */
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pricing-switch.yearly .switch-slider {
    transform: translateX(100%);
}

.save-badge {
    background: #E6F7F2;
    color: #00B186;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.save-badge.show {
    opacity: 1;
    transform: translateX(0);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pricing-card.highlighted {
    background: var(--landing-accent);
    border: none;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(97, 50, 210, 0.3);
    color: white;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #FFD566;
    color: #4A3B12;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-card.highlighted h3,
.pricing-card.highlighted .price,
.pricing-card.highlighted p,
.pricing-card.highlighted .price-features li,
.pricing-card.highlighted .price-features i {
    color: white;
    opacity: 1;
}

.pricing-card.highlighted .price span {
    opacity: 0.7;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 1;
    color: var(--landing-text);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--landing-primary);
}

.price span {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.5;
    letter-spacing: 0;
}

.pricing-card p {
    color: var(--landing-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--landing-text);
}

.price-features i {
    color: var(--landing-accent);
    font-size: 1.1rem;
}

.btn-pricing {
    background: var(--landing-accent);
    color: white;
    text-align: center;
    padding: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.3s;
    width: 100%;
    margin-top: auto;
}

/* Responsive Pricing */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlighted {
        transform: none;
    }
}

.btn-pricing:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 10px 20px rgba(97, 50, 210, 0.2);
}

.pricing-card.highlighted .btn-pricing {
    background: white;
    color: var(--landing-accent);
}

.pricing-card.highlighted .btn-pricing:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-pro {
    background: var(--landing-primary);
    color: white;
    border: none;
}

.btn-pro:hover {
    background: #333;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0 8rem;
    text-align: center;
}

.featured-testimonial {
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.featured-testimonial h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--landing-text);
    letter-spacing: -0.03em;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.4;
}

.author-info strong {
    font-weight: 800;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.test-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.test-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--landing-text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.test-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.test-user div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.test-user strong {
    font-weight: 700;
    font-size: 0.95rem;
}

.test-user span {
    font-size: 0.85rem;
    color: var(--landing-text-muted);
}

/* Contact Section */
.contact {
    padding: 2rem 0 8rem;
}

.contact .section-header p {
    color: var(--landing-text-muted);
    font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.contact-card {
    background: rgba(255, 255, 255, 0.5);
    /* Slightly more opaque for form readability */
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--landing-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--landing-text);
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    color: var(--landing-text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.btn-submit {
    background: var(--landing-primary);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: var(--landing-radius-btn);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem;
    }
}


/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--landing-primary);
}

.cta-section p {
    color: var(--landing-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: var(--landing-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--landing-radius-btn);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* Footer - Floating Card Style */
.footer-wrapper {
    padding: 0 2rem 4rem;
}

.footer-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    transform: none;
    /* No hover scale for footer generic text */
}

.brand-desc {
    color: var(--landing-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links-filled {
    display: flex;
    gap: 1rem;
}

.social-links-filled a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1A1615;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.social-links-filled a:hover {
    transform: scale(1.1);
    background: #000;
}

.footer-nav {
    display: flex;
    gap: 6rem;
}

.nav-col h5 {
    color: var(--landing-primary);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.nav-col ul {
    list-style: none;
}

.nav-col li {
    margin-bottom: 1rem;
}

.nav-col a {
    text-decoration: none;
    color: var(--landing-text-muted);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-col a:hover {
    color: var(--landing-primary);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--landing-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 4rem 0 8rem;
        /* Large padding */
        margin-bottom: 2rem;
        /* Extra margin to force separation */
    }

    /* Floating footer on mobile */
    .footer-wrapper.container {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .footer-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        min-height: auto;
    }

    .footer-top {
        gap: 3rem;
    }

    .footer-brand .logo {
        margin-bottom: 1rem;
    }

    .social-links-filled {
        margin-top: 1.5rem;
        /* Separate icons slightly */
    }

    .footer-nav {
        flex-direction: row;
        /* Align side-by-side */
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .nav-col {
        width: 48%;
        text-align: center;
        /* Center text as requested */
    }

    .company-logos {
        gap: 2rem;
        /* Reduce gap for mobile to ensure proper centering */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .nav {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
        gap: 2rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        padding-left: 0;
        width: 100%;
        max-width: 700px;
    }

    .features-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        /* Ensure content doesn't touch edges */
    }

    .nav-links {
        display: none;
    }

    .header {
        position: absolute;
        /* Stop it from floating fixed if it covers too much */
        width: 100%;
        padding: 0 1.5rem;
        /* Match container padding for symmetry */
        top: 1rem;
    }

    .nav {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .logo-text {
        font-size: 1.1rem;
        /* Smaller logo */
    }

    .auth-btns {
        gap: 0.5rem;
    }

    .btn-login {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .btn-signup {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero {
        padding-top: 8rem;
        /* Less space top */
        gap: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller hero title */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .solutions-grid,
    .footer-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding-bottom: 4rem;
        /* Reduce bottom padding on mobile */
    }

    /* Fix Testimonial Cards on Mobile */
    .test-card {
        padding: 2rem;
        min-height: auto;
        /* Allow height to adapt */
        margin-bottom: 1rem;
        /* Spacing between stacked cards */
    }

    .contact {
        padding-top: 4rem;
        /* Add clear separation from testimonials */
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* Cookie Banner adjustment */
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        left: 10px;
        right: 10px;
        bottom: -100%;
    }

    .cookie-banner.show {
        bottom: 10px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    /* Hide 'Sign In' text, keep icon if we had one, or just hide button */
    .btn-login {
        display: none;
    }

    .btn-signup {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--landing-radius-card);
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    flex: 1;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--landing-primary);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept {
    background: var(--landing-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--landing-radius-btn);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cookie-link {
    color: var(--landing-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}