:root {
    --bg-color: #141414;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --primary-red: #e50914;
    --primary-red-hover: #c11119;
    --font-stack: 'Inter', sans-serif;
}

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

body {
    background: radial-gradient(50% 500px at 50% 0%, #333333 0%, #141414 100%);
    background-color: #141414;
    color: var(--text-color);
    font-family: var(--font-stack);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sticky-header {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sticky-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.header-nav-link {
    color: #e5e5e5;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    margin-right: 20px;
}

.header-nav-link:hover {
    color: #fff;
}

/* Mobile hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #fff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.netflix-logo {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    color: #e5e5e5;
}

.header-nav a:hover {
    color: #b3b3b3;
}

.btn {
    display: inline-block;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-signin {
    background-color: #fff;
    color: #000;
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 20px;
}

.btn-signin:hover {
    background-color: #e5e5e5;
}

/* Modern Netflix Layout */
.modern-netflix-container {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-card {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    border-radius: 0;
    overflow: hidden;
    background-color: #000;
}

.hero-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%),
                linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 30%, transparent 100%);
}

.floating-nav-pill {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 4px;
    z-index: 10;
}

.floating-nav-pill a {
    color: #e5e5e5;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.floating-nav-pill a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.floating-nav-pill a.active {
    background: #fff;
    color: #000;
}

.hero-card {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 750px;
    border-radius: 0;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    padding-top: 85px;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.hero-card-content {
    position: relative;
    z-index: 5;
    max-width: 680px;
    padding: 0 48px;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.trust-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ccc;
    backdrop-filter: blur(6px);
}

.netflix-series-badge {
    margin-bottom: 4px;
}

.red-n {
    color: #e50914;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 2px;
}

.title-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.modern-cta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-join-now {
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 9px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-join-now:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-1px);
}

.pricing-text {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 8px;
    max-width: 520px;
}

/* Hero Quick WhatsApp Quote Form */
.hero-mini-form {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 3px 5px 3px 14px;
    margin-top: 14px;
    max-width: 440px;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-mini-form:focus-within {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.hero-mini-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    padding: 5px 0;
}

.hero-mini-form input::placeholder {
    color: #888;
}

.hero-mini-form-btn {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.hero-mini-form-btn:hover {
    background: #20bd5a;
    transform: scale(1.02);
}

.video-controls {
    position: absolute;
    bottom: 24px;
    right: 48px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.control-btn {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.2s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.control-btn svg {
    width: 18px;
    height: 18px;
}

/* Metadata Card */
.metadata-card {
    background-color: #2b2b2b;
    border-radius: 16px;
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metadata-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.metadata-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #bcbcbc;
}

.metadata-inline .dot {
    font-size: 0.8rem;
}

.metadata-inline .badge {
    border: 1px solid #bcbcbc;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
}

.metadata-split {
    display: flex;
    gap: 64px;
    margin-top: 8px;
}

.metadata-synopsis {
    flex: 2;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
}

.metadata-cast {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bcbcbc;
}

.metadata-cast .label {
    color: #fff;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 0.25rem;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
}

.chevron-icon {
    width: 24px;
    height: 24px;
}

/* Apple Grid Section - Netflix Glossy Theme */
.apple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 32px 48px;
    background-color: #141414; /* Netflix body background */
}

.apple-card {
    min-height: 620px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, rgba(43,43,43,0.85) 0%, rgba(20,20,20,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #ffffff;
    padding-bottom: 0;
    contain: layout style;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}

.apple-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8);
    border-color: rgba(229,9,20,0.4);
}

.other-instruments-section,
.export-section,
.faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.apple-content {
    margin-top: 36px;
    margin-bottom: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    max-width: 92%;
    min-height: 220px;
    justify-content: flex-start;
}

.apple-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.apple-logo {
    width: 32px;
    height: 32px;
    margin-top: -6px;
    fill: currentColor;
}

.series {
    font-weight: 400;
}

.apple-content p {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: #b8b8b8;
    line-height: 1.6;
    max-width: 520px;
}

.apple-buttons {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.btn-apple-primary, .btn-apple-secondary {
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-apple-primary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-apple-primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-apple-secondary {
    background-color: #e50914; /* Netflix Red */
    border: none;
    color: white;
}

.btn-apple-secondary:hover {
    background-color: #f40612; /* Lighter Netflix Red */
}

.apple-image-container {
    width: 100%;
    height: 350px;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    z-index: 1;
    display: block;
}

/* Add a bottom fade to make the images sit beautifully on the dark background */
.apple-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(20,20,20,0.95) 0%, transparent 100%);
    z-index: 2;
}

.apple-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    background-color: #141414;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.3s ease;
    display: block;
}

.lazy-stream-video {
    opacity: 0.95;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.zoom-video-fill {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.16) !important;
    transform-origin: center center !important;
}

.apple-card:hover .zoom-video-fill {
    transform: scale(1.2) !important;
}

.lazy-video.video-playing {
    opacity: 1;
}

.apple-card:hover .lazy-video {
    transform: scale(1.025);
}

/* Footer */
.footer {
    background-color: var(--bg-color);
    padding: 3rem 48px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    border-top: 8px solid #222;
}

.footer-top {
    margin-bottom: 2rem;
}

.footer a {
    color: var(--text-muted);
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.language-selector {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
}

.language-selector select {
    background-color: transparent;
    color: white;
    border: 1px solid var(--text-muted);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
}

.footer-country {
    font-size: 0.85rem;
}

html {
    scroll-behavior: smooth;
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.btn-apple-primary, .btn-apple-secondary {
    cursor: pointer;
}

/* Responsive Updates */
@media (max-width: 950px) {
    .ag-content {
        flex-direction: column;
        text-align: center;
    }
    .ag-media-block {
        width: 100%;
    }
    .apple-grid {
        grid-template-columns: 1fr;
    }
    .email-form {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary {
        margin-top: 1rem;
        width: 100%;
    }
    .title-text {
        font-size: 3rem;
    }
}

@media (max-width: 740px) {
    .header {
        padding: 24px;
    }
    .hero-container {
        padding: 0 24px;
    }
    .ag-nav {
        display: none;
    }
    .apple-card {
        height: 500px;
    }
}

/* Service Cards with SVG Icons */
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.4);
    background: rgba(229, 9, 20, 0.06);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(229,9,20,0.18) 0%, rgba(56,189,248,0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ff3b47;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #e50914 0%, #0284c7 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
    transform: scale(1.08) rotate(2deg);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    align-items: stretch;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    text-align: left;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    min-height: 82px;
    box-sizing: border-box;
}

.contact-info-card:hover {
    border-color: rgba(229, 9, 20, 0.4);
    background: rgba(229, 9, 20, 0.06);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-info-label {
    font-size: 0.75rem;
    color: var(--text-muted, #8888a0);
    margin-bottom: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-val {
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.83rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-stack);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    border-color: #e50914;
    box-shadow: 0 0 0 3px rgba(229,9,20,0.15);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.3);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    background: #25D366;
    border-radius: 50px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fabPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s both;
}

.whatsapp-fab:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

.whatsapp-fab-label {
    white-space: nowrap;
}

@keyframes fabPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 200;
    background: rgba(229,9,20,0.85);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: background 0.2s, transform 0.2s;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: #e50914;
    transform: translateY(-2px);
}

/* Footer links 3-column grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 0.75rem 2rem;
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

@media (max-width: 740px) {
    .header {
        padding: 14px 20px;
    }
    .header-nav-link {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .hero-card-content {
        left: 24px;
        right: 24px;
        bottom: 60px;
    }
    .title-logo-text {
        font-size: 2.4rem !important;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    #contact form {
        grid-template-columns: 1fr !important;
    }
    .whatsapp-fab-label {
        display: none;
    }
    .whatsapp-fab {
        border-radius: 50%;
        padding: 14px;
    }
    .services-section {
        padding: 40px 20px !important;
    }
    #contact {
        padding: 60px 20px !important;
    }
    #mission {
        padding: 40px 20px !important;
    }
    .footer {
        padding: 2rem 20px;
    }
    .footer-links {
        grid-template-columns: repeat(2, auto);
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABEL UTILITY
═══════════════════════════════════════════════════════════ */
.section-label {
    color: #e50914;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 6px;
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT / ENTITY SECTION
═══════════════════════════════════════════════════════════ */
.about-entity-section {
    background: linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 85px 48px;
}

.about-entity-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.about-entity-headline {
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.28;
}

.about-entity-body {
    color: #b8b8b8;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 820px;
    margin: 0 auto 50px;
}

.about-entity-body strong {
    color: #fff;
    font-weight: 600;
}

.about-stats-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px 24px;
    width: 100%;
    box-sizing: border-box;
}

.about-stat {
    text-align: center;
    padding: 0 12px;
}

.about-stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: #e50914;
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
}

.about-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.about-stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   MISSION SECTION (streamlined)
═══════════════════════════════════════════════════════════ */
.mission-quote-container {
    padding: 60px 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-quote-text {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   EXPORT COUNTRIES SECTION
═══════════════════════════════════════════════════════════ */
.export-section {
    background: radial-gradient(ellipse at center, rgba(229,9,20,0.07) 0%, transparent 70%), #141414;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 72px 48px;
}

.export-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.export-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.export-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

.export-flags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px 22px;
    min-width: 90px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: default;
}

.flag-item:hover {
    transform: translateY(-4px);
    border-color: rgba(229,9,20,0.35);
    background: rgba(229,9,20,0.07);
}

.flag-emoji {
    font-size: 2rem;
    line-height: 1;
}

.flag-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    text-align: center;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 72px 48px;
    background: #141414;
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(229,9,20,0.12);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,9,20,0.3);
}

.testimonial-stars {
    color: #f5c518;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    color: #d0d0d0;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 18px;
}

.testimonial-flag {
    font-size: 2rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 2px;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.faq-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 48px;
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.faq-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.faq-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: rgba(229,9,20,0.35);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-stack);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #e50914;
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #aaa;
    transition: transform 0.3s ease, color 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #e50914;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   STICKY QUOTE CTA BAR
═══════════════════════════════════════════════════════════ */
.sticky-quote-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: linear-gradient(90deg, #1a0303 0%, #2a0508 50%, #1a0303 100%);
    border-top: 1px solid rgba(229,9,20,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.sticky-quote-bar.visible {
    transform: translateY(0);
}

.sticky-quote-text {
    color: #e5e5e5;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.sticky-quote-btn {
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.sticky-quote-btn:hover {
    background: #c11119;
    transform: scale(1.04);
}

.sticky-quote-close {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.sticky-quote-close:hover {
    color: #aaa;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP INLINE BUTTON (inside modal)
═══════════════════════════════════════════════════════════ */
.whatsapp-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #25D366;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 20px;
    transition: background 0.2s, border-color 0.2s;
}

.whatsapp-inline-btn:hover {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.6);
}

/* ═══════════════════════════════════════════════════════════
   FORM SELECT DROPDOWN STYLING
═══════════════════════════════════════════════════════════ */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #1c1c1c;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — NEW SECTIONS
═══════════════════════════════════════════════════════════ */
@media (max-width: 740px) {
    .about-entity-section {
        padding: 48px 20px;
    }
    .about-entity-headline {
        font-size: 1.8rem;
    }
    .about-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
        padding: 24px 16px;
    }
    .about-stat {
        padding: 8px 4px;
    }
    .about-stat-divider {
        display: none;
    }
    .about-stat-number {
        font-size: 1.8rem;
    }
    .about-stat-label {
        font-size: 0.72rem;
        white-space: normal;
    }
    .export-section {
        padding: 48px 20px;
    }
    .export-headline {
        font-size: 1.8rem;
    }
    .export-flags-grid {
        gap: 10px;
    }
    .flag-item {
        padding: 14px 16px;
        min-width: 74px;
    }
    .testimonials-section {
        padding: 48px 20px;
    }
    .testimonials-headline {
        font-size: 1.8rem;
    }
    .faq-section {
        padding: 48px 20px;
    }
    .faq-headline {
        font-size: 1.8rem;
    }
    .sticky-quote-text {
        display: none;
    }
    .sticky-quote-bar {
        justify-content: center;
    }
    .mission-quote-container {
        padding: 48px 20px;
    }
    .mission-quote-text {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   WHY DUAL BROTHERS SECTION
═══════════════════════════════════════════════════════════ */
.why-us-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 80px 48px;
}

.why-us-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-us-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,9,20,0.35);
    background: rgba(229,9,20,0.05);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.92rem;
    color: #b3b3b3;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES SECTION
═══════════════════════════════════════════════════════════ */
.industries-section {
    background: radial-gradient(ellipse at bottom, rgba(229,9,20,0.06) 0%, transparent 70%), #141414;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 48px;
}

.industries-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.industries-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.industries-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.industry-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229,9,20,0.3);
    background: rgba(229,9,20,0.05);
}

.industry-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.industry-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ddd;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   HERO MINI QUICK-QUOTE FORM
═══════════════════════════════════════════════════════════ */
.hero-mini-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    backdrop-filter: blur(10px);
    max-width: 420px;
}

.hero-mini-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.88rem;
    font-family: var(--font-stack);
    min-width: 0;
}

