/* =====================================================
   MEDHACK PAGE - Dark / Gold / Copper Palette
   ===================================================== */

:root {
    --mh-dark: #0d0d0d;
    --mh-dark-2: #1a1a1a;
    --mh-dark-3: #111111;
    --mh-dark-4: #161616;
    --mh-gold: #c89b5e;
    --mh-gold-light: #d4a76a;
    --mh-gold-dark: #b8863e;
    --mh-copper: #9e7844;
    --mh-cream: #f5f0eb;
    --mh-cream-light: #faf7f3;
    --mh-text: #e8e0d8;
    --mh-text-muted: rgba(255, 255, 255, 0.55);
    --mh-border: rgba(200, 155, 94, 0.15);
    --mh-card-bg: rgba(255, 255, 255, 0.04);
}

.medhack-body {
    background: var(--mh-dark);
    color: var(--mh-text);
    overflow-x: hidden;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.mh-hero {
    position: relative;
    height: 720px;
    display: flex;
    align-items: center;
    background: var(--mh-dark);
    overflow: hidden;
    padding-top: 70px;
}

.mh-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mh-hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.mh-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--mh-gold);
    top: -200px;
    right: -100px;
}

.mh-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--mh-gold-dark);
    bottom: -100px;
    left: -100px;
}

.mh-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--mh-copper);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mh-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mh-hero-pre {
    font-size: 16px;
    color: var(--mh-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mh-hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.mh-gold {
    color: var(--mh-gold);
    background: linear-gradient(135deg, var(--mh-gold-light), var(--mh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mh-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mh-text-muted);
    max-width: 480px;
    margin-bottom: 32px;
}

.mh-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.mh-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-dark));
    color: var(--mh-dark);
    font-weight: 700;
    font-size: 15px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(200, 155, 94, 0.3);
}

.mh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 155, 94, 0.45);
}

.mh-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: transparent;
    color: var(--mh-gold);
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
    text-decoration: none;
    border: 1.5px solid var(--mh-gold);
    transition: all 0.3s ease;
}

.mh-btn-outline:hover {
    background: rgba(200, 155, 94, 0.1);
    transform: translateY(-2px);
}

/* Hero Stats */
.mh-hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.mh-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mh-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--mh-gold);
}

.mh-stat-label {
    font-size: 13px;
    color: var(--mh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mh-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--mh-border);
}

/* Hero Visual - Device Mockups */
.mh-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mh-device-laptop {
    width: 380px;
    background: var(--mh-dark-2);
    border-radius: 16px;
    border: 1px solid var(--mh-border);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.mh-device-screen {
    padding: 0;
}

.mh-screen-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--mh-dark-4);
    border-bottom: 1px solid var(--mh-border);
}

.mh-screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 155, 94, 0.3);
}

.mh-screen-dot:first-child { background: rgba(200, 155, 94, 0.5); }

.mh-screen-title {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    color: var(--mh-gold);
    letter-spacing: 2px;
}

.mh-screen-content {
    padding: 20px 16px;
}

.mh-screen-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--mh-gold);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.mh-screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mh-screen-card {
    background: var(--mh-card-bg);
    border: 1px solid var(--mh-border);
    border-radius: 8px;
    padding: 10px 8px;
    font-size: 10px;
    text-align: center;
    color: var(--mh-text);
    transition: border-color 0.3s;
}

.mh-screen-card:hover {
    border-color: var(--mh-gold);
}

.mh-device-phone {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 140px;
    background: var(--mh-dark-2);
    border-radius: 18px;
    border: 1px solid var(--mh-border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.mh-phone-screen {
    padding: 0;
}

.mh-phone-header {
    padding: 10px 12px;
    font-size: 8px;
    font-weight: 700;
    color: var(--mh-gold);
    letter-spacing: 2px;
    text-align: center;
    background: var(--mh-dark-4);
    border-bottom: 1px solid var(--mh-border);
}

.mh-phone-content {
    padding: 8px;
}

.mh-phone-item {
    padding: 8px 10px;
    font-size: 9px;
    color: var(--mh-text);
    background: var(--mh-card-bg);
    border: 1px solid var(--mh-border);
    border-radius: 6px;
    margin-bottom: 4px;
}

/* =====================================================
   SECTION SHARED STYLES
   ===================================================== */

.mh-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.mh-section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--mh-dark);
    margin-bottom: 56px;
    letter-spacing: -1.5px;
}

