/* Samsung Majestic Style - Auto-themed */
/* Unique class prefix: sm- (Samsung Majestic) */

:root {
    --ogeh-royal: #0c205d;
    --ogeh-navy: #0a1e0f;
    --ogeh-accent: #35cd9f;
    --ogeh-gold: #2bdb9b;
    --ogeh-gold-bright: #f5c50f;
    --ogeh-white: #ffffff;
    --ogeh-light: #f8f9fc;
    --ogeh-gray: #626875;
    --ogeh-text: #133017;
    --ogeh-border: #d3c5f5;
    --ogeh-success: #0ab494;
    --ogeh-danger: #d2262c;
    --ogeh-gradient-royal: linear-gradient(135deg, #0a1d57 0%, #213f9e 50%, #0a2562 100%);
    --ogeh-gradient-gold: linear-gradient(135deg, #f5b437 0%, #db841d 50%, #f5b241 100%);
    --ogeh-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --ogeh-shadow-hover: 0 16px 48px rgba(10,32,98,0.18);
    --ogeh-radius: 10px;
    --ogeh-radius-lg: 17px;
    --ogeh-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: var(--ogeh-text);
    background: var(--ogeh-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.ogeh-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 26px;
}

/* ========== Phone CTA Banner ========== */
.ogeh-phone-banner {
    background: var(--ogeh-gradient-royal);
    padding: 19px 0;
    position: relative;
    overflow: hidden;
}

.ogeh-phone-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ogeh-phone-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ogeh-phone-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.ogeh-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ogeh-gradient-gold);
    color: var(--ogeh-royal);
    padding: 9px 28px;
    border-radius: 53px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--ogeh-transition);
    box-shadow: 0 4px 20px rgba(238,178,61,0.4);
}

.ogeh-phone-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(239,184,53,0.5);
}

.ogeh-phone-icon {
    width: 22px;
    height: 22px;
    animation: sm-ring 1.5s ease-in-out infinite;
}

@keyframes sm-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* ========== Header ========== */
.ogeh-header {
    background: var(--ogeh-white);
    border-bottom: 1px solid var(--ogeh-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(17px);
}

.ogeh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 0;
}

.ogeh-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--ogeh-royal);
}

.ogeh-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--ogeh-gradient-royal);
    border-radius: var(--ogeh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ogeh-logo-mark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    animation: sm-shine 3s infinite;
}

@keyframes sm-shine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.ogeh-logo-mark svg {
    width: 26px;
    height: 26px;
    fill: var(--ogeh-accent);
    position: relative;
    z-index: 1;
}

.ogeh-logo-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.ogeh-logo-name span {
    color: var(--ogeh-gold);
}

.ogeh-nav {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ogeh-nav-item {
    color: var(--ogeh-text);
    text-decoration: none;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 8px;
    transition: var(--ogeh-transition);
    position: relative;
}

.ogeh-nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 3px;
    background: var(--ogeh-accent);
    border-radius: 3px;
    transition: var(--ogeh-transition);
}

.ogeh-nav-item:hover {
    color: var(--ogeh-royal);
    background: var(--ogeh-light);
}

.ogeh-nav-item:hover::after,
.ogeh-nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.ogeh-nav-item.active {
    color: var(--ogeh-royal);
}

.ogeh-header-btn {
    background: var(--ogeh-gradient-royal);
    color: var(--ogeh-white);
    padding: 11px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--ogeh-transition);
    border: none;
    cursor: pointer;
}

.ogeh-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--ogeh-shadow);
}

/* Burger Menu */
.ogeh-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
    z-index: 1001;
}

.ogeh-burger-line {
    width: 26px;
    height: 3px;
    background: var(--ogeh-royal);
    border-radius: 3px;
    transition: var(--ogeh-transition);
}

.ogeh-burger.active .ogeh-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ogeh-burger.active .ogeh-burger-line:nth-child(2) {
    opacity: 0;
}

