/* Louis Vuitton Rich Style - Auto-themed */
/* Unique prefix: akee- | Colors: Deep Brown, Champagne Gold, Ivory */

:root {
    --akee-primary: #0e2b16;
    --akee-secondary: #492519;
    --akee-accent: #52e379;
    --akee-gold: #48df88;
    --akee-gold-bright: #edc97d;
    --akee-gold-deep: #967937;
    --akee-cream: #faf7f2;
    --akee-ivory: #f5f0e8;
    --akee-white: #ffffff;
    --akee-text: #12300a;
    --akee-text-muted: #84681a;
    --akee-border: #f5dcc8;
    --akee-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --akee-shadow-deep: rgba(41,22,18,0.22);
    --akee-shadow-gold: rgba(196,164,84,0.35);
    --akee-success: #358045;
    --akee-error: #aa4538;
    --akee-radius-sm: 5px;
    --akee-radius-md: 9px;
    --akee-radius-lg: 12px;
    --akee-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    color: var(--akee-text);
    background: var(--akee-cream);
    background-image:
        linear-gradient(135deg, rgba(195,159,91,0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(38,21,10,0.02) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.akee-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Alert Banner - Component */
.akee-alert-strip {
    background: linear-gradient(90deg, var(--akee-primary) 0%, var(--akee-secondary) 50%, var(--akee-primary) 100%);
    color: var(--akee-gold-bright);
    padding: 16px 19px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.6px;
    position: relative;
    overflow: hidden;
}

.akee-alert-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193,171,90,0.15), transparent);
    animation: akee-alert-shine 4s infinite;
}

@keyframes akee-alert-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.akee-alert-strip strong {
    color: var(--akee-white);
    margin-right: 6px;
}

/* Header Styles */
.akee-masthead {
    background: var(--akee-white);
    border-bottom: 1px solid var(--akee-border);
    box-shadow: 0 2px 20px var(--akee-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.akee-masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.akee-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--akee-primary);
}

.akee-brand-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-accent) 50%, var(--akee-gold-deep) 100%);
    border-radius: var(--akee-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--akee-primary);
    box-shadow: 0 4px 15px var(--akee-shadow-gold);
    position: relative;
}

.akee-brand-mark::after {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.akee-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.akee-brand-name span {
    color: var(--akee-gold);
}

.akee-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.akee-nav-item {
    color: var(--akee-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 3px;
    position: relative;
    transition: color var(--akee-transition);
}

.akee-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--akee-gold), var(--akee-accent));
    transition: width var(--akee-transition);
}

.akee-nav-item:hover,
.akee-nav-item.current {
    color: var(--akee-gold);
}

.akee-nav-item:hover::after,
.akee-nav-item.current::after {
    width: 100%;
}

/* Phone CTA - Component */
.akee-phone-trigger {
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    padding: 15px 25px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 18px var(--akee-shadow-gold);
    transition: all var(--akee-transition);
}

.akee-phone-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--akee-shadow-gold);
}

.akee-phone-trigger svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.akee-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.akee-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--akee-primary);
    border-radius: 1px;
    transition: all var(--akee-transition);
}

.akee-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.akee-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.akee-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.akee-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--akee-white);
    border-top: 1px solid var(--akee-border);
    box-shadow: 0 10px 30px var(--akee-shadow-deep);
    padding: 19px;
}

.akee-mobile-menu.visible {
    display: block;
}

.akee-mobile-menu a {
    display: block;
    padding: 17px 0;
    color: var(--akee-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--akee-border);
}