.mh-section-title strong {
    font-weight: 800;
}

/* =====================================================
   GRILE SECTION - Light Background
   ===================================================== */

.mh-grile-section {
    background: var(--mh-cream);
    padding: 100px 0;
    overflow: hidden;
}

.mh-grile-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    align-items: start;
    position: relative;
}

.mh-grile-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(200, 180, 150, 0.25);
    border-radius: 24px;
    padding: 20px;
}

.mh-grile-card {
    background: linear-gradient(160deg, #c49456 0%, #a07a42 35%, #4a3520 85%, #2a1e12 100%);
    border-radius: 16px;
    padding: 28px 24px;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-evenly;
}

.mh-grile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(180, 130, 60, 0.25);
}

.mh-grile-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.mh-grile-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

/* Phone Mockup in Grile Section */
.mh-grile-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px;
}

.mh-phone-mockup {
    width: 280px;
    background: var(--mh-dark);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.mh-mockup-screen {
    background: var(--mh-dark-2);
    border-radius: 22px;
    overflow: hidden;
}

.mh-mockup-bar {
    padding: 16px;
    font-size: 10px;
    font-weight: 700;
    color: var(--mh-gold);
    letter-spacing: 2px;
    text-align: center;
    background: var(--mh-dark-4);
    border-bottom: 1px solid var(--mh-border);
}

.mh-mockup-body {
    padding: 16px;
}

.mh-mockup-item {
    padding: 14px 16px;
    background: var(--mh-card-bg);
    border: 1px solid var(--mh-border);
    border-radius: 12px;
    font-size: 13px;
    color: var(--mh-text);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.mh-mockup-item.active {
    border-color: var(--mh-gold);
    background: rgba(200, 155, 94, 0.08);
    color: var(--mh-gold);
}

/* =====================================================
   FEATURE ROWS - Alternating
   ===================================================== */

.mh-features-alt {
    background: var(--mh-cream-light);
    padding: 100px 0;
    overflow: hidden;
}

.mh-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.mh-feature-row:last-child {
    margin-bottom: 0;
}

.mh-feature-reverse {
    direction: rtl;
}

.mh-feature-reverse > * {
    direction: ltr;
}

.mh-feature-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--mh-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.mh-feature-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 28px;
}

.mh-feature-desc strong {
    color: var(--mh-dark);
    font-weight: 600;
}

.mh-btn-dark {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--mh-dark);
    color: var(--mh-gold);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mh-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Visual Circle */
.mh-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mh-visual-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mh-cream), #ebe4db);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 24px 64px rgba(200, 155, 94, 0.1);
}

.mh-visual-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 155, 94, 0.2);
}

.mh-circle-inner {
    width: 200px;
}