.ogeh-burger.active .ogeh-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.ogeh-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ogeh-white);
    z-index: 999;
    padding: 100px 31px 39px;
    flex-direction: column;
    gap: 10px;
}

.ogeh-mobile-menu.active {
    display: flex;
}

.ogeh-mobile-link {
    display: block;
    padding: 13px 20px;
    color: var(--ogeh-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: var(--ogeh-radius);
    transition: var(--ogeh-transition);
}

.ogeh-mobile-link:hover {
    background: var(--ogeh-light);
    color: var(--ogeh-royal);
}

/* ========== Hero Section ========== */
.ogeh-hero {
    background: var(--ogeh-gradient-royal);
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.ogeh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(241,181,54,0.15) 0%, transparent 60%);
}

.ogeh-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.ogeh-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.ogeh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 11px 25px;
    border-radius: 49px;
    color: var(--ogeh-accent);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 28px;
}

.ogeh-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--ogeh-white);
    line-height: 1.2;
    margin-bottom: 22px;
    text-shadow: 0 3px 23px rgba(0, 0, 0, 0.2);
}

.ogeh-hero-title span {
    color: var(--ogeh-accent);
}

.ogeh-hero-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 42px;
    line-height: 1.7;
}

.ogeh-hero-actions {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
}

.ogeh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 19px 34px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: var(--ogeh-transition);
    border: none;
    cursor: pointer;
}

.ogeh-btn-gold {
    background: var(--ogeh-gradient-gold);
    color: var(--ogeh-royal);
    box-shadow: 0 6px 24px rgba(245,187,57,0.4);
}

.ogeh-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(245,177,66,0.5);
}

.ogeh-btn-outline {
    background: transparent;
    color: var(--ogeh-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.ogeh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ========== Countdown Timer ========== */
.ogeh-countdown-section {
    background: var(--ogeh-light);
    padding: 49px 0;
    border-bottom: 2px solid var(--ogeh-border);
}

.ogeh-countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 39px;
    flex-wrap: wrap;
}

.ogeh-countdown-label {
    font-size: 17px;
    font-weight: 600;
    color: var(--ogeh-royal);
}

.ogeh-countdown-label span {
    color: var(--ogeh-gold);
}

.ogeh-countdown-timer {
    display: flex;
    gap: 9px;
}

.ogeh-countdown-unit {
    background: var(--ogeh-white);
    border: 2px solid var(--ogeh-royal);
    border-radius: var(--ogeh-radius);
    padding: 19px 18px;
    min-width: 81px;
    text-align: center;
    box-shadow: var(--ogeh-shadow);
}

.ogeh-countdown-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--ogeh-royal);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.ogeh-countdown-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ogeh-gray);
    margin-top: 5px;
}

.ogeh-countdown-cta {
    background: var(--ogeh-gradient-gold);
    color: var(--ogeh-royal);
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--ogeh-transition);
}

.ogeh-countdown-cta:hover {
    transform: scale(1.05);
}

/* ========== Companies Section ========== */
.ogeh-companies {
    padding: 83px 0;
}

.ogeh-section-head {
    text-align: center;
    margin-bottom: 49px;
}

.ogeh-section-tag {
    display: inline-block;
    background: var(--ogeh-light);
    color: var(--ogeh-royal);
    padding: 10px 17px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 17px;
    border: 2px solid var(--ogeh-border);
}

.ogeh-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ogeh-royal);
    margin-bottom: 16px;
}

.ogeh-section-subtitle {
    font-size: 17px;
    color: var(--ogeh-gray);
    max-width: 600px;
    margin: 0 auto;
}