.hero-mini-form input::placeholder {
    color: rgba(255,255,255,0.45);
}

.hero-mini-form-btn {
    background: #25D366;
    border: none;
    border-radius: 40px;
    padding: 10px 16px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    font-family: var(--font-stack);
}

.hero-mini-form-btn:hover {
    background: #1ebe58;
}

/* ═══════════════════════════════════════════════════════════
   EXIT-INTENT POPUP
═══════════════════════════════════════════════════════════ */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-card {
    background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
    border: 1px solid rgba(229,9,20,0.3);
    border-radius: 24px;
    padding: 44px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 40px rgba(229,9,20,0.1);
    animation: popupSlide 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popupSlide {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.exit-popup-close:hover { color: #fff; }

.exit-popup-badge {
    display: inline-block;
    background: rgba(229,9,20,0.15);
    border: 1px solid rgba(229,9,20,0.3);
    color: #e50914;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.exit-popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.exit-popup-sub {
    color: #b3b3b3;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.exit-popup-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.exit-popup-input {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-stack);
    outline: none;
    transition: border-color 0.2s;
}

.exit-popup-input:focus { border-color: #e50914; }
.exit-popup-input::placeholder { color: rgba(255,255,255,0.35); }
.exit-popup-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}


.exit-popup-submit {
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-stack);
    transition: background 0.2s, transform 0.15s;
}

.exit-popup-submit:hover {
    background: #c11119;
    transform: translateY(-1px);
}

.exit-popup-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #25D366;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 14px;
    padding: 8px 18px;
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 20px;
    transition: background 0.2s;
}

.exit-popup-whatsapp:hover { background: rgba(37,211,102,0.1); }

.exit-popup-no {
    display: block;
    margin-top: 14px;
    font-size: 0.8rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    font-family: var(--font-stack);
    width: 100%;
}

.exit-popup-no:hover { color: #888; }

/* ═══════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS (IntersectionObserver triggered)
═══════════════════════════════════════════════════════════ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.08s; }
.anim-delay-2 { transition-delay: 0.18s; }
.anim-delay-3 { transition-delay: 0.28s; }
.anim-delay-4 { transition-delay: 0.38s; }

@media (max-width: 740px) {
    .why-us-section { padding: 60px 20px; }
    .industries-section { padding: 60px 20px; }
    .why-us-headline, .industries-headline { font-size: 1.8rem; }
    .exit-popup-card { padding: 32px 22px; }
    .exit-popup-title { font-size: 1.5rem; }
    .hero-mini-form { max-width: 100%; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   DB SERIES LABEL (inside apple-cards)
═══════════════════════════════════════════════════════════ */
.db-series-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e50914;
    margin-bottom: 8px;
    display: block;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════
   OTHER INSTRUMENTS SECTION
═══════════════════════════════════════════════════════════ */
.other-instruments-section {
    background: linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 48px;
}

.other-instruments-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.other-instruments-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.other-instruments-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.other-instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    text-align: left;
}

.other-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.other-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229,9,20,0.3);
    background: rgba(229,9,20,0.04);
}