.mh-mini-phone {
    background: var(--mh-dark);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.mh-mini-bar {
    padding: 10px 14px;
    font-size: 9px;
    font-weight: 700;
    color: var(--mh-gold);
    letter-spacing: 2px;
    text-align: center;
    background: var(--mh-dark-4);
    border-bottom: 1px solid var(--mh-border);
}

.mh-mini-content {
    padding: 20px 16px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-mini-card-flip {
    background: var(--mh-card-bg);
    border: 1px solid var(--mh-gold);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    width: 100%;
}

.mh-mini-card-flip span {
    font-size: 12px;
    color: var(--mh-gold);
    font-weight: 600;
}

/* Chat Mockup */
.mh-mini-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.mh-chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.5;
    max-width: 85%;
}

.mh-chat-user {
    background: var(--mh-gold);
    color: var(--mh-dark);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mh-chat-ai {
    background: var(--mh-card-bg);
    border: 1px solid var(--mh-border);
    color: var(--mh-text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* =====================================================
   ADVANTAGE BANNER - Dark
   ===================================================== */

.mh-advantage-banner {
    position: relative;
    padding: 100px 0;
    background: var(--mh-dark);
    overflow: hidden;
    text-align: center;
}

.mh-advantage-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mh-adv-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.mh-adv-c1 {
    width: 500px;
    height: 500px;
    background: var(--mh-gold);
    top: -150px;
    left: -100px;
}

.mh-adv-c2 {
    width: 400px;
    height: 400px;
    background: var(--mh-gold-dark);
    bottom: -100px;
    right: -100px;
}

.mh-advantage-inner {
    position: relative;
    z-index: 1;
}

.mh-advantage-title {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.25;
}

.mh-advantage-title strong {
    font-weight: 900;
    color: var(--mh-gold);
    background: linear-gradient(135deg, var(--mh-gold-light), var(--mh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   FEATURES GRID - 6 Cards
   ===================================================== */

.mh-features-grid-section {
    background: var(--mh-cream);
    padding: 80px 0 100px;
}

.mh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mh-feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(200, 155, 94, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mh-feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(200, 155, 94, 0.12);
    border-color: var(--mh-gold);
}

.mh-feat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 155, 94, 0.12), rgba(200, 155, 94, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--mh-gold);
    transition: all 0.3s ease;
}

.mh-feat-card:hover .mh-feat-icon {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-dark));
    color: #fff;
}

.mh-feat-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mh-dark);
    margin-bottom: 10px;
}

.mh-feat-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.55;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.mh-pricing {
    background: var(--mh-cream-light);
    padding: 100px 0;
}

.mh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.mh-plan-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(200, 155, 94, 0.12);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.mh-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(200, 155, 94, 0.12);
}

.mh-plan-featured {
    border: 2px solid var(--mh-gold);
    box-shadow: 0 16px 56px rgba(200, 155, 94, 0.15);
}

.mh-plan-featured:hover {
    box-shadow: 0 28px 72px rgba(200, 155, 94, 0.22);
}

.mh-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-dark));
    color: var(--mh-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mh-plan-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(200, 155, 94, 0.12);
}

.mh-plan-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--mh-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.mh-plan-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--mh-dark);
}

.mh-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.mh-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.mh-check {
    color: var(--mh-gold);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mh-plan-price {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mh-price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--mh-dark);
    line-height: 1;
}

.mh-price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--mh-dark);
}

.mh-price-period {
    font-size: 15px;
    color: #888;
    font-weight: 400;
}

.mh-price-old {
    font-size: 22px;
    font-weight: 600;
    color: #bbb;
    text-decoration: line-through;
    display: block;
    width: 100%;
    margin-bottom: 4px;
}

.mh-price-old sup {
    font-size: 12px;
}

.mh-price-current {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.mh-plan-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: var(--mh-dark);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mh-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mh-plan-btn-gold {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-dark));
    color: var(--mh-dark);
    box-shadow: 0 8px 28px rgba(200, 155, 94, 0.3);
}

.mh-plan-btn-gold:hover {
    box-shadow: 0 12px 36px rgba(200, 155, 94, 0.45);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.mh-faq {
    background: var(--mh-cream);
    padding: 100px 0;
}

.mh-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.mh-faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(200, 155, 94, 0.1);
    overflow: hidden;
    transition: border-color 0.3s;
}

.mh-faq-item:hover,
.mh-faq-item.active {
    border-color: var(--mh-gold);
}

.mh-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--mh-dark);
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.mh-faq-question:hover {
    color: var(--mh-gold-dark);
}

.mh-faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--mh-gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.mh-faq-item.active .mh-faq-toggle {
    transform: rotate(45deg);
}