.ogeh-companies-grid {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.ogeh-company-card {
    display: grid;
    grid-template-columns: auto 120px 1fr auto auto;
    align-items: center;
    gap: 29px;
    padding: 31px 31px;
    background: var(--ogeh-white);
    border: 2px solid var(--ogeh-border);
    border-radius: var(--ogeh-radius-lg);
    transition: var(--ogeh-transition);
}

.ogeh-company-card:hover {
    border-color: var(--ogeh-accent);
    box-shadow: var(--ogeh-shadow);
    transform: translateX(4px);
}

.ogeh-company-card.featured {
    background: var(--ogeh-gradient-royal);
    border-color: var(--ogeh-royal);
}

.ogeh-company-card.featured .ogeh-company-name,
.ogeh-company-card.featured .ogeh-company-tagline,
.ogeh-company-card.featured .ogeh-company-meta {
    color: var(--ogeh-white);
}

.ogeh-company-card.featured .ogeh-company-tagline,
.ogeh-company-card.featured .ogeh-company-meta {
    opacity: 0.85;
}

.ogeh-company-rank {
    width: 50px;
    height: 50px;
    background: var(--ogeh-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: var(--ogeh-royal);
}

.ogeh-company-card.featured .ogeh-company-rank {
    background: var(--ogeh-gradient-gold);
    color: var(--ogeh-royal);
}

.ogeh-company-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    background: var(--ogeh-white);
    padding: 7px;
    border-radius: 10px;
}

.ogeh-company-info {
    flex: 1;
}

.ogeh-company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ogeh-text);
    margin-bottom: 4px;
}

.ogeh-company-tagline {
    font-size: 14px;
    color: var(--ogeh-gray);
}

.ogeh-company-meta {
    font-size: 13px;
    color: var(--ogeh-gray);
    text-align: right;
}

.ogeh-company-rating {
    color: var(--ogeh-accent);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ogeh-company-card.featured .ogeh-company-rating {
    color: var(--ogeh-accent);
}

.ogeh-company-btn {
    background: var(--ogeh-gradient-gold);
    color: var(--ogeh-royal);
    padding: 13px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--ogeh-transition);
    white-space: nowrap;
}

.ogeh-company-btn:hover {
    transform: scale(1.05);
}

.ogeh-company-card.featured .ogeh-company-btn {
    background: var(--ogeh-white);
    color: var(--ogeh-royal);
}

/* ========== Quick Facts Box ========== */
.ogeh-facts {
    padding: 83px 0;
    background: var(--ogeh-light);
}

.ogeh-facts-box {
    background: var(--ogeh-white);
    border-radius: var(--ogeh-radius-lg);
    overflow: hidden;
    box-shadow: var(--ogeh-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.ogeh-facts-header {
    background: var(--ogeh-gradient-royal);
    padding: 29px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ogeh-facts-icon {
    width: 54px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--ogeh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ogeh-facts-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--ogeh-accent);
}

.ogeh-facts-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ogeh-white);
}

.ogeh-facts-body {
    padding: 0;
}

.ogeh-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 35px;
    border-bottom: 1px solid var(--ogeh-border);
    transition: var(--ogeh-transition);
}

.ogeh-fact-row:last-child {
    border-bottom: none;
}

.ogeh-fact-row:hover {
    background: var(--ogeh-light);
}

.ogeh-fact-row.highlight {
    background: linear-gradient(90deg, rgba(245,192,60,0.1) 0%, transparent 100%);
    border-left: 4px solid var(--ogeh-accent);
}

.ogeh-fact-label {
    font-size: 15px;
    color: var(--ogeh-gray);
    font-weight: 500;
}

.ogeh-fact-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--ogeh-royal);
}

.ogeh-fact-row.highlight .ogeh-fact-value {
    color: var(--ogeh-gold);
}

.ogeh-facts-footer {
    padding: 27px 30px;
    background: var(--ogeh-light);
}

.ogeh-facts-cta {
    display: block;
    width: 100%;
    padding: 17px;
    background: var(--ogeh-gradient-royal);
    color: var(--ogeh-white);
    text-align: center;
    text-decoration: none;
    border-radius: var(--ogeh-radius);
    font-weight: 700;
    font-size: 19px;
    transition: var(--ogeh-transition);
}

.ogeh-facts-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--ogeh-shadow);
}

/* ========== Content Section ========== */
.ogeh-content {
    padding: 82px 0;
}

