/* Global Reset & Variables */
:root {
    --primary-color: #0b1c3e;
    /* Deep Navy */
    --secondary-color: #1a2f5a;
    /* Lighter Navy for cards */
    --accent-color: #c5a059;
    /* Gold */
    --accent-hover: #d4af6a;
    --text-color: #333333;
    --text-light: #f5f5f5;
    --bg-color: #f8f9fa;
    --bg-dark: #08142b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #c5a059 0%, #e6cd96 50%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-gold {
    background: linear-gradient(135deg, #c5a059, #b08d4b);
    color: white;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-gold:hover {
    opacity: 0.9;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background: rgba(11, 28, 62, 0.95);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 300;
    margin-left: 5px;
    color: var(--accent-color);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--accent-color);
}

.nav-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Custom Composite Image for Hero */
    background: url('hero_bg.png') no-repeat center center/cover;
    opacity: 0.6;
    /* Increased opacity slightly for the custom image */
    /* Slightly lower opacity to let text pop */
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 28, 62, 0.9) 0%, rgba(26, 47, 90, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    align-items: center;
}

/* Hero Premium Gold Seal (Replacing Laurel Wreath) */
.hero-premium-wrapper {
    position: absolute;
    bottom: 80px;
    /* High enough to prevent overlap with the grid below */
    right: 8%;
    z-index: 20;
}

.hero-premium-badge {
    animation: float 4s ease-in-out infinite;
}

.premium-gold-seal {
    width: 240px;
    height: 240px;
    background: radial-gradient(ellipse at top left, #e6cd96 0%, #c5a059 40%, #8c733f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.6), 0 0 0 6px rgba(197, 160, 89, 0.3);
    position: relative;
    padding: 10px;
}

/* Ribbed outer edge effect using repeating conic gradient */
.premium-gold-seal::before {
    content: '';
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, #c5a059 0deg 10deg, #b08d4b 10deg 20deg);
    z-index: -1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Inner elegant line */
.seal-inner {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.seal-inner i {
    font-size: 3.5rem;
    color: #0B1C3E;
    /* Deep Navy to contrast with Gold */
    margin-bottom: 8px;
    filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 0.5));
}

.seal-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #0B1C3E;
    letter-spacing: 0.5px;
}

