:root {
    --bg-color: #111418;
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.1);
    --text-color: #FFFFFF;
    --text-muted: #a1a1aa;
    --primary-color: #E30613;
    --primary-hover: #C20510;
    --accent-color: #ff3333;
    --container-padding: 2rem;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* --- Base Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 4px 18px rgba(227, 6, 19, 0.45);
}


.btn-outline {
    background: transparent;
    border-color: var(--surface-border);
    color: var(--text-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(227, 6, 19, 0.1);
}

.btn-lg {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
}

/* --- 1. Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 27, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-image {
    max-height: 40px;
    width: auto;
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
    max-height: 32px;
    width: auto;
}


.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions-mobile {
    display: none;
}

/* Mobile Hamburger Elements */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* --- 2. Main Content Body --- */
.main-content {
    flex: 1;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Glow Background Effects (Restricted to Home Hero) */
.home-hero::before,
.home-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.home-hero::before {
    top: -10%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.12) 0%, rgba(17, 20, 24, 0) 70%);
}

.home-hero::after {
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.12) 0%, rgba(17, 20, 24, 0) 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.3);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-container-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}


/* Hero - Banner Image */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-image {
    width: 120%;
    max-width: 120%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E30613;
}

.dots span:nth-child(2) {
    background: #555;
}

.dots span:nth-child(3) {
    background: #888;
}

.w-100 {
    width: 100%;
}


@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0) rotateX(10deg) rotateY(-10deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px) rotateX(10deg) rotateY(-10deg);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0) rotateX(10deg) rotateY(-10deg);
    }
}

@keyframes float-alt {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}


/* --- 3. Footer Section --- */
.footer {
    border-top: 1px solid var(--surface-border);
    background: rgba(26, 26, 27, 0.9);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    gap: 2rem;
}

.link-title {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.link-group ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2rem;
}

.link-group a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--surface-border);
    padding: 1.5rem var(--container-padding);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

#solutions-section {
    padding: 4rem 0;
    overflow: hidden;
}

#solutions-section .container>div:first-child {
    text-align: center;
    margin-bottom: 3rem;
}

#solutions-section h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

#solutions-section p {
    display: none;
}

#solutions-section .solutions-carousel .slick-track {
    display: flex;
    align-items: center;
}

#solutions-section .solutions-carousel .slick-slide>div,
#solutions-section .solutions-carousel .slick-slide>div>div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#solutions-section .solutions-carousel img.brand-logo {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    transition: opacity 0.3s ease;
}

#solutions-section .solutions-carousel img.brand-logo:hover {
    opacity: 0.8;
}

#solutions-section .solutions-carousel .slick-slide>div>div {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    padding: 0;
    min-height: auto;
}

/* --- Advanced Features Section --- */
#advanced-features {
    padding: 4rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.features-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.features-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    -webkit-background-clip: text;
    background-clip: text;
}

.features-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.feature-highlight {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}

/* Top Slider (Images) */
.slider-for {
    max-width: 700px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--surface-border);
}

.feature-image-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Bottom Slider (Cards) */
.slider-nav {
    margin: 0 -1rem;
}

#advanced-features .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slider-nav .slick-list {
    padding: 1.5rem 0 3.5rem 0 !important;
}