.ogeh-article {
    max-width: 780px;
    margin: 0 auto;
}

.ogeh-article h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--ogeh-royal);
    margin: 59px 0 22px;
    padding-bottom: 17px;
    border-bottom: 4px solid var(--ogeh-accent);
}

.ogeh-article h2:first-of-type {
    margin-top: 0;
}

.ogeh-article h3 {
    font-size: 23px;
    font-weight: 700;
    color: var(--ogeh-text);
    margin: 42px 0 13px;
}

.ogeh-article p {
    margin-bottom: 20px;
    line-height: 1.85;
    color: var(--ogeh-text);
    font-size: 17px;
}

.ogeh-article ul, .ogeh-article ol {
    margin: 22px 0;
    padding-left: 29px;
}

.ogeh-article li {
    margin-bottom: 17px;
    line-height: 1.75;
    color: var(--ogeh-text);
}

.ogeh-article li::marker {
    color: var(--ogeh-accent);
}

.ogeh-article strong {
    color: var(--ogeh-royal);
}

/* Article Images */
.ogeh-article-img {
    margin: 47px 0;
    border-radius: var(--ogeh-radius-lg);
    overflow: hidden;
    box-shadow: var(--ogeh-shadow);
}

.ogeh-article-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--ogeh-transition);
}

.ogeh-article-img:hover img {
    transform: scale(1.02);
}

/* ========== FAQ Accordion ========== */
.ogeh-faq {
    padding: 82px 0;
    background: var(--ogeh-light);
}

.ogeh-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ogeh-faq-item {
    background: var(--ogeh-white);
    border: 2px solid var(--ogeh-border);
    border-radius: var(--ogeh-radius);
    overflow: hidden;
    transition: var(--ogeh-transition);
}

.ogeh-faq-item:hover {
    border-color: var(--ogeh-royal);
}

.ogeh-faq-item.active {
    border-color: var(--ogeh-accent);
    box-shadow: var(--ogeh-shadow);
}

.ogeh-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 25px 31px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--ogeh-transition);
}

.ogeh-faq-question:hover {
    background: var(--ogeh-light);
}

.ogeh-faq-q-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--ogeh-royal);
}

.ogeh-faq-icon {
    width: 36px;
    height: 36px;
    background: var(--ogeh-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--ogeh-transition);
}

.ogeh-faq-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--ogeh-royal);
    transition: var(--ogeh-transition);
}

.ogeh-faq-item.active .ogeh-faq-icon {
    background: var(--ogeh-gradient-gold);
    transform: rotate(180deg);
}

.ogeh-faq-item.active .ogeh-faq-icon svg {
    fill: var(--ogeh-royal);
}

.ogeh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ogeh-faq-item.active .ogeh-faq-answer {
    max-height: 600px;
}

.ogeh-faq-a-content {
    padding: 0 29px 27px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ogeh-text);
}

/* ========== Footer ========== */
.ogeh-footer {
    background: var(--ogeh-gradient-royal);
    color: rgba(255, 255, 255, 0.8);
    padding: 72px 0 37px;
    position: relative;
}

.ogeh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ogeh-gradient-gold);
}

.ogeh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 51px;
    padding-bottom: 46px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 35px;
}

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

.ogeh-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ogeh-white);
    font-size: 17px;
    font-weight: 700;
}

.ogeh-footer-logo span {
    color: var(--ogeh-accent);
}

.ogeh-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.ogeh-footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogeh-white);
    margin-bottom: 18px;
}

.ogeh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ogeh-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--ogeh-transition);
}

.ogeh-footer-link:hover {
    color: var(--ogeh-accent);
    transform: translateX(4px);
}

.ogeh-footer-disclaimer {
    padding: 26px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--ogeh-radius);
    margin-bottom: 21px;
}