.akee-mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.akee-showcase {
    background: linear-gradient(135deg, var(--akee-primary) 0%, var(--akee-secondary) 40%, #34261d 100%);
    color: var(--akee-white);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.akee-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(207,164,97,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(206,158,89,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.akee-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        60deg,
        transparent,
        transparent 80px,
        rgba(205,161,96,0.02) 80px,
        rgba(204,171,88,0.02) 160px
    );
    animation: akee-pattern-drift 30s linear infinite;
}

@keyframes akee-pattern-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.akee-showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.akee-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(203,157,95,0.15);
    border: 1px solid rgba(202,164,87,0.4);
    padding: 10px 23px;
    border-radius: 52px;
    font-size: 12px;
    font-weight: 600;
    color: var(--akee-gold-bright);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 31px;
}

.akee-showcase-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 29px 0;
    background: linear-gradient(135deg, var(--akee-white) 0%, var(--akee-gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.akee-showcase-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.akee-showcase-actions {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.akee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 35px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--akee-radius-md);
    transition: all var(--akee-transition);
    cursor: pointer;
    border: none;
}

.akee-btn-gold {
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    box-shadow: 0 6px 24px var(--akee-shadow-gold);
}

.akee-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--akee-shadow-gold);
}

.akee-btn-ghost {
    background: transparent;
    color: var(--akee-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

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

/* Guarantee Badge - Component */
.akee-guarantee-strip {
    background: var(--akee-ivory);
    padding: 23px 0;
    border-bottom: 1px solid var(--akee-border);
}

.akee-guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
}

.akee-guarantee-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--akee-shadow-gold);
}

.akee-guarantee-icon svg {
    width: 26px;
    height: 26px;
    color: var(--akee-primary);
}

.akee-guarantee-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--akee-primary);
}

.akee-guarantee-text span {
    color: var(--akee-gold);
}

/* Companies Section */
.akee-rankings {
    padding: 83px 0;
    background: var(--akee-white);
}

.akee-section-header {
    text-align: center;
    margin-bottom: 55px;
}

.akee-section-tag {
    display: inline-block;
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-accent) 100%);
    color: var(--akee-primary);
    padding: 5px 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.akee-section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--akee-primary);
    margin: 0 0 14px 0;
}

.akee-section-subtitle {
    font-size: 17px;
    color: var(--akee-text-muted);
}

.akee-company-grid {
    display: grid;
    gap: 22px;
}

.akee-company-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 29px 31px;
    background: var(--akee-cream);
    border-radius: var(--akee-radius-lg);
    border: 1px solid var(--akee-border);
    transition: all var(--akee-transition);
}

.akee-company-card:hover {
    border-color: var(--akee-gold);
    box-shadow: 0 8px 35px var(--akee-shadow);
    transform: translateY(-3px);
}

.akee-company-card.featured {
    background: linear-gradient(135deg, var(--akee-primary) 0%, var(--akee-secondary) 100%);
    border-color: var(--akee-gold);
    box-shadow: 0 12px 45px var(--akee-shadow-deep);
}

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

.akee-company-card.featured .akee-company-tagline,
.akee-company-card.featured .akee-company-meta {
    opacity: 0.8;
}

.akee-company-rank {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.akee-company-logo {
    width: 110px;
    height: auto;
    background: var(--akee-white);
    padding: 10px;
    border-radius: var(--akee-radius-sm);
    flex-shrink: 0;
}

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

.akee-company-name {
    font-weight: 700;
    font-size: 19px;
    color: var(--akee-primary);
    margin-bottom: 6px;
}

.akee-company-tagline {
    font-size: 14px;
    color: var(--akee-text-muted);
    margin-bottom: 11px;
}

.akee-company-meta {
    display: flex;
    gap: 19px;
    font-size: 11px;
    color: var(--akee-text-muted);
}

.akee-company-cta {
    flex-shrink: 0;
}

/* Content Section */
.akee-content-area {
    padding: 83px 0;
}

.akee-article {
    max-width: 840px;
    margin: 0 auto;
}

.akee-article h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--akee-primary);
    margin: 57px 0 25px 0;
    padding-bottom: 19px;
    border-bottom: 3px solid var(--akee-border);
    position: relative;
}

.akee-article h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--akee-gold), var(--akee-accent));
}

.akee-article h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--akee-primary);
    margin: 40px 0 17px 0;
}

.akee-article p {
    margin-bottom: 25px;
    line-height: 1.85;
    color: var(--akee-text);
}