.seal-sub {
    display: block;
    font-size: 0.8rem;
    color: #1A2F5A;
    font-weight: 600;
    line-height: 1.2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section General */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.section-desc {
    font-size: 1rem;
    color: #666;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.pillar-card {
    background: white;
    padding: 0;
    /* Remove padding for image */
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: none;
    /* Removed top border */
    overflow: hidden;
    /* For image radius */
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pillar-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    position: relative;
}

.icon-box-small {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    right: 30px;
    font-size: 1.2rem;
    color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pillar-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.pillar-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Tech Support - Dark Theme */
.dark-section {
    background-color: var(--bg-dark);
    color: white;
}

.text-light {
    color: white !important;
}

.text-light-muted {
    color: #aaa !important;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass feel */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tech-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.tech-info h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.price-strike {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
}

.price-free {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-gold {
    color: var(--accent-color);
}

.tech-detail {
    font-size: 0.9rem;
    color: #ccc;
}

.tech-supp-desc {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tech-note {
    font-size: 0.95rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Plans */
.plans-section {
    background-color: #f4f6f9;
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid #eee;
    transition: var(--transition);
}

.recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.plan-price {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.plan-price .unit {
    font-size: 0.9rem;
    color: #666;
}

.plan-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.plan-target {
    background: #f8f9fa;
    padding: 10px;
    font-size: 0.85rem;
    color: #666;
    border-radius: 5px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question span {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    font-weight: 700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 20px 0;
    color: #444;
}

.faq-answer span {
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 5px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust if needed */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Profile */
.profile-section {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.profile-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profile-tagline {
    font-family: serif;
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

.profile-details p {
    margin-bottom: 8px;
    color: #555;
    font-family: monospace;
}

/* Contact */
.contact-section {
    padding-bottom: 100px;
}

.contact-box {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--accent-color);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-header .note {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 28, 62, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-group-hidden {
    position: absolute;
    left: -9999px;
}

.consent-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
}

.consent-label input,
.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.form-status {
    min-height: 24px;
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-status.is-loading {
    color: var(--secondary-color);
}

.form-status.is-success {
    color: #127a44;
}

.form-status.is-error {
    color: #b42318;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav ul {
        gap: 15px;
    }

    .grid-3,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .recommended {
        transform: none;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .row {
        flex-direction: column;
    }

    .col-half {
        width: 100%;
    }

    .badges-grid,
    .category-grid,
    .track-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-wrapper {
        overflow-x: auto;
    }
}

/* =========================================================================
   NEW STYLES FOR REDESIGN
   ========================================================================= */

/* Utilities */
.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-auto {
    margin-top: auto;
}

.bg-light {
    background-color: #f4f6f9;
}

.text-white {
    color: #fff !important;
}

.text-gold {
    color: var(--accent-color) !important;
}

.gold-text {
    color: var(--accent-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-navy {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-navy:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(26, 47, 90, 0.4);
}

.row {
    display: flex;
    gap: 20px;
}

.col-half {
    width: 50%;
}

/* Authority Badges */
.badges-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    /* Overlap hero */
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.badge-item {
    background: linear-gradient(135deg, #1a2f5a 0%, #0b1c3e 100%);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.crown-badge {
    background: linear-gradient(135deg, #e6cd96 0%, #c5a059 50%, #b08d4b 100%);
    border: none;
    color: var(--primary-color);
    position: relative;
    padding-top: 50px;
}

.crown-badge .badge-icon {
    color: white;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.crown-badge h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.crown-badge p {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.badge-number {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: white;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Category Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.category-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.cat-icon-wrap {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.category-card:hover .cat-icon-wrap {
    background: var(--primary-color);
    color: var(--accent-color);
}

.category-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.icon-list {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
    padding-left: 0;
    width: 100%;
}

.icon-list li {
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: normal;
    white-space: nowrap;
    /* Prevent text wrapping */
    /* Fix kerning issue here */
}

.icon-color {
    color: var(--accent-color);
    font-size: 1.4rem;
    width: 26px;
    text-align: center;
}

/* Track Record */
.track-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.track-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.center-card {
    position: relative;
    overflow: hidden;
    color: white;
    border-top: 4px solid var(--accent-color);
}

.track-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg_pattern.jpg') center/cover;
    z-index: 1;
}

.track-img-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 28, 62, 0.95) 0%, rgba(26, 47, 90, 0.85) 100%);
}

.track-content-rel {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.center-card .track-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.track-illustration {
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 180px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.track-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.track-card:hover .track-img {
    transform: scale(1.05);
}

.track-header h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.center-card .track-header h4 {
    color: white;
}

.track-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.track-stats {
    flex-grow: 1;
}

.stat {
    margin-bottom: 15px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.center-card .stat-label {
    color: #ccc;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.center-card .stat-value {
    color: var(--accent-color);
}

.stat-value span {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 5px;
}

.track-strength {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    margin-top: 20px;
}

.center-card .track-strength {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.track-strength strong {
    color: var(--accent-color);
}

.client-list {
    margin-left: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.client-list li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.block-label {
    font-weight: bold;
    color: #333;
}

/* Antithesis */
.antithesis-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-wrapper {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: #333;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    font-weight: 700;
}

.comparison-table thead th {
    font-size: 1.1rem;
    background: #f8f9fa;
    color: #555;
}

.comparison-table tbody th {
    text-align: left;
    background: #f8f9fa;
    color: #555;
    width: 20%;
}

.highlight-col {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.comparison-table thead .highlight-col {
    font-size: 1.3rem;
    border-radius: 8px 8px 0 0;
}

.comparison-table tbody .highlight-col {
    border-color: rgba(255, 255, 255, 0.1);
}

.comparison-table tbody tr:last-child .highlight-col {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.comparison-table td.highlight-col strong {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Service Menu */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 3px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-img {
    text-align: center;
    margin-bottom: 25px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .service-photo {
    transform: scale(1.08);
}

.service-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: #f0f0f0;
    font-family: var(--font-heading);
    line-height: 1;
    z-index: 1;
}

.service-card h4 {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    min-height: 50px;
}

.service-list {
    position: relative;
    z-index: 2;
    text-align: left;
}

.service-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Custom Features in Plans */
.custom-features li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.custom-features li span {
    font-weight: bold;
    color: var(--primary-color);
}

/* CTA Box */
.CTA-box {
    background: linear-gradient(135deg, #c5a059 0%, #a68444 100%);
    border-top: none;
    color: white;
}

.limit-badge-wrapper {
    margin-bottom: 30px;
}

.limit-badge {
    background-color: #d9534f;
    color: white;
    padding: 6px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.CTA-box .form-group label {
    color: white;
}

.CTA-box .checkbox-group label {
    color: white;
}

/* =========================================================================
   RESPONSIVE OVERRIDES FOR REDESIGN
   ========================================================================= */
@media (max-width: 768px) {

    .badges-grid,
    .category-grid,
    .track-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-premium-wrapper {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 40px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .premium-gold-seal {
        width: 200px;
        height: 200px;
    }

    .seal-inner i {
        font-size: 2.8rem;
    }

    .seal-title {
        font-size: 0.95rem;
    }

    .seal-sub {
        font-size: 0.7rem;
    }

    .row {
        flex-direction: column;
    }

    .col-half {
        width: 100%;
    }

    .track-card {
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .comparison-wrapper {
        padding: 5px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
        font-size: 0.85rem;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav li {
        margin-left: 10px;
    }

    .nav-btn {
        margin-left: 0 !important;
    }
}
