/* ===================================
   FILMITIC.COM — Art Deco meets Dark Premium
   Cloned from iptv-belgique.net visual DNA
   =================================== */
:root {
    --fm-primary: #1ed760;
    --fm-dark-green: #084428;
    --fm-bg: #000000;
    --fm-card: #1A1D21;
    --fm-card-dark: #121417;
    --fm-white: #FFFFFF;
    --fm-gray: #b3b3b3;
    --fm-red: #ff4d4d;
    --fm-border: #2a2a2a;
    --fm-border-light: #333;
    --fm-star: #ffc107;
    --fm-badge: #c979ff;
    --fm-font: 'Poppins', sans-serif;
    --fm-font-accent: 'Playfair Display', serif;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--fm-font); background-color: var(--fm-bg); color: var(--fm-white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; padding: 0; }

/* ===================================
   TYPOGRAPHY
   =================================== */
.fm-section-title { text-align: center; font-size: 2.8rem; font-weight: 800; margin-bottom: 50px; }
.fm-section-title span, .fm-highlight { color: var(--fm-primary); }
.fm-section-subtitle { font-size: 1.1rem; color: var(--fm-gray); line-height: 1.7; text-align: center; max-width: 700px; margin: -30px auto 30px auto; }

/* ===================================
   NAVIGATION
   =================================== */
.fm-nav {
    background-color: var(--fm-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--fm-border);
}
.fm-logo {
    font-family: var(--fm-font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fm-white);
    letter-spacing: 1px;
}
.fm-logo span { color: var(--fm-primary); }
.fm-nav-links { display: flex; gap: 28px; align-items: center; }
.fm-nav-links a { font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.fm-nav-links a:hover { color: var(--fm-primary); }
.fm-nav-cta {
    background-color: var(--fm-primary);
    color: var(--fm-bg);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}
.fm-nav-cta:hover { background-color: var(--fm-white); }
.fm-menu-icon { display: none; font-size: 1.8rem; cursor: pointer; background: none; border: none; color: var(--fm-white); }

/* Dropdown */
.fm-dropdown { position: relative; }
.fm-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.fm-dropdown-toggle::after { content: '\25BE'; font-size: 0.7rem; }
.fm-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--fm-card);
    border: 1px solid var(--fm-border);
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.fm-dropdown:hover .fm-dropdown-menu { display: block; }
.fm-dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.9rem; transition: background 0.2s; }
.fm-dropdown-menu a:hover { background: var(--fm-card-dark); color: var(--fm-primary); }

/* ===================================
   BUTTONS
   =================================== */
.fm-btn {
    background-color: var(--fm-primary);
    color: var(--fm-bg);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}