.akee-article ul, .akee-article ol {
    margin: 27px 0;
    padding-left: 26px;
}

.akee-article li {
    margin-bottom: 17px;
    line-height: 1.75;
}

.akee-article li strong {
    color: var(--akee-primary);
}

.akee-article-img {
    margin: 45px 0;
    border-radius: var(--akee-radius-lg);
    overflow: hidden;
    box-shadow: 0 9px 47px var(--akee-shadow-deep);
    border: 3px solid var(--akee-border);
}

.akee-article-img img {
    width: 100%;
    height: auto;
    display: block;
}

.akee-article-img figcaption {
    padding: 17px 21px;
    background: var(--akee-ivory);
    font-size: 14px;
    color: var(--akee-text-muted);
    text-align: center;
}

/* FAQ Accordion */
.akee-faq-section {
    padding: 83px 0;
    background: var(--akee-ivory);
}

.akee-faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.akee-faq-entry {
    background: var(--akee-white);
    border-radius: var(--akee-radius-md);
    border: 1px solid var(--akee-border);
    margin-bottom: 18px;
    overflow: hidden;
    transition: all var(--akee-transition);
}

.akee-faq-entry:hover {
    border-color: var(--akee-gold);
}

.akee-faq-entry.expanded {
    border-color: var(--akee-gold);
    box-shadow: 0 6px 25px var(--akee-shadow);
}

.akee-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
    padding: 20px 29px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.akee-faq-trigger h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--akee-primary);
    margin: 0;
}

.akee-faq-arrow {
    width: 33px;
    height: 36px;
    background: var(--akee-ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--akee-transition);
    flex-shrink: 0;
}

.akee-faq-entry.expanded .akee-faq-arrow {
    background: var(--akee-gold);
    transform: rotate(180deg);
}

.akee-faq-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--akee-text-muted);
}

.akee-faq-entry.expanded .akee-faq-arrow svg {
    color: var(--akee-primary);
}

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

.akee-faq-entry.expanded .akee-faq-body {
    max-height: 800px;
}

.akee-faq-body-inner {
    padding: 0 24px 27px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--akee-text-muted);
}

/* Footer */
.akee-footer {
    background: linear-gradient(135deg, var(--akee-primary) 0%, #1a0e08 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 67px 0 37px;
    margin-top: 59px;
}

.akee-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--akee-gold), var(--akee-accent), var(--akee-gold));
    margin-top: -71px;
    margin-bottom: 68px;
}

.akee-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 53px;
    margin-bottom: 50px;
}

.akee-footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--akee-white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.akee-footer-brand span {
    color: var(--akee-gold);
}

.akee-footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.akee-footer-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--akee-white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.akee-footer-links {
    list-style: none;
}

.akee-footer-links li {
    margin-bottom: 12px;
}

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

.akee-footer-links a:hover {
    color: var(--akee-gold);
}

.akee-footer-disclaimer {
    padding: 28px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--akee-radius-md);
    margin-bottom: 29px;
}

.akee-footer-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.akee-footer-bottom {
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Form Styles */
.akee-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 42px;
}

.akee-contact-block {
    display: flex;
    gap: 20px;
    margin-bottom: 29px;
}

.akee-contact-icon {
    width: 55px;
    height: 52px;
    background: var(--akee-ivory);
    border-radius: var(--akee-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.akee-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--akee-gold);
}

.akee-contact-label {
    font-weight: 700;
    color: var(--akee-primary);
    margin-bottom: 4px;
}

.akee-contact-value {
    font-size: 11px;
    color: var(--akee-text-muted);
}

.akee-form-box {
    background: var(--akee-ivory);
    padding: 42px;
    border-radius: var(--akee-radius-lg);
}

.akee-form-row {
    margin-bottom: 21px;
}

.akee-form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--akee-primary);
    margin-bottom: 9px;
}

.akee-form-field,
.akee-form-dropdown,
.akee-form-textbox {
    width: 100%;
    padding: 12px 21px;
    border: 1px solid var(--akee-border);
    border-radius: var(--akee-radius-sm);
    font-family: inherit;
    font-size: 12px;
    background: var(--akee-white);
    transition: all var(--akee-transition);
}

