<style>

/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #002b5c;
    --secondary: #0056b3;
    --accent: #00d4ff;
    --dark: #001221;
    --light: #f4f8fc;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    overflow-x: hidden;
    color: #333;
}

/* =========================
   TOPBAR
========================= */
.topbar {
    background: linear-gradient(90deg, #001221, #002b5c);
    color: #fff;
    padding: 12px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.topbar i {
    color: var(--accent);
    margin-right: 8px;
}

.topbar-left span {
    margin-right: 25px;
}

.social-icons i {
    margin-left: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* =========================
   HEADER
========================= */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7%;
    min-height: 110px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, #0056b3, transparent);
    background-size: 200% 100%;
    animation: lineMove 4s linear infinite;
}

@keyframes lineMove {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 95px;
    width: auto;
}

.logo h2 {
    font-size: 20px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    white-space: nowrap;
}

/* =========================
   NAVIGATION
========================= */
nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-item {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
    transition: 0.3s;
}

.menu-item:hover {
    color: var(--secondary);
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.menu-item:hover::after {
    width: 100%;
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 55px;
    left: 0;
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 15px 22px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f4f9ff;
    color: #0056b3;
    padding-left: 30px;
}

/* =========================
   QUOTE BUTTON
========================= */
.quote-btn {
    background: linear-gradient(135deg, #0056b3, #002b5c);
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.2);
}

.quote-btn:hover {
    transform: translateY(-3px);
}

/* =========================
   MENU TOGGLE
========================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #001221;
    font-family: 'Montserrat', sans-serif;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, transform 1.5s ease;
    background-size: 45%;
    background-repeat: no-repeat;
    background-position: 90% center;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    color: #dbe7ff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* =========================
   BUTTONS
========================= */
.btn {
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0056b3);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   SLIDER DOTS
========================= */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.dot.active {
    width: 40px;
    border-radius: 20px;
    background: #00d4ff;
}

/* =========================
   ABOUT SECTION
========================= */
.about-premium {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 70px 6%;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: rgba(0, 86, 179, 0.04);
    border-radius: 50%;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-box {
    position: relative;
}

.about-image-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0056b3;
    color: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.30);
}

.experience-box h2 {
    font-size: 34px;
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.experience-box p {
    font-size: 13px;
}

.support-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-card i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff, #0056b3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.support-card h4 {
    font-size: 15px;
    color: #002b5c;
    margin-bottom: 2px;
}

.support-card p {
    font-size: 12px;
    color: #666;
}

.about-subtitle {
    display: inline-block;
    background: #eef5ff;
    color: #0056b3;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #002b5c;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.about-content h2 span {
    color: #0056b3;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.feature-list {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-item {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eef2f7;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0056b3, #002b5c);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #002b5c;
}

.feature-item p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff, #0056b3);
    color: #fff;
    transition: 0.4s;
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.25);
}

.about-btn:hover {
    transform: translateY(-4px);
}

/* =========================
   WINCH PRODUCT SECTION
========================= */
.winch-section {
    padding: 100px 8%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.winch-header {
    text-align: center;
    margin-bottom: 70px;
}

.winch-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    color: #001a33;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.winch-header .underline {
    width: 80px;
    height: 5px;
    background: #0056b3;
    margin: 0 auto;
    border-radius: 10px;
}

.winch-header span {
    color: #0056b3;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.winch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.winch-card {
    background: #fff;
    border: 1px solid #e1e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.winch-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 26, 51, 0.12);
    border-color: #0056b3;
}

.image-holder {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background: #f9fbfd;
    border-radius: 15px;
    padding: 20px;
}

.image-holder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.winch-card:hover .image-holder img {
    transform: scale(1.1);
}

.winch-card h3 {
    font-size: 24px;
    color: #001a33;
    margin: 10px 0;
    font-weight: 700;
}