.fm-btn:hover { background-color: var(--fm-white); transform: scale(1.03); }
.fm-btn-outline {
    background: transparent;
    border: 2px solid var(--fm-primary);
    color: var(--fm-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.fm-btn-outline:hover { background-color: var(--fm-primary); color: var(--fm-bg); }

/* ===================================
   HERO
   =================================== */
.fm-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url('../images/iptv-beli.png') center/cover no-repeat;
}
.fm-hero-content { z-index: 5; max-width: 850px; }
.fm-hero h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.fm-hero .fm-desc { font-size: 1.25rem; color: var(--fm-gray); margin-bottom: 40px; max-width: 650px; margin-left: auto; margin-right: auto; }
.fm-hero-badges { display: flex; gap: 20px; justify-content: center; margin-bottom: 35px; flex-wrap: wrap; }
.fm-hero-badges span {
    display: flex; align-items: center; gap: 8px;
    background: rgba(30,215,96,0.1); border: 1px solid rgba(30,215,96,0.3);
    padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
}
.fm-hero-badges span::before { content: '\2713'; color: var(--fm-primary); font-weight: 700; }
.fm-hero-carousel {
    position: absolute; bottom: 35px; width: 85%; max-width: 900px;
    background: rgba(26,29,33,0.7); backdrop-filter: blur(5px);
    border-radius: 50px; padding: 14px 50px;
    display: flex; justify-content: center; gap: 40px; align-items: center;
    overflow: hidden;
}
.fm-hero-carousel img { height: 40px; width: auto; max-width: 110px; opacity: 0.85; transition: opacity 0.3s, transform 0.3s; }
.fm-hero-carousel img:hover { opacity: 1; transform: scale(1.1); }

/* ===================================
   FEATURES
   =================================== */
.fm-features { padding: 100px 20px; }
.fm-features-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 25px;
}
.fm-feature-card {
    background: var(--fm-card); padding: 30px; border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.fm-feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.fm-feature-icon { font-size: 2.5rem; color: var(--fm-primary); margin-bottom: 15px; }
.fm-feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.fm-feature-card p { font-size: 0.95rem; color: var(--fm-gray); line-height: 1.6; }

/* ===================================
   EXPERIENCE / CONTENT SECTION
   =================================== */
.fm-experience { padding: 80px 20px; }
.fm-experience-container {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; gap: 60px;
}
.fm-experience-text { flex: 1; }
.fm-experience-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.fm-experience-text h2 span { color: var(--fm-primary); }
.fm-experience-text p { color: var(--fm-gray); line-height: 1.8; font-size: 1.05rem; margin-bottom: 15px; }
.fm-experience-image { flex: 1; }
.fm-experience-image img { border-radius: 12px; width: 100%; }

/* ===================================
   PRICING
   =================================== */
.fm-pricing { padding: 100px 20px; }
.fm-pricing-header { text-align: center; margin-bottom: 50px; }
.fm-pricing-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.fm-pricing-header p { font-size: 1.15rem; color: var(--fm-gray); max-width: 600px; margin: 0 auto; }
.fm-price-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.fm-price-card {
    background: var(--fm-card); border: 2px solid var(--fm-border-light);
    padding: 40px 28px 30px; border-radius: 16px;
    display: flex; flex-direction: column; text-align: center;
    position: relative; transition: all 0.3s;
}
.fm-price-card:hover { transform: translateY(-8px); border-color: var(--fm-primary); }
.fm-price-card.fm-popular { border-color: var(--fm-primary); }
.fm-popular-badge {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--fm-primary); color: var(--fm-bg);
    padding: 8px 28px; font-size: 0.85rem; font-weight: 700;
    clip-path: polygon(0 0,100% 0,90% 100%,10% 100%);
}
.fm-plan-duration { font-size: 1.4rem; font-weight: 700; margin: 20px 0 8px; }
.fm-plan-price { font-family: var(--fm-font-accent); font-size: 3.5rem; font-weight: 800; margin-bottom: 25px; }
.fm-plan-price .fm-currency { font-size: 1.5rem; vertical-align: super; }
.fm-buy-btn {
    background: var(--fm-primary); color: var(--fm-bg);
    padding: 14px; border-radius: 8px; font-weight: 700;
    display: block; width: 100%; margin-bottom: 25px;
    transition: background 0.3s; text-align: center; border: none; cursor: pointer; font-size: 1rem;
}
.fm-buy-btn:hover { background: var(--fm-white); }
.fm-popular .fm-buy-btn { background: var(--fm-white); }
.fm-popular .fm-buy-btn:hover { background: var(--fm-primary); }
.fm-features-list {
    text-align: left; border-top: 1px solid var(--fm-border-light);
    padding-top: 25px; margin-top: auto;
}
.fm-features-list li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; font-size: 0.95rem;
}
.fm-features-list .fm-check { color: var(--fm-primary); font-weight: 700; font-size: 1.2rem; }
.fm-features-list .fm-cross { color: var(--fm-red); font-weight: 700; font-size: 1.2rem; }