.ogeh-footer-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.ogeh-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .ogeh-company-card {
        grid-template-columns: auto 100px 1fr auto;
    }

    .ogeh-company-meta {
        display: none;
    }

    .ogeh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ogeh-header { position: relative !important; }
    .ogeh-burger {
        display: flex;
    }

    .ogeh-nav, .ogeh-header-btn {
        display: none;
    }

    .ogeh-hero-title {
        font-size: 36px;
    }

    .ogeh-hero-desc {
        font-size: 16px;
    }

    .ogeh-countdown-inner {
        flex-direction: column;
        gap: 21px;
    }

    .ogeh-countdown-unit {
        min-width: 70px;
        padding: 15px 14px;
    }

    .ogeh-countdown-num {
        font-size: 26px;
    }

    .ogeh-company-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 19px;
    }

    .ogeh-company-rank {
        margin: 0 auto;
    }

    .ogeh-company-logo {
        margin: 0 auto;
    }

    .ogeh-company-meta {
        display: block;
        text-align: center;
    }

    .ogeh-section-title {
        font-size: 30px;
    }

    .ogeh-article h2 {
        font-size: 26px;
    }

    .ogeh-footer-grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .ogeh-phone-inner {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .ogeh-wrap {
        padding: 0 18px;
    }

    .ogeh-hero {
        padding: 61px 0 83px;
    }

    .ogeh-hero-title {
        font-size: 30px;
    }

    .ogeh-btn {
        width: 100%;
        justify-content: center;
    }

    .ogeh-countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ogeh-facts-header,
    .ogeh-fact-row,
    .ogeh-facts-footer {
        padding-left: 22px;
        padding-right: 17px;
    }

    .ogeh-faq-question {
        padding: 20px;
    }

    .ogeh-faq-a-content {
        padding: 0 23px 18px;
    }
}

/* ========================================
   Companies Comparison Table - Majestic Tech Style
   ======================================== */
.ogeh-comparison-section {
    padding: 86px 0;
    background: linear-gradient(180deg, var(--ogeh-gray-100) 0%, var(--ogeh-white) 100%);
}

.ogeh-comparison-header {
    text-align: center;
    margin-bottom: 55px;
}

.ogeh-comparison-chip-tech {
    display: inline-block;
    padding: 8px 22px;
    background: var(--ogeh-blue);
    color: var(--ogeh-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 23px;
    margin-bottom: 16px;
}

.ogeh-comparison-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--ogeh-navy);
    margin-bottom: 17px;
}

.ogeh-comparison-subtitle {
    font-size: 16px;
    color: var(--ogeh-gray-600);
    max-width: 650px;
    margin: 0 auto;
}

.ogeh-comparison-table {
    width: 100%;
    background: var(--ogeh-white);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 39px rgba(0,0,0,0.08);
}

.ogeh-comparison-table thead {
    background: linear-gradient(135deg, var(--ogeh-blue) 0%, var(--ogeh-navy) 100%);
}

.ogeh-comparison-table th {
    padding: 20px 25px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ogeh-white);
}

.ogeh-comparison-table td {
    padding: 26px;
    border-bottom: 1px solid var(--ogeh-gray-100);
    font-size: 14px;
    color: var(--ogeh-gray-700);
}

.ogeh-comparison-table tbody tr:hover {
    background: var(--ogeh-gray-50);
}

.ogeh-company-cell {
    display: flex;
    align-items: center;
    gap: 19px;
}

.ogeh-company-galaxy {
    width: 52px;
    height: 54px;
    background: linear-gradient(135deg, var(--ogeh-blue) 0%, var(--ogeh-navy) 100%);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ogeh-company-galaxy img {
    max-width: 34px;
    max-height: 34px;
    filter: brightness(0) invert(1);
}

.ogeh-company-tech h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogeh-navy);
}

.ogeh-company-tech span {
    font-size: 12px;
    color: var(--ogeh-gray-500);
}

.ogeh-rating-galaxy {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 6px 17px;
    background: var(--ogeh-blue);
    color: var(--ogeh-white);
    border-radius: 23px;
    font-size: 14px;
    font-weight: 700;
}