.akee-form-field:focus,
.akee-form-dropdown:focus,
.akee-form-textbox:focus {
    outline: none;
    border-color: var(--akee-gold);
    box-shadow: 0 0 0 3px rgba(206,163,96,0.15);
}

.akee-form-textbox {
    resize: vertical;
    min-height: 130px;
}

.akee-form-submit {
    width: 100%;
    padding: 19px;
    background: linear-gradient(145deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    border: none;
    border-radius: var(--akee-radius-md);
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all var(--akee-transition);
}

.akee-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--akee-shadow-gold);
}

.akee-form-success {
    display: none;
    padding: 19px;
    background: #cae3d9;
    border: 2px solid #ccecc4;
    border-radius: var(--akee-radius-md);
    color: var(--akee-success);
    text-align: center;
    margin-top: 21px;
}

.akee-form-success.visible {
    display: block;
}

/* ============================================
   COMPANIES COMPARISON TABLE STYLES
   ============================================ */

.akee-companies-section {
    padding: 63px 0;
    background: var(--akee-cream);
}

.akee-companies-table-wrap {
    overflow-x: auto;
    margin: 0 -16px;
    padding: 0 13px;
}

.akee-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--akee-white);
    border-radius: var(--akee-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--akee-shadow);
    min-width: 900px;
}

.akee-companies-table thead {
    background: linear-gradient(135deg, var(--akee-primary) 0%, var(--akee-secondary) 100%);
    color: var(--akee-white);
}

.akee-companies-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.akee-companies-table th:first-child {
    padding-left: 22px;
}

.akee-companies-table td {
    padding: 23px 16px;
    border-bottom: 1px solid var(--akee-border);
    vertical-align: middle;
    font-size: 14px;
    color: var(--akee-text);
}

.akee-companies-table td:first-child {
    padding-left: 23px;
}

.akee-companies-table tbody tr:last-child td {
    border-bottom: none;
}

.akee-companies-table tbody tr:hover {
    background: var(--akee-ivory);
}

.akee-table-company {
    display: flex;
    align-items: center;
    gap: 18px;
}

.akee-table-rank {
    width: 33px;
    height: 32px;
    background: linear-gradient(135deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.akee-table-logo {
    width: 100px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.akee-table-name {
    font-weight: 600;
    color: var(--akee-primary);
    white-space: nowrap;
}

.akee-table-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.akee-table-stars {
    color: var(--akee-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.akee-table-score {
    font-weight: 600;
    color: var(--akee-primary);
}

.akee-table-highlight {
    display: inline-block;
    padding: 5px 8px;
    background: var(--akee-ivory);
    border-radius: 5px;
    font-size: 12px;
    color: var(--akee-text-muted);
}

.akee-table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 22px;
    background: linear-gradient(135deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    text-decoration: none;
    border-radius: var(--akee-radius-sm);
    font-weight: 600;
    font-size: 12px;
    transition: all var(--akee-transition);
    white-space: nowrap;
}

.akee-table-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--akee-shadow-gold);
}

/* Mobile Cards for Table */
.akee-companies-cards {
    display: none;
}

.akee-company-card-item {
    background: var(--akee-white);
    border-radius: var(--akee-radius-lg);
    padding: 27px;
    margin-bottom: 20px;
    box-shadow: 0 3px 17px var(--akee-shadow);
    border: 1px solid var(--akee-border);
}

.akee-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 21px;
    padding-bottom: 13px;
    border-bottom: 2px solid var(--akee-border);
}

.akee-card-rank {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.akee-card-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.akee-card-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--akee-primary);
}

.akee-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-bottom: 18px;
}

.akee-card-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.akee-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--akee-text-muted);
}

.akee-card-value {
    font-weight: 600;
    color: var(--akee-primary);
    font-size: 14px;
}