.mh-faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.mh-faq-item.active .mh-faq-answer {
    padding: 0 28px 24px;
    max-height: 300px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.mh-cta {
    position: relative;
    padding: 120px 0;
    background: var(--mh-dark);
    text-align: center;
    overflow: hidden;
}

.mh-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mh-cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.mh-cta-c1 {
    width: 500px;
    height: 500px;
    background: var(--mh-gold);
    top: -200px;
    right: -100px;
}

.mh-cta-c2 {
    width: 400px;
    height: 400px;
    background: var(--mh-copper);
    bottom: -150px;
    left: -100px;
}

.mh-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
}

.mh-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.mh-cta-desc {
    font-size: 17px;
    color: var(--mh-text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.mh-btn-gold-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-dark));
    color: var(--mh-dark);
    font-weight: 800;
    font-size: 16px;
    border-radius: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(200, 155, 94, 0.35);
}

.mh-btn-gold-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(200, 155, 94, 0.5);
}

/* =====================================================
   FOOTER - Override for dark theme
   ===================================================== */

/* =====================================================
   FOOTER - Base Styles
   ===================================================== */

.site-footer {
    background: #1a3d4e;
    color: #c5cdd9;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: #8899aa;
    margin: 0;
    font-style: italic;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-link {
    color: #c5cdd9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: #5fb8b0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5cdd9;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s;
}

.social-icon:hover {
    background: #5fb8b0;
    color: #1a3d4e;
    border-color: #5fb8b0;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-nav-link {
    color: #8899aa;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: #5fb8b0;
}

.footer-anpc-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anpc-badge img {
    border-radius: 8px;
    transition: opacity 0.2s;
}

.anpc-badge:hover img {
    opacity: 0.8;
}

.footer-payment-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    background: #fff;
    color: #1a3d4e;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.pay-badge.pay-mc {
    background: linear-gradient(135deg, #eb001b, #ff5f00);
    color: #fff;
    font-size: 16px;
    padding: 6px 14px;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #8899aa;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}

.report-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #c5cdd9;
}

.report-icon {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #5a6b7f;
}

.footer-bottom strong {
    color: #8899aa;
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px 30px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 30px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* =====================================================
   FOOTER - Dark/Gold Overrides
   ===================================================== */

.medhack-body .site-footer {
    background: var(--mh-dark-2);
    border-top: 1px solid var(--mh-border);
}

.medhack-body .footer-main {
    border-bottom-color: var(--mh-border);
}

.medhack-body .footer-tagline {
    color: var(--mh-text-muted);
}

.medhack-body .footer-col-title {
    color: var(--mh-gold);
}

.medhack-body .footer-nav-link {
    color: var(--mh-text-muted);
}

.medhack-body .footer-nav-link:hover {
    color: var(--mh-gold);
}

.medhack-body .footer-contact-link {
    color: var(--mh-text-muted);
}

.medhack-body .footer-contact-link:hover {
    color: var(--mh-gold);
}

.medhack-body .social-icon {
    background: var(--mh-card-bg);
    border-color: var(--mh-border);
    color: var(--mh-text-muted);
}

.medhack-body .social-icon:hover {
    background: var(--mh-gold);
    border-color: var(--mh-gold);
    color: var(--mh-dark);
}

.medhack-body .pay-badge {
    background: var(--mh-card-bg);
    border-color: var(--mh-border);
    color: var(--mh-text-muted);
}

.medhack-body .report-btn {
    color: var(--mh-text-muted);
}

.medhack-body .report-btn:hover {
    color: var(--mh-gold);
}

.medhack-body .footer-bottom {
    background: var(--mh-dark);
    color: var(--mh-text-muted);
}

.medhack-body .footer-bottom strong {
    color: var(--mh-gold);
}

/* =====================================================
   AUTH MODAL - Base Styles
   ===================================================== */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 61, 78, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 44px 40px 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(45, 96, 120, 0.08);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0) scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: #8a9ba5;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background: #f0f2f3;
    color: #1a3d4e;
}

.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
    animation: authFadeIn 0.3s ease;
}

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

.auth-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b8a8e;
    font-weight: 400;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-field label {
    font-size: 13px;
    font-weight: 600;
    color: #2d6078;
    letter-spacing: 0.01em;
}

