/* ==========================================================================
   SECTION 1: GLOBAL & HERO STYLES
   ========================================================================== */


.hero-title { 
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem; 
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 10px; 
}

.hero-title.italic { font-style: italic; }

.description-text { 
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.btn-data-sheet {/*FOR DELETION===============================*/
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-data-sheet:hover { 
    background: #fff; 
    color: #000 !important; 
}

/* ==========================================================================
   SECTION 2: KIT SELECTION CARDS
   ========================================================================== */
.kit-scroll-wrapper {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.kit-card {
    position: relative;
    flex: 0 1 140px; 
    height: 85px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kit-card:hover { border-color: rgba(255, 255, 255, 0.2); }
.kit-card.active { border-color: #a3e635; background: rgba(255, 255, 255, 0.07); }

.kit-card .kit-name {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    z-index: 2;
}

.kit-card.active .kit-name { color: #fff; }

.kit-card img {
    position: absolute;
    bottom: 5px;
    right: 5px;
    height: 45px; 
    max-width: 65%; 
    filter: grayscale(1) opacity(0.3);
    transition: 0.4s ease;
    z-index: 1;
}

.kit-card.active img { filter: grayscale(0) opacity(1); transform: scale(1.05); }

/* ==========================================================================
   SECTION 3: TECHNICAL SPECS GRID
   ========================================================================== */
.spec-col { padding: 40px 35px; }

.spec-border-right { border-right: 1px solid rgba(255, 255, 255, 0.08); }

.spec-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
}

.spec-header::before {
    content: "";
    width: 4px;
    height: 16px;
    display: inline-block;
}

.accent-lime::before { background: greenyellow; }
.accent-blue::before { background: #005288; }
.accent-orange::before { background: #FF9900; }

.spec-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.spec-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.spec-data { color: #a3e635; font-size: 14px; font-weight: 600; }
.spec-data-white { color: #fff; font-size: 14px; font-weight: 500; margin: 0; }

.spec-list { list-style: none; padding: 0; margin: 0; font-size: 16px; color: #fff; }
.spec-list li::before { content: "• "; color: greenyellow; margin-right: 5px; }

.spec-preview-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    margin-top: 1.5rem;
    overflow: hidden; 
}

.spec-preview-box img { 
    max-height: 100%; 
    max-width: 100%; 
    width: auto; 
    height: auto; 
    object-fit: contain; 
    filter: brightness(1.2); 
    position: relative;
    z-index: 2;
}

.corner-top { position: absolute; top: 10px; left: 10px; width: 10px; height: 10px; border-top: 1px solid rgba(255,255,255,0.2); border-left: 1px solid rgba(255,255,255,0.2); }
.corner-bottom { position: absolute; bottom: 10px; right: 10px; width: 10px; height: 10px; border-bottom: 1px solid rgba(255,255,255,0.2); border-right: 1px solid rgba(255,255,255,0.2); }

/* ==========================================================================
   SECTION 4: PRICING PLANS (PRIORITY & MOBILE)
   ========================================================================== */
.plan-card, .plan-card-mobile, .plan-card-orange {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.plan-card:hover {
    border-color: #0054a5; 
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.plan-card-mobile:hover {
    border-color: rgba(163, 230, 53, 1) !important; 
}

.plan-card-orange:hover {
    border-color: #ff991c;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.bg-orange { background-color: #fb923c !important; }

.btn-plan-orange:hover {
    background-color: #ea580c !important; 
    border-color: #fb923c !important;
    color: #fff !important;
    transform: scale(1.02);
}

/* ==========================================================================
   DYNAMIC PLAN BUTTON - STRETCHING OUTLINE INTERFACE (NO WHITE BG HOVER)
   ========================================================================== */
.btn-plan {
    position: relative;         /* Crucial: Acts as the anchor boundary for the expanding lines */
    display: block;             /* Retains the block layout footprint */
    width: 100%;                /* Forces it to fill the card container identically to your original */
    padding: 1rem;              /* Your original padding height mechanics */
    background: rgba(255, 255, 255, 0.05); /* Stays dark/transparent */
    color: #ffffff !important;  /* Keeps text white on hover */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Your original base fallback outline */
    border-radius: 0px;        /* Your original curve design radius */
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;         /* Guarantees inner label is perfectly centered on all viewports */
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: visible;          /* Essential: Prevents the expanding outer lines from clipping */
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    z-index: 1;
}

/* Base structural scaling element (Inner Box collapse action) */
.btn-plan::before {
    content: '';
    position: absolute;
    inset: 0;                   /* Latches perfectly to the exact edges of the button container */
    border: 1px solid rgba(255, 255, 255, 0.4);  
    border-radius: 0px;
    background-color: transparent;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    pointer-events: none;       /* Allows clicks to pass through to the main layer seamlessly */
    z-index: -1;
}

/* Hover Action 1: Collapses the internal border frame cleanly inward */
.btn-plan:hover::before {
    opacity: 0;
    transform: scale(0.7, 0.7);
}

/* Target outer expansion element (Outer Box stretching action) */
.btn-plan::after {
    content: '';
    position: absolute;
    inset: 0;                   /* Starts identical to button bounds */
    opacity: 0;
    border: 1px solid #ffffff;  /* High contrast neon bright line layer */
    border-radius: 0px;
    transform: scale(1.2, 1.2); /* Spreads out wide over the boundaries initially */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

/* Hover Action 2: Pulls the outside layout down flush right over the container borders */
.btn-plan:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

/* Core Element State Overrides: Removed white background shift to preserve dark styling */
.btn-plan:hover {
    background: rgba(255, 255, 255, 0.05); /* Keeps the exact same dark bg on hover */
    color: #ffffff !important;             /* Ensures text never changes to black */
    border-color: rgba(255, 255, 255, 0.3); /* Gives the underlying button border a subtle glow raise */
}









/* ==========================================================================
   SECTION 5: CONTACT FORM
   ========================================================================== */
.contact-form-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

.form-label-custom {
    display: block;
    color: #6c757d; 
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    margin-left: 0.25rem;
}

.form-control-glass {
    width: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-md);
    padding: 0.8rem 1.2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.form-control-glass:focus {
    outline: none;
    border-color: #0d6efd !important;
    background: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
}

.btn-submit-contact {
    width: 100%;
    padding: 1.2rem;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

/* ==========================================================================
   SECTION 6: UTILITIES & "BAR" REMOVAL
   ========================================================================== */
/* This removes the "Bar" by ensuring sections have no external margin gaps */
section {
    border: none !important;
    margin: 0 !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.tracking-tight { letter-spacing: -0.02em; }

.border-start.ps-4 {
    margin-bottom: 3.5rem !important;
}

@media (max-width: 992px) {
    .spec-border-right { border-right: none; }
    .spec-col { padding: 30px 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .plan-card { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .kit-card { flex: 0 1 calc(50% - 10px); }
}

/* ==========================================================================
   BEDYUKE
   ========================================================================== */
.spec-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the video fills the box without stretching */
    display: block;
    border-radius: var(--radius-sm); /* Optional: matches your card curves */
}

/* Ensure the box has a relative position so corners stay on top */
.spec-preview-box {
    position: relative;
    overflow: hidden;
    background: #000; /* Prevents white flash before video loads */
}