:root {
    --bg-color: #f8f9fa;
    /* Light Gray */
    --text-color: #333333;
    /* Dark Gray */
    --accent-color: #2962ff;
    /* Vibrant Blue */
    --accent-glow: rgba(41, 98, 255, 0.2);
    --secondary-bg: #ffffff;
    /* White */
    --font-family: 'Outfit', sans-serif;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.no-scroll {
    overflow: hidden;
}

/* Background Gradients */
body::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.8;
    z-index: -1;
    animation: moveGlow 15s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: moveGlowReverse 18s infinite alternate ease-in-out;
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes moveGlowReverse {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -50px);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    width: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
    background: none;
    -webkit-text-fill-color: var(--accent-color);
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar .nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: var(--accent-color);
}

.contact-info .btn-contact {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-info .btn-contact:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .contact-info {
        display: none;
    }

    .navbar {
        display: block;
        /* Override none */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding-top: 6rem;
        transition: right 0.4s ease;
        z-index: 99;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar.active {
        right: 0;
    }

    .navbar .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .navbar .nav-links a {
        font-size: 1.5rem;
        color: #333;
    }
}

/* Sections */
section {
    padding: 6rem 5%;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #222;
    background: none;
    -webkit-text-fill-color: #222;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8rem;
    /* Account for fixed header */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(41, 98, 255, 0.08);
    border: 1px solid rgba(41, 98, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: none;
    font-weight: 600;
}

.headline {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
}

.headline .highlight {
    color: var(--accent-color);
    text-shadow: none;
}

.subtext {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(41, 98, 255, 0.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #1faf53;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Trusted By Section */
.trusted-by-section {
    padding: 2rem 5%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trusted-label {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-placeholder {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ccc;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: default;
}

.logo-placeholder:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--accent-color);
}

/* Features Grid Large */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.1);
}

.feature-card .icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #222;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: #f0f4ff;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 2rem;
}

.step-card {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.15);
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #222;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.step-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin-top: 30px;
    /* Align with center of step-number */
    opacity: 0.3;
}

/* Pricing Section */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(41, 98, 255, 0.15);
}

.plan-name {
    text-align: center;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 1rem;
}

.price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--accent-color);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0044cc;
    box-shadow: 0 0 20px var(--accent-glow);
}

.addons-container {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.addons-container h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #222;
}

.addon-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.addon-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(41, 98, 255, 0.1);
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.addon-price span {
    font-size: 0.8rem;
    color: #888;
}

.addon-card p {
    color: #666;
}

/* Footer Large */
.footer-large {
    background: #f8f9fa;
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: var(--accent-color);
    color: var(--accent-color);
}

.footer-brand p {
    color: #666;
    max-width: 280px;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: contents;
    /* Allows children to participate in the main grid */
}

.link-group h4 {
    color: #222;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.link-group a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    font-size: 1rem;
}

.link-group a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
}



.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    color: #888;
}

/* Visuals - Hero Image */
.visuals {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(41, 98, 255, 0.2));
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
    }

    .visuals {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }

    .navbar {
        display: none;
        /* Mobile menu to be added if specific request, else hide nav links */
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .visuals {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .shutter-circle {
        width: 280px;
        height: 280px;
    }

    .shutter-circle.small {
        width: 180px;
        height: 180px;
    }

    .headline {
        font-size: 2.5rem;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        width: 1px;
        height: 50px;
        margin: 1rem 0;
        background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
    }

    .visuals {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }

    .navbar {
        display: none;
        /* Mobile menu to be added if specific request, else hide nav links */
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .visuals {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .shutter-circle {
        width: 280px;
        height: 280px;
    }

    .shutter-circle.small {
        width: 180px;
        height: 180px;
    }

    .headline {
        font-size: 2.5rem;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        width: 1px;
        height: 50px;
        margin: 1rem 0;
        background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
    }


}

/* About Us Page Specific Styles */

/* About Hero */
.about-hero {
    min-height: 60vh;
    padding-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.about-hero-content {
    max-width: 800px;
    width: 100%;
}

/* Who Is ClickDesk For */
.audience-section {
    background: #f8f9fa;
    padding: 6rem 5%;
    text-align: center;
}

/* Preview Section */
.preview-section {
    background: #f8f9fa;
    padding: 6rem 5%;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(41, 98, 255, 0.15);
    border-color: var(--accent-color);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: #fff;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(41, 98, 255, 0.1);
}

.audience-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.audience-card h3 {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
}

.audience-text {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Steps Container Wrap */
.steps-container.wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.steps-container.wrap .step-card {
    flex: 0 0 auto;
    width: 200px;
}

/* Benefits Section */
.benefits-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
}

.benefits-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.benefits-card:hover {
    box-shadow: 0 10px 40px rgba(41, 98, 255, 0.1);
}

.benefits-card.highlight {
    border-color: var(--accent-color);
}

.benefits-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .visuals {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0;
        height: auto;
    }

    .hero-image {
        max-width: 100%;
    }
}