.auth-field input {
    padding: 12px 16px;
    border: 1.5px solid #dde4e7;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a3d4e;
    background: #f8fafb;
    transition: all 0.2s ease;
    outline: none;
}

.auth-field input::placeholder {
    color: #a0b3ba;
}

.auth-field input:focus {
    border-color: #2d6078;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 96, 120, 0.1);
}

.auth-btn {
    margin-top: 6px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #245266, #2d6078);
    box-shadow: 0 4px 16px rgba(45, 96, 120, 0.3);
    transform: translateY(-1px);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-links {
    margin-top: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-switch-text {
    font-size: 14px;
    color: #6b8a8e;
}

.auth-switch-btn {
    background: none;
    border: none;
    color: #2d6078;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
    padding: 0;
}

.auth-switch-btn:hover {
    color: #5fb8b0;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-modal {
        max-width: 100%;
        margin: 12px;
        padding: 36px 24px 28px;
        border-radius: 16px;
    }

    .auth-title {
        font-size: 20px;
    }
}

/* =====================================================
   AUTH MODAL - Dark/Gold Overrides
   ===================================================== */

.medhack-body .auth-modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.medhack-body .auth-modal {
    background: var(--mh-dark-2);
    border: 1px solid var(--mh-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.medhack-body .auth-title {
    color: #fff;
}

.medhack-body .auth-subtitle {
    color: var(--mh-text-muted);
}

.medhack-body .auth-field label {
    color: var(--mh-text);
}

.medhack-body .auth-field input {
    background: var(--mh-dark);
    border-color: var(--mh-border);
    color: #fff;
}

.medhack-body .auth-field input:focus {
    border-color: var(--mh-gold);
}

.medhack-body .auth-btn {
    background: linear-gradient(135deg, var(--mh-gold), var(--mh-gold-dark));
    color: var(--mh-dark);
}

.medhack-body .auth-switch-btn {
    color: var(--mh-gold);
}

.medhack-body .auth-switch-text {
    color: var(--mh-text-muted);
}

.medhack-body .auth-modal-close {
    color: var(--mh-text-muted);
}

.medhack-body .auth-modal-close:hover {
    background: rgba(200, 155, 94, 0.1);
    color: var(--mh-gold);
}

.medhack-body .auth-btn:hover {
    background: linear-gradient(135deg, var(--mh-gold-dark), var(--mh-copper));
    box-shadow: 0 4px 16px rgba(200, 155, 94, 0.3);
}

.medhack-body .auth-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.medhack-body .auth-field input:focus {
    box-shadow: 0 0 0 3px rgba(200, 155, 94, 0.15);
}

/* =====================================================
   HEADER - Override for dark/gold theme
   ===================================================== */

.medhack-body .header {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mh-border);
}

.medhack-body .nav-link {
    color: var(--mh-text-muted);
}

.medhack-body .nav-link:hover {
    color: var(--mh-gold);
}

.medhack-body .btn-login {
    color: var(--mh-gold);
    border-color: var(--mh-gold);
}

.medhack-body .btn-login:hover {
    background: var(--mh-gold);
    color: var(--mh-dark);
}

.medhack-body .hamburger span {
    background: var(--mh-gold);
}

/* Mobile nav-menu dark overrides */
@media (max-width: 968px) {
    .medhack-body .nav-menu {
        background: var(--mh-dark-2);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    }

    .medhack-body .nav-menu li {
        border-bottom-color: var(--mh-border);
    }

    .medhack-body .nav-menu .nav-link {
        color: var(--mh-text);
    }

    .medhack-body .nav-menu .nav-link:hover,
    .medhack-body .nav-menu .nav-link.active {
        background: rgba(200, 155, 94, 0.1);
        color: var(--mh-gold);
    }

    .medhack-body .nav-menu .nav-link.active {
        border-left-color: var(--mh-gold);
    }

    .medhack-body .mobile-menu-overlay.active {
        background: rgba(0, 0, 0, 0.6);
    }

    .medhack-body .mobile-profile-divider {
        border-bottom-color: var(--mh-border) !important;
    }

    .medhack-body .mobile-logout-link {
        color: #e74c3c !important;
    }

    /* Profile dropdown dark */
    .medhack-body .profile-dropdown-menu {
        background: var(--mh-dark-2);
        border: 1px solid var(--mh-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .medhack-body .dropdown-item {
        color: var(--mh-text);
    }

    .medhack-body .dropdown-item:hover {
        background: rgba(200, 155, 94, 0.1);
        color: var(--mh-gold);
    }

    .medhack-body .dropdown-divider {
        border-color: var(--mh-border);
    }

    .medhack-body .dropdown-item-logout {
        color: #e74c3c;
    }

    .medhack-body .btn-profile {
        color: var(--mh-gold);
        border-color: var(--mh-gold);
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 968px) {
    .mh-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .mh-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mh-hero-title {
        font-size: 52px;
    }

    .mh-hero-subtitle {
        margin: 0 auto 32px;
    }

    .mh-hero-actions {
        justify-content: center;
    }

    .mh-hero-stats {
        justify-content: center;
    }

    .mh-hero-visual {
        order: -1;
    }

    .mh-hero-visual img {
        width: 100% !important;
        max-width: 420px;
        height: auto;
    }

    .mh-device-laptop {
        width: 320px;
    }

    .mh-grile-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mh-grile-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh-grile-visual {
        position: static;
        display: flex;
        justify-content: center;
        margin-left: 0;
    }

    .mh-grile-image,
    .mh-feature-image {
        max-width: 100% !important;
        height: auto !important;
    }

    .mh-feature-row,
    .mh-feature-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .mh-feature-text {
        text-align: center;
    }

    .mh-feature-title {
        font-size: 30px;
    }

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

    .mh-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .mh-price-old {
        position: static !important;
        right: auto !important;
    }

    .mh-section-title {
        font-size: 34px;
    }

    .mh-advantage-title {
        font-size: 36px;
    }

    .mh-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .mh-hero {
        height: auto;
        min-height: unset;
        padding-top: 90px;
        padding-bottom: 48px;
    }

    .mh-hero-inner {
        padding: 0 20px;
        gap: 32px;
    }

    .mh-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .mh-hero-pre {
        font-size: 13px;
    }

    .mh-hero-subtitle {
        font-size: 15px;
    }

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

    .mh-btn-primary,
    .mh-btn-outline {
        padding: 13px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .mh-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .mh-stat-number {
        font-size: 22px;
    }

    .mh-hero-visual img {
        max-width: 300px;
    }

    .mh-device-laptop {
        width: 260px;
    }

    .mh-device-phone {
        width: 110px;
        right: -10px;
        bottom: -20px;
    }

    .mh-section-container {
        padding: 0 20px;
    }

    .mh-grile-section,
    .mh-features-alt,
    .mh-features-grid-section,
    .mh-pricing,
    .mh-faq {
        padding: 64px 0;
    }

    .mh-grile-cards {
        grid-template-columns: 1fr;
    }

    .mh-section-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .mh-visual-circle {
        width: 260px;
        height: 260px;
    }

    .mh-circle-inner {
        width: 160px;
    }

    .mh-features-grid {
        grid-template-columns: 1fr;
    }

    .mh-feature-row {
        gap: 32px;
        margin-bottom: 64px;
    }

    .mh-advantage-banner {
        padding: 64px 0;
    }

    .mh-advantage-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .mh-cta {
        padding: 80px 0;
    }

    .mh-cta-title {
        font-size: 26px;
    }

    .mh-cta-desc {
        font-size: 15px;
    }

    .mh-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .mh-faq-answer {
        font-size: 14px;
    }

    .mh-faq-item.active .mh-faq-answer {
        padding: 0 20px 20px;
    }

    .mh-plan-card {
        padding: 32px 24px;
    }

    .mh-price-amount {
        font-size: 40px;
    }
}