.akee-card-btn {
    display: block;
    width: 100%;
    padding: 13px 23px;
    background: linear-gradient(135deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    text-decoration: none;
    border-radius: var(--akee-radius-md);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all var(--akee-transition);
}

.akee-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--akee-shadow-gold);
}

/* ============================================
   REVIEW PAGE STYLES
   ============================================ */

.akee-review-hero {
    background: linear-gradient(135deg, var(--akee-primary) 0%, var(--akee-secondary) 100%);
    padding: 57px 0;
    color: var(--akee-white);
}

.akee-review-hero-content {
    display: flex;
    align-items: center;
    gap: 42px;
    max-width: 900px;
    margin: 0 auto;
}

.akee-review-logo {
    width: 150px;
    height: auto;
    background: var(--akee-white);
    padding: 21px;
    border-radius: var(--akee-radius-md);
    flex-shrink: 0;
}

.akee-review-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 13px 0;
}

.akee-review-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.akee-review-stats {
    display: flex;
    gap: 27px;
    margin-top: 22px;
}

.akee-review-stat {
    text-align: center;
}

.akee-review-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--akee-gold);
}

.akee-review-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.akee-review-content {
    padding: 58px 0;
}

.akee-review-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.akee-review-main {
    min-width: 0;
}

.akee-review-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.akee-review-cta-box {
    background: linear-gradient(135deg, var(--akee-primary) 0%, var(--akee-secondary) 100%);
    border-radius: var(--akee-radius-lg);
    padding: 29px;
    color: var(--akee-white);
    text-align: center;
}

.akee-review-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 11px 0;
}

.akee-review-cta-text {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 23px 0;
}

.akee-review-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 21px;
    background: linear-gradient(135deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    text-decoration: none;
    border-radius: var(--akee-radius-md);
    font-weight: 700;
    font-size: 18px;
    transition: all var(--akee-transition);
}

.akee-review-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--akee-shadow-gold);
}

.akee-review-info-box {
    background: var(--akee-white);
    border-radius: var(--akee-radius-lg);
    padding: 23px;
    margin-top: 28px;
    border: 1px solid var(--akee-border);
}

.akee-review-info-title {
    font-weight: 700;
    color: var(--akee-primary);
    margin: 0 0 12px 0;
    font-size: 18px;
}

.akee-review-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.akee-review-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 2px solid var(--akee-border);
    font-size: 14px;
}

.akee-review-info-list li:last-child {
    border-bottom: none;
}

.akee-review-info-label {
    color: var(--akee-text-muted);
}

.akee-review-info-value {
    font-weight: 600;
    color: var(--akee-primary);
}

.akee-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin: 33px 0;
}

.akee-pros-box,
.akee-cons-box {
    padding: 25px;
    border-radius: var(--akee-radius-md);
}

.akee-pros-box {
    background: rgba(66,128,72,0.08);
    border: 1px solid rgba(65,114,79,0.2);
}

.akee-cons-box {
    background: rgba(172,70,63,0.08);
    border: 1px solid rgba(171,72,70,0.2);
}

.akee-pros-title,
.akee-cons-title {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.akee-pros-title {
    color: var(--akee-success);
}

.akee-cons-title {
    color: var(--akee-error);
}

.akee-pros-list,
.akee-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.akee-pros-list li,
.akee-cons-list li {
    padding: 6px 0;
    padding-left: 23px;
    position: relative;
    font-size: 14px;
    color: var(--akee-text);
}

.akee-pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--akee-success);
    font-weight: 700;
}

.akee-cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--akee-error);
    font-weight: 700;
}

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

.akee-cta-section {
    padding: 77px 0;
    background: linear-gradient(135deg, var(--akee-primary) 0%, var(--akee-secondary) 100%);
    color: var(--akee-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.akee-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,163,86,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200,165,85,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.akee-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.akee-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 23px 0;
    background: linear-gradient(135deg, var(--akee-white) 0%, var(--akee-gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.akee-cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 33px 0;
    line-height: 1.7;
}

.akee-cta-buttons {
    display: flex;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.akee-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: linear-gradient(135deg, var(--akee-gold) 0%, var(--akee-gold-deep) 100%);
    color: var(--akee-primary);
    text-decoration: none;
    border-radius: var(--akee-radius-md);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--akee-transition);
}

.akee-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--akee-shadow-gold);
}