.other-card-top h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 8px;
    line-height: 1.35;
}

.other-card-top p {
    font-size: 0.83rem;
    color: #999;
    line-height: 1.65;
}

.other-series-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e50914;
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    border-radius: 20px;
    padding: 3px 10px;
}

.other-inquire-btn {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: #ddd;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 18px;
    cursor: pointer;
    font-family: var(--font-stack);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.other-inquire-btn:hover {
    border-color: #e50914;
    color: #e50914;
    background: rgba(229,9,20,0.06);
}

@media (max-width: 740px) {
    .other-instruments-section { padding: 60px 20px; }
    .other-instruments-headline { font-size: 1.8rem; }
    .other-instruments-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER WATERMARK & DISCLAIMER
═══════════════════════════════════════════════════════════ */
.footer-watermark {
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 900;
    text-align: center;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: 8px;
    user-select: none;
    pointer-events: none;
    margin: 40px auto 20px;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.footer-disclaimer {
    max-width: 960px;
    margin: 24px auto 0;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #666;
    text-align: left;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-disclaimer strong {
    color: #888;
}


/* ═══════════════════════════════════════════════════════════
   ██████  COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   Covers: 390px iPhone SE → 768px landscape tablets
   All sections checked: hero, instruments, modal, contact,
   nav, WhatsApp FAB, floating pill, cards, footer, form
═══════════════════════════════════════════════════════════ */

/* ── TABLET (769px–950px): Keep 2-col grid but tighter ── */
@media (max-width: 950px) and (min-width: 769px) {
    .apple-grid {
        padding: 24px 32px;
        gap: 16px;
    }
    .hero-card-content {
        padding: 0 32px;
        max-width: 540px;
    }
    .other-instruments-section {
        padding: 60px 32px;
    }
}

/* ── MOBILE MAIN BREAKPOINT ≤ 768px ── */
@media (max-width: 768px) {

    /* ── Header ── */
    .header {
        padding: 12px 18px;
    }
    .header-nav-link { display: none; }
    .hamburger-btn { display: flex; }
    .btn-signin { display: none; }

    /* ── Hero Section ── */
    .hero-card {
        height: 100dvh;
        min-height: 580px;
        max-height: none;
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .hero-card-content {
        padding: 0 20px;
        max-width: 100%;
        left: 0;
        right: 0;
        bottom: 64px;
    }
    .title-logo-text {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        line-height: 1.2;
    }
    .modern-cta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .btn-join-now {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
        min-width: 130px;
    }
    .trust-badges {
        gap: 5px;
        margin-top: 10px;
    }
    .trust-badge {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
    .hero-mini-form {
        max-width: 100%;
        margin-top: 12px;
    }
    .hero-mini-form-btn {
        font-size: 0.75rem;
        padding: 7px 10px;
    }
    .pricing-text {
        font-size: 0.82rem;
        margin-top: 8px;
    }
    /* Hide floating nav pill on mobile — too cramped */
    .floating-nav-pill { display: none; }
    /* Video controls reposition */
    .video-controls {
        bottom: 68px;
        right: 18px;
    }

    /* ── Instrument Cards Grid ── */
    .apple-grid {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 14px;
    }
    .apple-card {
        min-height: 520px;
        height: auto;
        border-radius: 16px;
    }
    .apple-content {
        margin-top: 28px;
        padding: 0 16px;
    }
    .apple-content h2 {
        font-size: 1.5rem;
        line-height: 1.25;
    }
    .apple-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .apple-buttons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .btn-apple-primary,
    .btn-apple-secondary {
        padding: 9px 18px;
        font-size: 0.85rem;
    }
    .apple-image-container {
        min-height: 220px;
    }
    /* Keep hover zoom off on touch to avoid stuck state */
    .apple-card:hover .lazy-video {
        transform: none;
    }

    /* ── Other Instruments Section ── */
    .other-instruments-section {
        padding: 48px 16px;
    }
    .other-instruments-headline {
        font-size: 1.6rem;
    }
    .other-instruments-subtext {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }
    .other-instruments-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .other-card {
        padding: 18px;
    }
    .other-card-top h3 {
        font-size: 0.9rem;
    }
    .other-card-top p {
        font-size: 0.78rem;
    }

    /* ── Inquiry Modal ── */
    .modal-overlay {
        padding: 12px;
        align-items: flex-end; /* Sheet rises from bottom on mobile */
    }
    .modal-card {
        padding: 24px 20px 28px;
        border-radius: 20px 20px 16px 16px;
        max-width: 100%;
        max-height: 92dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ── Contact Section ── */
    #contact {
        padding: 48px 16px !important;
    }
    #contact h2 {
        font-size: 1.7rem !important;
    }
    #contact form {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .contact-info-card {
        padding: 14px 16px;
    }

    /* ── Services Section ── */
    .services-section {
        padding: 40px 16px !important;
    }

    /* ── Why Us Section ── */
    .why-us-section { padding: 48px 16px; }
    .why-us-headline { font-size: 1.6rem; }
    .why-us-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 20px 16px; }

    /* ── About Entity Section ── */
    .about-entity-section { padding: 40px 16px; }
    .about-entity-headline { font-size: 1.6rem; }
    .about-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px 8px;
        padding: 20px 12px;
    }
    .about-stat-number { font-size: 1.6rem; }
    .about-stat-divider { display: none; }

    /* ── Export Countries Section ── */
    .export-section { padding: 40px 16px; }
    .export-headline { font-size: 1.6rem; }
    .export-flags-grid { gap: 8px; }
    .flag-item {
        padding: 10px 12px;
        min-width: 64px;
        font-size: 0.75rem;
    }
    .flag-emoji { font-size: 1.4rem; }

    /* ── Industries Section ── */
    .industries-section { padding: 40px 16px; }
    .industries-headline { font-size: 1.6rem; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .industry-card { padding: 16px 10px; }
    .industry-icon { font-size: 1.8rem; }
    .industry-name { font-size: 0.8rem; }

    /* ── Mission Section ── */
    #mission,
    .mission-quote-container { padding: 36px 16px !important; }
    .mission-quote-text {
        font-size: 1.3rem;
        line-height: 1.45;
    }

    /* ── Testimonials ── */
    .testimonials-section { padding: 40px 16px; }
    .testimonials-headline { font-size: 1.6rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonial-quote { font-size: 0.9rem; }

    /* ── FAQ Section ── */
    .faq-section { padding: 40px 16px; }
    .faq-headline { font-size: 1.6rem; }
    .faq-question { font-size: 0.9rem; }

    /* ── WhatsApp FAB (bottom-right) ── */
    .whatsapp-fab {
        bottom: 18px;
        right: 18px;
        border-radius: 50%;
        padding: 14px;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
    .whatsapp-fab-label { display: none; }
    /* Back to top button shift so it doesn't overlap FAB */
    .back-to-top {
        bottom: 80px;
        left: 18px;
    }

    /* ── Sticky Quote Bar ── */
    .sticky-quote-bar { justify-content: center; gap: 8px; }
    .sticky-quote-text { display: none; }

    /* ── Footer ── */
    .footer { padding: 2rem 16px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1rem; }
    .footer-watermark { font-size: 2rem; letter-spacing: 4px; }
    .footer-disclaimer { padding: 16px 14px; font-size: 0.75rem; }
}

/* ── SMALL PHONES ≤ 430px (iPhone 14/15 Pro Max, Samsung S24) ── */
@media (max-width: 430px) {
    .title-logo-text { font-size: clamp(1.4rem, 8vw, 1.9rem) !important; }
    .apple-content h2 { font-size: 1.35rem; }
    .apple-card { min-height: 480px; }
    .apple-image-container { min-height: 200px; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-row { grid-template-columns: 1fr 1fr; }
    .trust-badge { font-size: 0.65rem; }
}

/* ── VERY SMALL PHONES ≤ 390px (iPhone SE, Galaxy A series) ── */
@media (max-width: 390px) {
    .title-logo-text { font-size: 1.35rem !important; }
    .apple-content h2 { font-size: 1.2rem; }
    .btn-apple-primary, .btn-apple-secondary { padding: 8px 14px; font-size: 0.8rem; }
    .hero-card { min-height: 550px; }
    .hero-card-content { padding: 0 14px; }
    .apple-grid { padding: 12px; gap: 12px; }
    .modal-card { padding: 20px 14px 22px; }
}

/* ── LANDSCAPE MOBILE (short height) ── */
@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .hero-card {
        height: auto;
        min-height: 100dvh;
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .title-logo-text { font-size: 1.3rem !important; }
    .pricing-text { display: none; }
    .trust-badges { display: none; }
    .floating-nav-pill { display: none; }
}

/* ── Improved Touch Targets ── */
@media (max-width: 768px) {
    button,
    a,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
    }
    .btn-apple-primary,
    .btn-apple-secondary,
    .other-inquire-btn,
    .btn-join-now,
    .faq-question {
        min-height: 44px; /* Apple HIG minimum touch target */
    }
    .form-input {
        font-size: 16px; /* Prevents iOS auto-zoom on focus */
        padding: 13px 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   🧞‍♂️ ALADDIN GENIE AI METROLOGY CHATBOT WIDGET
   ═══════════════════════════════════════════════════════════════════════════ */

.genie-widget {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 999999;
    font-family: var(--font-stack, 'Inter', sans-serif);
}

/* Floating DB Genie Magic Lamp Launcher */
.genie-launcher-btn {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b 60%, #4a2800 100%);
    border: 3px solid #ffe066;
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.6), 0 0 25px rgba(255, 215, 0, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: genieFloat 3.5s ease-in-out infinite;
    outline: none;
}

.genie-launcher-btn:hover {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 14px 45px rgba(0, 240, 255, 0.8), 0 0 35px rgba(255, 215, 0, 0.9);
}

.genie-lamp-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.genie-smoke-particles {
    position: absolute;
    top: -12px;
    right: -4px;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 10;
}

.smoke-puff {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #00f0ff, rgba(168, 85, 247, 0.7) 70%, transparent);
    border-radius: 50%;
    animation: smokeRise 2s infinite ease-out;
}

.smoke-puff:nth-child(2) {
    animation-delay: 0.6s;
    left: 8px;
}

.smoke-puff:nth-child(3) {
    animation-delay: 1.2s;
    left: -5px;
}

/* ── DB Genie Chat Window ── */
.genie-chat-window {
    display: none;
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 410px;
    max-width: calc(100vw - 36px);
    height: 620px;
    max-height: calc(100vh - 110px);
    background: linear-gradient(180deg, #0b1120 0%, #060913 100%);
    border: 2px solid rgba(0, 240, 255, 0.45);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 240, 255, 0.25);
    z-index: 999999;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(24px);
    animation: genieAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.genie-chat-window.open {
    display: flex;
}

/* DB Genie Header */
.genie-header {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 40%, #0284c7 100%);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.genie-avatar-box {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffd700, #b8860b 60%, #4a2800 100%);
    border: 2.5px solid #ffe066;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.7), 0 0 15px rgba(255, 215, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 6px;
    box-sizing: border-box;
    animation: genieAvatarPulse 2.5s infinite alternate;
}

.genie-lamp-avatar-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.genie-header-info {
    flex: 1;
    margin-left: 12px;
}

.genie-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.genie-subtitle {
    font-size: 0.76rem;
    color: #38bdf8;
    margin-top: 3px;
    font-weight: 500;
}

.genie-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    display: inline-block;
}

.genie-close-btn {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #e2e8f0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s, transform 0.2s;
}

.genie-close-btn:hover {
    background: #e50914;
    color: #fff;
    transform: rotate(90deg);
}

/* Chat Messages Container */
.genie-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
    background: radial-gradient(circle at 50% 0%, rgba(30, 58, 138, 0.15), transparent 70%);
}

.genie-msg.bot .genie-msg-bubble {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-top-left-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.genie-messages-container::-webkit-scrollbar {
    width: 5px;
}
.genie-messages-container::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.2);
    border-radius: 10px;
}

/* Message Bubbles */
.genie-msg {
    display: flex;
    gap: 10px;
    max-width: 90%;
    animation: msgFadeIn 0.3s ease-out;
}

.genie-msg.bot {
    align-self: flex-start;
}

.genie-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.genie-msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffd700, #b8860b 60%, #4a2800 100%);
    border: 1.5px solid #ffe066;
    box-shadow: 0 2px 8px rgba(0, 240, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    box-sizing: border-box;
}

.genie-msg-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #f1f5f9;
}

.genie-msg.bot .genie-msg-bubble {
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-top-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.genie-msg.user .genie-msg-bubble {
    background: linear-gradient(135deg, #0284c7 0%, #1e40af 100%);
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-top-right-radius: 4px;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
    font-weight: 500;
}

/* Interactive Wish Suggestion Chips */
.genie-wishes-grid {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 10px;
}

.genie-wish-btn {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.genie-wish-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #ffd700;
    color: #fff;
    transform: translateX(4px);
}

/* Chat Input Bar */
.genie-input-bar {
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    gap: 8px;
    align-items: center;
}

.genie-input {
    flex: 1;
    background: #1e293b;
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 20px;
    padding: 10px 16px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.genie-input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.genie-send-btn {
    background: linear-gradient(135deg, #ffd700, #d97706);
    border: none;
    color: #000;
    font-weight: 800;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.genie-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Typing Indicator Animation */
.genie-typing {
    display: flex;
    gap: 4px;
    padding: 6px 10px;
    align-items: center;
}
.genie-dot {
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
    animation: genieDotPulse 1.4s infinite ease-in-out;
}
.genie-dot:nth-child(2) { animation-delay: 0.2s; }
.genie-dot:nth-child(3) { animation-delay: 0.4s; }

/* ── Keyframe Animations ── */
@keyframes genieFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes smokeRise {
    0% { transform: scale(0.4) translate(0, 0); opacity: 0.8; }
    50% { opacity: 0.5; }
    100% { transform: scale(2) translate(10px, -24px); opacity: 0; }
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes genieAppear {
    from { opacity: 0; transform: scale(0.8) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes genieAvatarPulse {
    from { box-shadow: 0 0 10px rgba(56, 189, 248, 0.4); }
    to { box-shadow: 0 0 25px rgba(56, 189, 248, 0.9), 0 0 15px rgba(255, 215, 0, 0.7); }
}

@keyframes genieDotPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.1); opacity: 1; }
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive for Genie */
@media (max-width: 480px) {
    .genie-widget {
        bottom: 85px;
        right: 18px;
    }
    .genie-floating-badge {
        display: none;
    }
    .genie-chat-window {
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 85vh;
        max-width: 100vw;
        border-radius: 20px 20px 0 0;
    }
}