.badge {
    background: #e6f0ff;
    color: #0056b3;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.specs-list {
    width: 100%;
    margin: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.spec-label { color: #888; }
.spec-value { color: #333; font-weight: 600; }

.card-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    width: 100%;
}

.btn-main {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.btn-outline-blue {
    border: 2px solid #0056b3;
    color: #0056b3;
}

.btn-outline-blue:hover {
    background: #0056b3;
    color: #fff;
}

.btn-filled {
    background: #001a33;
    color: #fff;
}

.btn-filled:hover {
    background: #0056b3;
}

/* =========================
   FEATURES SECTION
========================= */
.features-section {
    padding: 100px 7%;
    background: #f8faff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #0056b3;
}

.feature-box i {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-box h4 {
    margin-bottom: 15px;
    color: #001a33;
    font-weight: 700;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   PROCESS SECTION
========================= */
.process-section {
    padding: 100px 7%;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: 0.4s;
    border: 2px dashed #0056b3;
}

.process-card:hover .process-icon {
    background: #0056b3;
    color: #fff;
    border-style: solid;
    transform: rotateY(360deg);
}

.process-card h4 {
    color: #001a33;
    margin-bottom: 10px;
    font-size: 18px;
}

.process-card p {
    font-size: 14px;
    color: #666;
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
    background: linear-gradient(rgba(0, 26, 51, 0.9), rgba(0, 26, 51, 0.9)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 8%;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-card i {
    font-size: 50px;
    color: #00d4ff;
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 54px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccd6f6;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
}

.contact-info h2 {
    font-size: 36px;
    color: #001a33;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact-desc {
    margin-bottom: 40px;
    color: #666;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: #eef5ff;
    color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.info-text h4 { margin-bottom: 5px; color: #001a33; }
.info-text p  { color: #666; font-size: 14px; }

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* =========================
   FOOTER
========================= */
.ultra-modern-footer {
    background: #01060d;
    color: #ffffff;
    padding: 100px 8% 40px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.ultra-modern-footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.f-brand img {
    height: 55px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.f-brand p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.f-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d4ff;
    margin-bottom: 30px;
}

.f-col p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 15px; }
.f-links li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s;
}

.f-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.f-links li a:hover { color: #fff; }
.f-links li a:hover::after { width: 100%; }

.f-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 13px;
}

.social-pills { display: flex; gap: 12px; }
.social-pills a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: 0.3s;
    text-decoration: none;
}

.social-pills a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .about-wrapper { grid-template-columns: 1fr; }
    .about-content h2 { font-size: 34px; }
    .f-grid { grid-template-columns: 1fr 1fr; }
}

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

@media (max-width: 992px) {
    .hero-content h1 { font-size: 52px; }
    .hero-slide {
        background-position: center bottom 10%;
        background-size: 60%;
        text-align: center;
        justify-content: center;
        padding-bottom: 300px;
    }
    .hero-content h1 { font-size: 40px; }
    .hero-buttons { justify-content: center; }
    .slider-dots { left: 50%; transform: translateX(-50%); }

    .process-card:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 15px;
    }

    header {
        padding: 12px 15px;
        min-height: auto;
    }

    .logo {
        gap: 10px;
        max-width: 75%;
    }

    .logo img { height: 55px; }

    .logo h2 {
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
    }

    .menu-toggle { display: block; }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    nav.active { display: flex; }

    .menu-item {
        width: 100%;
        padding: 12px 0;
    }

    .dropdown { width: 100%; }

    .dropdown-menu {
        position: relative;
        top: 10px;
        left: 0;
        width: 100%;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .dropdown:hover .dropdown-menu { display: block; }

    .quote-btn {
        display: inline-block;
        width: fit-content;
        margin-top: 15px;
        white-space: nowrap;
        background-color: #003366 !important;
        color: white !important;
        padding: 12px 25px !important;
        border-radius: 50px;
        text-align: center;
    }

    /* HERO */
    .hero-slider { height: auto; }
    .hero-content h1 { font-size: 38px; }
    .hero-content p { font-size: 16px; }

    /* ABOUT */
    .about-premium { padding: 55px 5%; }
    .about-wrapper { gap: 30px; }
    .about-image-box img { height: 350px; }
    .feature-list { grid-template-columns: 1fr; }
    .about-content h2 { font-size: 28px; }
    .experience-box { left: 12px; bottom: 12px; padding: 14px 18px; }
    .experience-box h2 { font-size: 26px; }
    .support-card { right: 12px; top: 12px; padding: 12px 14px; }
    .support-card h4 { font-size: 14px; }

    /* PRODUCTS */
    .winch-grid { grid-template-columns: 1fr; }
    .winch-header h2 { font-size: 30px; }

    /* STATS */
    .stats-section { padding: 60px 5%; }
    .stat-number { font-size: 38px; }
    .stat-card i { font-size: 35px; }

    /* CONTACT */
    .contact-section { grid-template-columns: 1fr; padding: 60px 20px; }

    /* FOOTER */
    .f-grid { grid-template-columns: 1fr; }
    .f-bottom { flex-direction: column-reverse; gap: 30px; text-align: center; }
}

@media (min-width: 992px) {
    .process-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        top: 40px;
        right: -20px;
        font-size: 24px;
        color: #ccc;
    }
}

@media (max-width: 600px) {
    .f-grid { grid-template-columns: 1fr; }
    .f-bottom { flex-direction: column-reverse; gap: 30px; text-align: center; }
}

</style>

