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

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #111;
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: #dc2626;
    font-weight: 800;
    transform: rotate(45deg);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

.logo-text span {
    font-weight: 400;
    color: #666;
    margin-left: 0.25rem;
}

/* Navigation - Desktop */
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-link.active {
    border-bottom: 2px solid #dc2626;
}

/* Quote Button */
.quote-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* ========== HAMBURGER MENU (Mobile) ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== RESPONSIVE NAVBAR ========== */
@media (max-width: 900px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .quote-btn {
        display: none;
    }
}

/* ========== HERO CAROUSEL ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: #0a0a0a;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.red-text {
    color: #dc2626;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #dc2626;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #dc2626;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active,
.dot:hover {
    background: #dc2626;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ========== SECTION STYLES ========== */
section {
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Home Intro */
.home-intro {
    background: white;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #dc2626;
    color: white;
}

/* Home Services */
.home-services {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(220, 38, 38, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.card-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

/* Call to Action */
.home-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: #ccc;
}

.btn-primary-large {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.footer-logo span span {
    color: #666;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li a {
    color: #888;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #dc2626;
}

.footer-contact p {
    line-height: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}


/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    /* Rounds all 4 corners */
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

.logo-text span {
    font-weight: 400;
    color: #666;
    margin-left: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
        border-radius: 8px;
    }

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


/* ========== STYLISH QUOTE SECTION ========== */
.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quote-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quote-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

.quote-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.quote-wrapper:hover .quote-background {
    transform: rotate(0deg);
    box-shadow: 0 30px 50px rgba(220, 38, 38, 0.1);
}

.quote-content {
    position: relative;
    padding: 3rem 4rem;
    text-align: center;
    z-index: 3;
}

.quote-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.quote-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-style: normal;
    letter-spacing: -0.01em;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, #dc2626, #dc2626, transparent);
}

.author-name {
    color: #dc2626;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }

    .quote-content {
        padding: 2rem 1.5rem;
    }

    .quote-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .quote-icon svg {
        width: 35px;
        height: 35px;
    }

    .author-line {
        width: 30px;
    }
}

/* ========== ABOUT PREVIEW SECTION - SHORT & SIMPLE ========== */
.about-preview {
    padding: 5rem 0;
    background: white;
}

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

/* Image Side - Natural proportions, not stretched */
.about-preview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview-image:hover img {
    transform: scale(1.02);
}

/* Content Side */
.about-preview-content {
    padding-left: 1rem;
}

.about-preview-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-preview-text strong {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 900px) {
    .about-preview-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-preview-content {
        padding-left: 0;
        text-align: center;
    }

    .about-preview-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* ========== SERVICES SECTION - PREMIUM ========== */
.services-premium {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.premium-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #dc2626;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.services-premium-header h2 {
    font-size: 2.8rem;
    font-weight: 500;
    color: #111;
    letter-spacing: -1px;
}

.premium-line {
    width: 60px;
    height: 2px;
    background: #dc2626;
    margin: 1.5rem auto 0;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.4, 1);
    cursor: pointer;
}

.premium-card:hover {
    border-color: #dc2626;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    z-index: 0;
}

.premium-card:hover .card-bg {
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.card-content {
    position: relative;
    padding: 2.5rem 2rem;
    z-index: 1;
}

.card-icon {
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.2;
}

.premium-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.premium-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.premium-card:hover .card-link {
    gap: 0.8rem;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.premium-card:hover .card-link svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1100px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .services-premium {
        padding: 4rem 0;
    }

    .services-premium-header h2 {
        font-size: 1.8rem;
    }

    .services-premium-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 2rem 1.5rem;
    }
}

/* ========== TECHNOLOGY SECTION - BOLD & AUTHORITATIVE ========== */
.tech-bold {
    background: #0a0a0a;
    padding: 5rem 0;
}

.tech-bold-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* Left Side */
.tech-bold-left {
    border-right: 1px solid #222;
    padding-right: 3rem;
}

.tech-bold-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tech-bold-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.tech-bold-red {
    color: #dc2626;
}

.tech-bold-line {
    width: 80px;
    height: 2px;
    background: #dc2626;
    margin-bottom: 2rem;
}

.tech-bold-stats {
    display: flex;
    gap: 2.5rem;
}

.tech-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.tech-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side */
.tech-category {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1a1a1a;
}

.tech-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tech-category-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.tech-category-number {
    font-size: 0.8rem;
    font-weight: 500;
    color: #dc2626;
    font-family: monospace;
}

.tech-category-header h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tech-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.tech-category-grid span {
    font-size: 0.85rem;
    color: white;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* Equipment Banner */
.tech-equipment-banner {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 3rem;
}

.tech-equipment-inner {
    background: #111;
    border-left: 3px solid #dc2626;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.equipment-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.equipment-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.equipment-items span {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 400;
}

.equipment-items span::before {
    content: "◆";
    color: #dc2626;
    font-size: 0.6rem;
    margin-right: 0.6rem;
}

/* Responsive */
@media (max-width: 1000px) {
    .tech-bold-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-bold-left {
        border-right: none;
        border-bottom: 1px solid #222;
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .tech-bold-title {
        font-size: 2.5rem;
    }

    .tech-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tech-bold-container {
        padding: 0 1.5rem;
    }

    .tech-bold-title {
        font-size: 1.8rem;
    }

    .tech-bold-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-category-grid {
        grid-template-columns: 1fr;
    }

    .tech-equipment-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .equipment-items {
        flex-direction: column;
        gap: 0.8rem;
    }
}


/* ========== DOWNLOAD SECTION - WELLLIVE REMOTEVIEWER ========== */
.download-section {
    background: #ffffff;
    padding: 5rem 0;
    border-bottom: 1px solid #eee;
}

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

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

.download-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(220, 38, 38, 0.05);
    padding: 0.3rem 0.8rem;
}

.download-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.download-title .red-text {
    color: #dc2626;
}

.download-line {
    width: 50px;
    height: 2px;
    background: #dc2626;
    margin: 0 auto 1.5rem;
}

.download-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.download-features span {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
}

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

.download-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #111;
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn-primary:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.download-btn-primary svg {
    stroke: white;
}

.download-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #111;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.download-btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.download-note {
    font-size: 0.7rem;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    .download-section {
        padding: 3rem 0;
    }

    .download-title {
        font-size: 1.6rem;
    }

    .download-features {
        gap: 0.8rem;
    }

    .download-features span {
        font-size: 0.7rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn-primary,
    .download-btn-secondary {
        width: 80%;
        justify-content: center;
    }
}


/* ========== QUOTE SECTION ========== */
.quote-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.quote-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.quote-cta-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.quote-cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.quote-cta-line {
    width: 60px;
    height: 2px;
    background: #dc2626;
    margin: 0 auto 1.5rem;
}

.quote-cta-text {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.quote-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-btn-primary {
    background: #dc2626;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.quote-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.quote-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.quote-btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
    color: #dc2626;
    transform: rotate(45deg);
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.footer-logo span span {
    font-weight: 400;
    color: #666;
}

.footer-description {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.contact-icon {
    color: #dc2626;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 2rem;
}

.footer-bottom-line {
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    margin-bottom: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    font-size: 0.7rem;
    color: #555;
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .quote-cta-title {
        font-size: 1.8rem;
    }
}

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

    .quote-cta {
        padding: 3rem 0;
    }

    .quote-cta-title {
        font-size: 1.5rem;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}