/* 4th card full width */
.fm-price-card-full {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.fm-steps { padding: 100px 20px; }
.fm-steps-container {
    max-width: 1100px; margin: 0 auto;
    background: var(--fm-dark-green); border-radius: 20px;
    padding: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px;
}
.fm-step { text-align: center; }
.fm-step-number { font-size: 2.5rem; font-weight: 800; color: var(--fm-primary); margin-bottom: 10px; }
.fm-step h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.fm-step p { color: var(--fm-gray); line-height: 1.6; font-size: 0.95rem; }

/* ===================================
   TESTIMONIALS
   =================================== */
.fm-testimonials { padding: 100px 20px; }
.fm-testimonials-header { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.fm-satisfaction {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; background: var(--fm-card); border-radius: 50px;
    color: var(--fm-primary); font-weight: 700; font-size: 0.9rem;
}
.fm-testimonials-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.fm-testimonial-card { background: var(--fm-card); padding: 30px; border-radius: 16px; }
.fm-testimonial-author { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.fm-testimonial-author img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid var(--fm-primary); }
.fm-author-name { font-size: 1.1rem; font-weight: 700; }
.fm-author-loc { font-size: 0.85rem; color: var(--fm-gray); }
.fm-stars { color: var(--fm-star); margin-bottom: 12px; font-size: 1rem; letter-spacing: 2px; }
.fm-testimonial-text { color: var(--fm-gray); line-height: 1.7; font-style: italic; border-left: 3px solid var(--fm-primary); padding-left: 15px; }

/* ===================================
   DEVICES
   =================================== */
.fm-devices { padding: 100px 20px; }
.fm-devices-grid {
    max-width: 650px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.fm-device-card {
    background: var(--fm-card); border-radius: 16px;
    padding: 25px 20px; display: flex; flex-direction: column;
    align-items: center; text-align: center; transition: all 0.3s;
}
.fm-device-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
.fm-device-card img { height: 50px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.fm-device-card p { font-weight: 700; font-size: 0.9rem; color: var(--fm-primary); }

/* ===================================
   FAQ
   =================================== */
.fm-faq { padding: 100px 20px; }
.fm-faq-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 60fr 40fr; gap: 40px;
    align-items: flex-start;
}
.fm-faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.fm-faq-item { background: var(--fm-card); border-radius: 12px; overflow: hidden; }
.fm-faq-question {
    width: 100%; background: transparent; border: none;
    padding: 20px; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; text-align: left;
}
.fm-faq-question span { font-size: 1.05rem; font-weight: 700; color: var(--fm-white); }
.fm-faq-question .fm-arrow { font-size: 1.2rem; color: var(--fm-gray); transition: transform 0.3s; }
.fm-faq-item.active .fm-arrow { transform: rotate(180deg); color: var(--fm-primary); }
.fm-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.fm-faq-answer p { padding: 0 20px 20px; color: var(--fm-gray); line-height: 1.7; }
.fm-faq-item.active .fm-faq-answer { max-height: 300px; }
.fm-faq-contact {
    background: var(--fm-card); border-radius: 12px;
    padding: 40px 30px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; min-height: 100%;
}
.fm-faq-contact .fm-wa-icon { font-size: 4rem; margin-bottom: 15px; }
.fm-faq-contact h4 { font-size: 1.2rem; margin-bottom: 5px; }
.fm-faq-contact p { color: var(--fm-gray); margin-bottom: 20px; }

/* ===================================
   PAGE HEADER (inner pages)
   =================================== */
.fm-page-header {
    padding: 100px 20px 80px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('../images/iptv-beli.png') center/cover no-repeat;
    border-bottom: 1px solid var(--fm-border);
    min-height: 45vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.fm-page-header h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; }
.fm-page-header p { font-size: 1.15rem; color: var(--fm-gray); max-width: 600px; }

/* ===================================
   PAGE CONTAINER (cards for inner pages)
   =================================== */
.fm-page-container {
    max-width: 1100px; margin: -50px auto 80px;
    background: var(--fm-card); padding: 50px;
    border-radius: 16px; position: relative; z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--fm-border);
}

/* ===================================
   CONTACT
   =================================== */
.fm-contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.fm-contact-layout h2 { font-size: 1.7rem; margin-bottom: 20px; }
.fm-contact-info-card {
    background: var(--fm-card-dark); padding: 20px;
    border-radius: 12px; margin-bottom: 15px;
    display: flex; align-items: center; gap: 20px;
    transition: transform 0.3s;
}
.fm-contact-info-card:hover { transform: translateY(-3px); }
.fm-contact-info-card .fm-ci-icon { font-size: 2rem; color: var(--fm-primary); }
.fm-contact-info-card p { color: var(--fm-gray); line-height: 1.5; }
.fm-contact-info-card strong { color: var(--fm-white); display: block; margin-bottom: 3px; }

/* ===================================
   CHANNELS
   =================================== */
.fm-country-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; margin-top: 25px;
}
.fm-country-item {
    background: var(--fm-card-dark); padding: 12px 15px;
    border-radius: 8px; display: flex; align-items: center; gap: 12px;
    font-weight: 500; transition: background 0.3s, color 0.3s;
}
.fm-country-item:hover { background: var(--fm-primary); color: var(--fm-bg); }
.fm-country-item img { width: 20px; border-radius: 2px; }

/* CTA section (channels page) */
.fm-cta-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-top: 40px;
}
.fm-cta-content h2 { font-size: 2rem; margin-bottom: 15px; text-align: left; }
.fm-cta-content p { color: var(--fm-gray); line-height: 1.7; margin-bottom: 25px; text-align: left; }
.fm-cta-image img { max-width: 100%; border-radius: 12px; }