.slider-nav .feature-card {
    margin: 0 1rem;
    padding: 2rem;
    background: rgba(25, 28, 33, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
}

.slider-nav .slick-center.feature-card,
.slider-nav .slick-current.feature-card {
    opacity: 1;
    transform: scale(1.08);
    background: rgba(35, 40, 50, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 10px 22px rgba(227, 6, 19, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.card-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Slider Controls Styling */
.slider-nav .slick-dots {
    bottom: 0rem;
}

.slider-nav .slick-dots li button:before {
    color: var(--primary-color);
}

.slider-nav .slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

/* --- Full-Width Banner Carousel --- */
#banner-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--bg-color);
    padding: 4rem 0;
}

.banner-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.banner-intro h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

.banner-track {
    width: 100%;
}

.banner-track .slick-track {
    display: flex;
    align-items: center;
}

.banner-slide {
    width: 50vw;
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* --- CTA Section --- */
#cta-section {
    padding: 4rem 0;
    position: relative;
}

.cta-banner {
    background: rgba(35, 40, 50, 0.95);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-info {
    flex: 1;
}

.cta-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
}

.cta-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-description {
    flex: 1.5;
}

.cta-description p {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    line-height: 1.4;
}

.cta-action {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

/* --- Contact Form Section --- */
.contact-hero {
    min-height: auto;
    padding-bottom: 0;
}

.contact-section {
    padding: 2rem 0 3rem;
}

.contact-container {
    max-width: 800px;
}

.contact-form-wrapper {
    padding: 3rem;
    animation: none;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input:not([type="checkbox"]),
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-border);
    border-radius: 4px;
    position: relative;
    top: 2px;
}

.privacy-group {
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
}

.privacy-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-group a:hover {
    text-decoration: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-submit {
    margin-top: 1rem;
}



/* --- Pricing Section --- */
.pricing-hero {
    padding-bottom: 2rem;
}

.pricing-section {
    padding: 0 0 6rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    max-width: 850px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    position: relative;
    height: 100%;
}

.card-header-inner {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.pricing-card.subtle-card {
    background: rgba(35, 40, 50, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transform: scale(0.95);
}

.term-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.term-label i {
    margin-right: 0.35rem;
    opacity: 0.8;
}

.billing-cycle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-top: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-list {
    margin: 2rem 0;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    font-size: 1rem;
}

.feature-plus {
    font-weight: 600;
    color: var(--text-color) !important;
    margin-bottom: 1.5rem !important;
}

.pricing-card.highlighted {
    background: linear-gradient(145deg, rgba(227, 6, 19, 0.15), rgba(26, 26, 27, 0.95));
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.2);
}

.badge-highlight {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}



/* --- Custom Software Page Styles --- */
.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
}


.grid-features {
    padding: 4rem 0;
}

.grid-features-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.benefit-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.philosophy-section {
    padding: 100px 0;
}

.philosophy-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.philosophy-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    font-weight: 500;
    margin: 2rem 0 3rem;
    position: relative;
    padding: 0 2rem;
    display: inline-block;
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.philosophy-quote::after {
    content: '"';
    position: absolute;
    right: -10px;
    bottom: -40px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    transform: rotate(180deg);
}

.philosophy-footer-text {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* --- Global Form Grid --- */
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group.full-width,
.form-submit.full-width {
    grid-column: span 2;
}

/* --- Privacy Policy Specific --- */
.policy-content-wrapper {
    line-height: 1.8;
    opacity: 0.9;
    margin: 1rem 0;
}

.policy-content-wrapper h2 {
    margin-bottom: 0;
}

.policy-list {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .header-container {
        position: relative;
    }

    .desktop-logo {
        display: block !important;
    }

    .mobile-logo {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-color);
        border-bottom: 1px solid var(--surface-border);
        padding: 2rem 0;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        flex-direction: column;
    }

    @supports selector(:has(*)) {
        body:has(#menu-toggle:checked) {
            overflow: hidden;
        }
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .header-actions {
        display: none;
    }

    .header-actions-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        padding: 0 2rem;
    }

    .header-actions-mobile .btn {
        width: 100%;
        max-width: 300px;
    }

    #menu-toggle:checked~.navbar {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #menu-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #menu-toggle:checked~.hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero,
    #solutions-section,
    #advanced-features,
    #banner-carousel,
    #cta-section,
    #benefits,
    .philosophy-section {
        padding: 2rem 0 !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slider-for {
        margin-bottom: 1rem !important;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 0;
        height: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .footer-tagline {
        margin: 1rem auto;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .link-group ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .slider-nav .slick-center.feature-card,
    .slider-nav .slick-current.feature-card {
        transform: scaleY(1.08);
    }

    .banner-slide img {
        height: 350px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .cta-action {
        justify-content: center;
    }

    .cta-info h2 {
        font-size: 2rem;
    }

    .grid-features-intro {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.highlighted {
        order: -1;
    }

    .pricing-card.subtle-card {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .form-group.full-width,
    .form-submit.full-width {
        grid-column: span 1 !important;
    }

    .philosophy-title {
        font-size: 2.5rem;
    }

    #solutions-section {
        padding: 2rem 0;
    }

    .features-intro h2 {
        font-size: 2.5rem;
    }

    .banner-slide {
        width: 80vw;
    }

    .banner-slide img {
        height: 250px;
    }

    #cta-section {
        padding: 6rem 0;
    }

    .contact-section {
        padding: 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .desktop-logo {
        display: none !important;
    }

    .mobile-logo {
        display: flex !important;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-info h2 {
        font-size: 1.8rem;
    }

    .cta-description p {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .price .amount {
        font-size: 2.8rem;
    }
}