.ogeh-feature-galaxy {
    display: inline-block;
    padding: 9px 11px;
    background: var(--ogeh-gray-100);
    border-radius: 20px;
    color: var(--ogeh-navy);
    font-size: 15px;
    font-weight: 600;
}

.ogeh-btn-galaxy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 31px;
    background: linear-gradient(135deg, var(--ogeh-blue) 0%, var(--ogeh-navy) 100%);
    color: var(--ogeh-white);
    text-decoration: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.ogeh-btn-galaxy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ogeh-comparison-cards { display: none; }

.ogeh-company-card {
    background: var(--ogeh-white);
    border-radius: 16px;
    padding: 29px;
    margin-bottom: 21px;
    box-shadow: 0 3px 26px rgba(0,0,0,0.06);
}

.ogeh-card-galaxy {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--ogeh-gray-100);
}

.ogeh-card-icon-galaxy {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, var(--ogeh-blue) 0%, var(--ogeh-navy) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ogeh-card-name-tech h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ogeh-navy);
}

.ogeh-card-specs-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 24px;
}

.ogeh-card-spec-tech {
    padding: 19px;
    background: var(--ogeh-gray-50);
    border-radius: 10px;
}

.ogeh-card-spec-label-tech {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--ogeh-gray-500);
    margin-bottom: 4px;
}

.ogeh-card-spec-value-tech {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogeh-navy);
}

.ogeh-card-cta-tech {
    display: block;
    text-align: center;
    padding: 13px;
    background: linear-gradient(135deg, var(--ogeh-blue) 0%, var(--ogeh-navy) 100%);
    color: var(--ogeh-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
}

.ogeh-card-cta-tech:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
    .ogeh-comparison-table { display: none; }
    .ogeh-comparison-cards { display: block; }
    .ogeh-comparison-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .ogeh-comparison-section { padding: 58px 0; }
    .ogeh-card-specs-tech { grid-template-columns: 1fr; }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .ogeh-companies-section .ogeh-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .ogeh-companies-section table.ogeh-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .ogeh-companies-section .ogeh-companies-table thead {
        display: none !important;
    }

    .ogeh-companies-section .ogeh-companies-table tbody,
    .ogeh-companies-section .ogeh-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .ogeh-companies-section .ogeh-companies-table tbody tr.ogeh-company-row {
        background: #fff !important;
        margin-bottom: 20px !important;
        border-radius: 19px !important;
        box-shadow: 0 3px 25px rgba(95,33,39,0.1) !important;
        padding: 23px !important;
        border: 1px solid rgba(88,23,47,0.08);
    }

    .ogeh-companies-section .ogeh-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .ogeh-companies-section .ogeh-companies-table td:last-child {
        border-bottom: none !important;
    }

    .ogeh-companies-section .ogeh-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #5d1f2c !important;
        flex-shrink: 0 !important;
        margin-right: 15px !important;
        font-size: 0.85rem !important;
    }

    .ogeh-companies-section .ogeh-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 19px !important;
        border-bottom: 1px solid #ede1cc !important;
    }

    .ogeh-companies-section .ogeh-td-company::before {
        display: none !important;
    }

    .ogeh-companies-section .ogeh-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .ogeh-companies-section .ogeh-td-rank::before {
        display: none !important;
    }

    .ogeh-companies-section .ogeh-td-action {
        flex-direction: column !important;
        padding-top: 17px !important;
        border-top: 3px solid #f5e5db !important;
        border-bottom: none !important;
    }

    .ogeh-companies-section .ogeh-td-action::before {
        display: none !important;
    }

    .ogeh-companies-section .ogeh-td-action .ogeh-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 13px 26px !important;
        font-size: 1rem !important;
    }
}

/* Hamburger Menu Styles */
.ogeh-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.ogeh-menu-line {
    width: 27px;
    height: 3px;
    background: var(--ogeh-text, #2b304b);
    border-radius: 3px;
    transition: 0.3s;
}

.ogeh-menu-toggle.active .ogeh-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.ogeh-menu-toggle.active .ogeh-menu-line:nth-child(2) {
    opacity: 0;
}

.ogeh-menu-toggle.active .ogeh-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .ogeh-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.ogeh-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ogeh-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .ogeh-nav {
        display: none !important;
    }

    .ogeh-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.ogeh-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 13px 24px;
    border-top: 2px solid #eee;
}