.akee-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 18px 33px;
    background: transparent;
    color: var(--akee-white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--akee-radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--akee-transition);
}

.akee-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.akee-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33px;
    margin-top: 41px;
    padding-top: 28px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.akee-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    opacity: 0.85;
}

.akee-cta-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--akee-gold);
}

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

@media (max-width: 992px) {
    .akee-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 41px;
    }

    .akee-showcase-headline {
        font-size: 44px;
    }

    .akee-review-grid {
        grid-template-columns: 1fr;
    }

    .akee-review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 23px;
    }

    .akee-review-info-box {
        margin-top: 0;
    }

    .akee-cta-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .akee-header { position: relative !important; }
    .akee-navigation {
        display: none;
    }

    .akee-phone-trigger {
        display: none;
    }

    .akee-menu-btn {
        display: flex;
    }

    .akee-showcase {
        padding: 72px 0 59px;
    }

    .akee-showcase-headline {
        font-size: 34px;
    }

    .akee-showcase-desc {
        font-size: 16px;
    }

    .akee-showcase-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .akee-company-card {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }

    .akee-company-cta {
        width: 100%;
    }

    .akee-company-cta .akee-btn {
        width: 100%;
    }

    .akee-section-heading {
        font-size: 32px;
    }

    .akee-article h2 {
        font-size: 28px;
    }

    .akee-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .akee-contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .akee-form-box {
        padding: 27px 25px;
    }

    /* Table to Cards on Mobile */
    .akee-companies-table-wrap {
        display: none;
    }

    .akee-companies-cards {
        display: block;
    }

    .akee-review-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .akee-review-stats {
        justify-content: center;
    }

    .akee-review-sidebar {
        grid-template-columns: 1fr;
    }

    .akee-pros-cons {
        grid-template-columns: 1fr;
    }

    .akee-cta-title {
        font-size: 30px;
    }

    .akee-cta-text {
        font-size: 16px;
    }

    .akee-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .akee-cta-trust {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .akee-wrapper {
        padding: 0 15px;
    }

    .akee-showcase-badge {
        font-size: 11px;
        padding: 7px 21px;
    }

    .akee-showcase-headline {
        font-size: 28px;
    }

    .akee-btn {
        padding: 12px 27px;
        font-size: 14px;
    }

    .akee-review-title {
        font-size: 32px;
    }

    .akee-review-stats {
        flex-direction: column;
        gap: 17px;
    }

    .akee-card-details {
        grid-template-columns: 1fr;
    }

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


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

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

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

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

    .akee-companies-section .akee-companies-table tbody tr.akee-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 24px rgba(87,31,48,0.1) !important;
        padding: 17px !important;
        border: 2px solid rgba(86,25,39,0.08);
    }

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

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

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

    .akee-companies-section .akee-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 14px !important;
        border-bottom: 3px solid #ede4d1 !important;
    }

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

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

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

    .akee-companies-section .akee-td-action {
        flex-direction: column !important;
        padding-top: 16px !important;
        border-top: 1px solid #f5dccb !important;
        border-bottom: none !important;
    }

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

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

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

.akee-menu-line {
    width: 22px;
    height: 3px;
    background: var(--akee-text, #293d49);
    border-radius: 2px;
    transition: 0.3s;
}

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

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

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

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


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

.akee-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) {
    .akee-nav {
        display: none !important;
    }

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


/* Mobile Navigation Hidden by Default */
.akee-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 19px 25px;
    border-top: 1px solid #eee;
}

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

.akee-mobile-link {
    padding: 15px 0;
    color: var(--akee-text, #323f44);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

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

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


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

.akee-logo-text {
    display: inline !important;
    font-weight: 700;
    font-size: 1rem;
    color: #1d2c5d;
}

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

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .akee-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) {
    .akee-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

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

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


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

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