/* ===================================
   FORMS
   =================================== */
.fm-form-group { margin-bottom: 18px; }
.fm-form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; }
.fm-form-group input,
.fm-form-group select,
.fm-form-group textarea {
    width: 100%; padding: 14px; border-radius: 8px;
    border: 1px solid var(--fm-border-light);
    background: var(--fm-card-dark); color: var(--fm-white);
    font-family: var(--fm-font); font-size: 1rem;
    transition: border-color 0.3s;
}
.fm-form-group input:focus,
.fm-form-group select:focus,
.fm-form-group textarea:focus { outline: none; border-color: var(--fm-primary); }
.fm-form-group textarea { resize: vertical; min-height: 120px; }
.fm-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%;
    background-size: 0.85em auto;
}
.fm-form-submit {
    background: var(--fm-primary); color: var(--fm-bg);
    padding: 15px 40px; border: none; border-radius: 8px;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: background 0.3s; width: 100%;
}
.fm-form-submit:hover { background: var(--fm-white); }
.fm-honeypot { position: absolute; left: -9999px; opacity: 0; }
.fm-trust-signal { text-align: center; margin-top: 12px; font-size: 0.85rem; color: var(--fm-gray); }
.fm-trust-signal::before { content: '\1F512 '; }

/* Form messages */
.form-message { padding: 12px 18px; border-radius: 8px; margin-top: 15px; font-weight: 600; text-align: center; }
.form-message--success { background: var(--fm-dark-green); border: 1px solid var(--fm-primary); color: var(--fm-white); }
.form-message--error { background: #3a1010; border: 1px solid var(--fm-red); color: var(--fm-red); }

/* ===================================
   CHECKOUT
   =================================== */
.fm-checkout-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.fm-order-summary {
    background: var(--fm-card-dark); padding: 30px;
    border-radius: 12px; border: 1px solid var(--fm-border);
}
.fm-order-summary h3 { font-size: 1.3rem; margin-bottom: 20px; }
.fm-order-summary ul li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.fm-order-summary ul .fm-check { color: var(--fm-primary); }

/* ===================================
   SETUP GUIDE
   =================================== */
.fm-guide-content { max-width: 900px; margin: 0 auto; }
.fm-guide-content h2 { font-size: 2rem; font-weight: 700; margin: 40px 0 15px; color: var(--fm-primary); }
.fm-guide-content h3 { font-size: 1.4rem; font-weight: 600; margin: 25px 0 10px; }
.fm-guide-content p { color: var(--fm-gray); line-height: 1.8; margin-bottom: 15px; }
.fm-guide-content ol, .fm-guide-content ul { padding-left: 25px; margin-bottom: 20px; }
.fm-guide-content li { color: var(--fm-gray); line-height: 1.8; margin-bottom: 8px; list-style: decimal; }
.fm-guide-content ul li { list-style: disc; }
.fm-guide-content img { border-radius: 12px; margin: 20px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

/* ===================================
   LEGAL PAGES
   =================================== */
.fm-legal-content { max-width: 900px; margin: 0 auto; }
.fm-legal-content h2 { font-size: 1.6rem; font-weight: 700; margin: 35px 0 12px; color: var(--fm-primary); border-bottom: 1px solid var(--fm-border); padding-bottom: 8px; }
.fm-legal-content h3 { font-size: 1.2rem; font-weight: 600; margin: 20px 0 8px; }
.fm-legal-content p { color: var(--fm-gray); line-height: 1.8; margin-bottom: 12px; }
.fm-legal-content ul, .fm-legal-content ol { padding-left: 25px; margin-bottom: 15px; }
.fm-legal-content li { color: var(--fm-gray); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.fm-legal-content ol li { list-style: decimal; }
.fm-legal-content table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.fm-legal-content th, .fm-legal-content td { padding: 12px; text-align: left; border: 1px solid var(--fm-border); color: var(--fm-gray); }
.fm-legal-content th { background: var(--fm-card-dark); color: var(--fm-white); font-weight: 600; }
.fm-legal-content strong { color: var(--fm-white); }

/* ===================================
   RESELLER
   =================================== */
.fm-reseller-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; margin: 40px 0; }
.fm-reseller-card {
    background: var(--fm-card); padding: 30px; border-radius: 12px;
    text-align: center; transition: transform 0.3s;
}
.fm-reseller-card:hover { transform: translateY(-5px); }
.fm-reseller-card .fm-ri { font-size: 2.5rem; color: var(--fm-primary); margin-bottom: 12px; }
.fm-reseller-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.fm-reseller-card p { color: var(--fm-gray); font-size: 0.9rem; }

/* ===================================
   ABOUT
   =================================== */
.fm-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.fm-about-grid img { border-radius: 12px; width: 100%; }
.fm-about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.fm-stat-card { background: var(--fm-card); padding: 30px; border-radius: 12px; text-align: center; }
.fm-stat-card .fm-stat-num { font-family: var(--fm-font-accent); font-size: 2.5rem; font-weight: 800; color: var(--fm-primary); }
.fm-stat-card p { color: var(--fm-gray); font-size: 0.9rem; margin-top: 5px; }

/* ===================================
   FOOTER
   =================================== */
.fm-footer {
    background: var(--fm-card-dark); color: var(--fm-gray);
    padding: 80px 20px 0; border-top: 1px solid var(--fm-border);
}
.fm-footer-main {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.fm-footer-logo {
    font-family: var(--fm-font-accent);
    font-size: 1.4rem; font-weight: 700;
    color: var(--fm-white); margin-bottom: 15px;
}
.fm-footer-logo span { color: var(--fm-primary); }
.fm-footer-about { line-height: 1.7; font-size: 0.95rem; }
.fm-footer h4 { color: var(--fm-white); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.fm-footer-links li { margin-bottom: 12px; }
.fm-footer-links a:hover { color: var(--fm-primary); }
.fm-footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.fm-footer-contact .fm-fc-icon { color: var(--fm-primary); font-size: 1.2rem; }
.fm-footer-bottom {
    margin-top: 50px; border-top: 1px solid var(--fm-border-light);
    padding: 25px 0; max-width: 1200px; margin-left: auto; margin-right: auto;
    display: flex; justify-content: space-between; align-items: center;
}
.fm-footer-bottom img { height: 25px; }

/* ===================================
   BREADCRUMB
   =================================== */
.fm-breadcrumb { padding: 15px 6%; font-size: 0.85rem; color: var(--fm-gray); }
.fm-breadcrumb a { color: var(--fm-primary); }
.fm-breadcrumb a:hover { text-decoration: underline; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .fm-footer-main, .fm-price-grid, .fm-testimonials-grid, .fm-features-grid,
    .fm-steps-container, .fm-faq-container, .fm-contact-layout,
    .fm-experience-container, .fm-cta-section, .fm-checkout-layout,
    .fm-about-grid { grid-template-columns: 1fr; }
    .fm-features-grid, .fm-devices-grid, .fm-country-grid,
    .fm-reseller-benefits { grid-template-columns: repeat(2,1fr); }
    .fm-about-stats { grid-template-columns: repeat(2,1fr); }
    .fm-footer-main { text-align: center; }
    .fm-footer-contact li { justify-content: center; }
    .fm-page-header h1 { font-size: 2.2rem; }
    .fm-price-card-full { max-width: 100%; }
}

@media (max-width: 768px) {
    .fm-nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--fm-card); flex-direction: column; align-items: center; padding: 20px 0; gap: 15px; }
    .fm-nav-links.active { display: flex; }
    .fm-nav-cta { display: none; }
    .fm-menu-icon { display: block; }
    .fm-dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; min-width: auto; }
    .fm-dropdown:hover .fm-dropdown-menu { display: block; }
    .fm-hero h1, .fm-section-title, .fm-pricing-header h2, .fm-page-header h1 { font-size: 2rem; }
    .fm-hero .fm-desc { font-size: 1rem; }
    .fm-features-grid, .fm-devices-grid, .fm-price-grid, .fm-testimonials-grid,
    .fm-steps-container, .fm-country-grid, .fm-trial-features,
    .fm-faq-grid, .fm-faq-container, .fm-reseller-benefits,
    .fm-about-stats { grid-template-columns: 1fr; }
    .fm-experience-container { flex-direction: column; text-align: center; }
    .fm-hero-carousel { padding: 10px 25px; gap: 20px; flex-wrap: wrap; }
    .fm-hero-carousel img { height: 30px; }
    .fm-page-container { padding: 30px 20px; margin: -30px 10px 40px; }
    .fm-footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .fm-hero-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .fm-hero h1 { font-size: 1.7rem; }
    .fm-plan-price { font-size: 2.8rem; }
    .fm-btn { padding: 12px 30px; font-size: 1rem; }
}