.ogeh-mobile-nav.active {
    display: flex;
}

.ogeh-mobile-link {
    padding: 10px 0;
    color: var(--ogeh-text, #363e46);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.ogeh-mobile-link:last-child {
    border-bottom: none;
}

.ogeh-mobile-link:hover {
    color: var(--ogeh-accent, #f00a1b);
}


/* SVG Logo & Mobile Fixes */
.ogeh-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.ogeh-logo-text {
    display: inline !important;
    font-size: 15px;
    font-weight: 700;
    color: #163558;
}

@media screen and (max-width: 768px) {
    .ogeh-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .ogeh-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .ogeh-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ogeh-company-info {
        text-align: center !important;
    }

    .ogeh-company-name {
        text-align: center !important;
    }

    .ogeh-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.ogeh-wrapper, .ogeh-content, .ogeh-hero-inner, .ogeh-companies-container, 
.ogeh-article, .ogeh-container, .ogeh-footer-inner, .ogeh-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.ogeh-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.ogeh-td-action {
    text-align: center !important;
}
.ogeh-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}

/* === Get Free Kit Button & Table Width Fix === */
.ogeh-companies-table-wrapper {
    max-width: 1500px !important;
    margin: 0 auto;
}

.ogeh-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.ogeh-btn-primary {
    background: linear-gradient(135deg, #3acc8f 0%, #12bf86 100%);
    color: #0a2919 !important;
    padding: 15px 18px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 15px rgba(50,217,154,0.3);
}

.ogeh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51,207,147,0.4);
}

.ogeh-btn-review {
    background: transparent;
    color: var(--ogeh-accent, #37ce95) !important;
    border: 2px solid var(--ogeh-accent, #2ed190);
    padding: 13px 17px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 9px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.ogeh-btn-review:hover {
    background: var(--ogeh-accent, #34cb9f);
    color: #0a2e1a !important;
}

.ogeh-company-logo {
    width: 180px !important;
    max-width: 180px !important;
    height: auto;
}

@media (max-width: 768px) {
    .ogeh-action-buttons {
        flex-direction: row;
        gap: 7px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ogeh-btn-primary, .ogeh-btn-review {
        padding: 11px 11px;
        font-size: 13px;
    }
    .ogeh-company-logo {
        width: 45vw !important;
        max-width: 45vw !important;
    }
}

/* === Table Width Fix - Override constraints === */
.ogeh-main {
    max-width: 1540px !important;
}
.ogeh-container {
    max-width: 1540px !important;
}
.ogeh-section.ogeh-companies-section {
    max-width: 1500px !important;
    margin: 0 auto;
}
.ogeh-companies-table-wrapper {
    max-width: 1500px !important;
    width: 100% !important;
}
.ogeh-companies-table {
    width: 100% !important;
}
.ogeh-hero {
    max-width: 1540px !important;
    margin: 0 auto;
}
.ogeh-wrap {
    max-width: 1500px !important;
}

/* === Table Text Color Fix === */
.ogeh-companies-table tbody td {
    color: #1b1a17 !important;
    background: #fff !important;
}
.ogeh-companies-table tbody tr {
    background: #fff !important;
}
.ogeh-company-name {
    color: #111e13 !important;
}
.ogeh-company-badge {
    color: #fff !important;
    background: var(--ogeh-accent, #3bd1a1) !important;
}
.ogeh-rating-value {
    color: #18121d !important;
}
.ogeh-stars .ogeh-star {
    color: #f5a40a !important;
}
.ogeh-features-list li {
    color: #494a44 !important;
}
.ogeh-bbb-badge {
    color: #0a7c60 !important;
    background: #ccf5e0 !important;
}
.ogeh-td-rank {
    display: table-cell !important;
}
.ogeh-rank-badge {
    color: #fff !important;
    background: var(--ogeh-accent, #3acb8f) !important;
}

/* === Override design-overhaul.css === */
.ogeh-company-name {
    font-size: 16px !important;
    line-height: 1.4 !important;
    height: auto !important;
    overflow: visible !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    color: #16201f !important;
    font-weight: 600 !important;
}
.ogeh-company-logo {
    min-height: 50px !important;
    max-height: 70px !important;
    width: 150px !important;
}
.ogeh-companies-table tbody td {
    color: #121a1a !important;
    background: #fff !important;
    padding: 14px 13px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #e8e8e1 !important;
}
.ogeh-companies-table thead th {
    background: #133454 !important;
    color: #fff !important;
    padding: 13px 14px !important;
    font-weight: 600 !important;
}
.ogeh-td-rank {
    display: table-cell !important;
    width: 60px !important;
}
.ogeh-stars .ogeh-star-full, .ogeh-stars .ogeh-star-half {
    color: #f59511 !important;
}
.ogeh-stars .ogeh-star-empty {
    color: #c7dadd !important;
}
.ogeh-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.ogeh-features-list li {
    color: #4a5565 !important;
    font-size: 13px !important;
    padding: 3px 0 !important;
}
.ogeh-features-list li::before {
    content: "✓ " !important;
    color: #0abc7a !important;
}

/* === Action Buttons Visibility === */
.ogeh-td-action {
    min-width: 150px !important;
    padding: 13px !important;
}
.ogeh-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px !important;
    align-items: center !important;
}
.ogeh-btn-primary {
    display: inline-flex !important;
    background: linear-gradient(135deg, #11b689 0%, #0a8d6c 100%) !important;
    color: #fff !important;
    padding: 9px 18px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
}
.ogeh-btn-review {
    display: inline-flex !important;
    background: transparent !important;
    color: #18be7f !important;
    border: 2px solid #0ec27b !important;
    padding: 6px 15px !important;
    border-radius: 7px !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
}
.ogeh-btn-primary:hover {
    background: linear-gradient(135deg, #0e9972 0%, #0a7552 100%) !important;
    transform: translateY(-1px) !important;
}
.ogeh-btn-review:hover {
    background: #15b077 !important;
    color: #fff !important;
}

/* === FORCE Action Buttons to Show === */
.ogeh-companies-table .ogeh-td-action .ogeh-action-buttons,
.ogeh-companies-table .ogeh-action-buttons,
table .ogeh-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.ogeh-companies-table .ogeh-btn-primary,
.ogeh-companies-table .ogeh-td-action .ogeh-btn-primary,
table .ogeh-btn-primary,
a.ogeh-btn-primary {
    display: inline-block !important;
    width: auto !important;
    min-width: 100px !important;
    height: auto !important;
    min-height: 32px !important;
    padding: 8px 17px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #0cbe86 0%, #0b9f69 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.ogeh-companies-table .ogeh-btn-review,
.ogeh-companies-table .ogeh-td-action .ogeh-btn-review,
table .ogeh-btn-review,
a.ogeh-btn-review {
    display: inline-block !important;
    width: auto !important;
    min-width: 90px !important;
    height: auto !important;
    min-height: 28px !important;
    padding: 8px 17px !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    background: transparent !important;
    color: #12bc7d !important;
    border: 2px solid #0ab578 !important;
    text-decoration: none !important;
    border-radius: 7px !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

/* === CRITICAL FIX: Override hero button hiding === */
.ogeh-hero .ogeh-action-buttons,
.ogeh-companies-section .ogeh-action-buttons,
.ogeh-companies-table .ogeh-action-buttons,
[class*="-hero"] .ogeh-companies-table .ogeh-action-buttons,
[class*="-hero"] .ogeh-action-buttons,
div.ogeh-action-buttons {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
    flex-direction: column !important;
    gap: 7px !important;
    align-items: center !important;
}
