/* ==========================================================================
   ONIC PREMIUM - Professional Blue System
   Global Governance | Luxury Fintech Authority
   ========================================================================== */

/* WEF Sidebar */
.wef-sidebar{padding:0}
.sb-link{text-decoration:none;color:#555;font-size:0.85rem;font-weight:500;padding:7px 10px;border-radius:6px;transition:all 0.2s;line-height:1.4;display:block;opacity:0.7}
.sb-link:hover{opacity:1;background:rgba(100,100,100,0.08)}
.sb-link.sb-active{opacity:1;color:#333;font-weight:700;background:rgba(100,100,100,0.1);border-left:3px solid #888;padding-left:7px}
.sidebar-layout{display:flex;gap:2.5rem;align-items:flex-start}
@media(max-width:900px){
    .sidebar-layout{flex-direction:column!important;gap:1rem!important;}
    .wef-sidebar{width:100%!important;flex-shrink:0!important;padding-top:0!important;margin-bottom:0;}
    .wef-sidebar h3{display:none}
    .wef-sidebar > div:last-child{display:none}
    .wef-sidebar nav:first-of-type{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;gap:4px!important;}
    .wef-sidebar .sb-link{font-size:0.72rem;padding:6px 10px;text-align:center;border-radius:20px;white-space:nowrap;border:1px solid rgba(100,100,100,0.15);opacity:0.6;}
    .wef-sidebar .sb-link.sb-active{background:rgba(100,100,100,0.1)!important;color:#333!important;border-left:none!important;padding-left:10px!important;border-color:#888;opacity:1;}
}

:root {
    /* ========== NEW COLOR SYSTEM ========== */
    --primary-blue: #3BA6D9;
    --teal-green: #22c55e;
    --light-blue: #6ECDE6;
    --mint-green: #73C49D;
    --mint-bg: #d9ead3;
    --deep-footer: #0E2A3B;

    /* Legacy mappings */
    --onic-primary-blue: #3BA6D9;
    --onic-deep-blue: #2A8FC4;
    --onic-mid-blue: #4DB8E8;
    --onic-light-blue: #6ECDE6;
    --onic-soft-blue: #E6F7FC;
    --onic-pale-blue: #F0FAFF;

    /* Blue Shadows & Glows */
    --onic-blue-shadow: rgba(59, 166, 217, 0.4);
    --onic-blue-glow: rgba(59, 166, 217, 0.25);

    /* ========== TEAL GREEN (Buttons & Accents) ========== */
    --onic-emerald: #36B1A0;
    --onic-emerald-dark: #2A9485;
    --onic-emerald-light: #4DC4B4;
    --onic-emerald-glow: rgba(54, 177, 160, 0.4);

    /* ========== TEXT COLORS ========== */
    --text-black: #1a1a1a;
    --text-dark: #2d2d2d;
    --text-gray: #4a5568;
    --text-light-gray: #718096;
    --text-white: #FFFFFF;
    --text-white-soft: rgba(255, 255, 255, 0.9);
    --text-white-muted: rgba(255, 255, 255, 0.7);

    /* ========== BACKGROUNDS ========== */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --frost: rgba(255, 255, 255, 0.1);
    --frost-light: rgba(255, 255, 255, 0.15);
    --frost-hover: rgba(255, 255, 255, 0.2);

    /* ========== SHADOWS ========== */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 8px 20px var(--onic-blue-shadow);
    --shadow-emerald: 0 4px 15px var(--onic-emerald-glow);

    /* ========== SPACING ========== */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    /* ========== BORDER RADIUS ========== */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: #111827;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Clean background - no noise texture */
body::before {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==========================================================================
   NAVBAR - Glassmorphism
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    height: 70px;
    display: flex;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
}

.navbar-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

/* Navbar Logo - Smooth Curve Shape */
.nav-logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 68px;
    background: transparent;
    border-radius: 45% 45% 45% 45% / 40% 40% 50% 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: none;
}

.nav-logo-container:hover {
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: none;
}

.nav-logo-img {
    height: 42px !important;
    width: auto;
    filter: none !important;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    color: #FFFFFF;
    box-shadow: none;
}

.nav-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: none;
}

/* Old mobile toggle/sidebar removed - handled in base.html */
@media (max-width: 768px) {
}

/* ==========================================================================
   BUTTONS - Premium Emerald
   ========================================================================== */
.btn {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-emerald {
    background: #FFFFFF;
    color: #2e7d32;
    box-shadow: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn-emerald::before {
    display: none;
}

.btn-emerald:hover::before {
    display: none;
}

.btn-emerald:hover {
    transform: translateY(-2px);
    background: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-frost {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
}

.btn-outline-frost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   HERO SECTION - ONIC Blue Gradient
   ========================================================================== */
.hero-premium {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%),
        url('/static/images/green texture.png') center/cover;
    padding-top: 140px;
    padding-bottom: 0;
}

/* Hero Wave SVG */
.hero-wave-svg {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    z-index: 1;
    opacity: 0.7;
    animation: heroWaveMove 20s ease-in-out infinite;
}

@keyframes heroWaveMove {
    0% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0px); }
}

/* No overlay */
.hero-premium::before {
    display: none;
}

.hero-premium::after {
    display: none;
}

/* Removed glow pulse - using cleaner design */

.hero-content-premium {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 60px;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
}

.hero-text-premium {
    max-width: 650px;
}

/* Hero Pillars Section - White Box Inside Hero */
.hero-pillars-section {
    width: calc(100% - 80px);
    max-width: 1200px;
    margin: 60px auto 80px;
    background: var(--mint-bg);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.hero-pillars-section .container {
    max-width: 100%;
    padding: 0;
}

.hero-pillars-section .section-header-premium {
    margin-bottom: 30px;
}

.hero-pillars-section .section-title-premium {
    font-size: 1.8rem;
    color: #111827;
}

.hero-pillars-section .pillars-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hero-pillars-section .pillar-card-premium {
    background: var(--white);
    border: 1px solid rgba(47, 163, 145, 0.2);
    padding: 30px;
}

.hero-pillars-section .pillar-card-premium:hover {
    border-color: var(--teal-green);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    line-height: 1.15;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
}

.hero-title-premium .title-line {
    display: block;
}

.hero-title-premium .title-green {
    color: #FFFFFF;
}

.hero-subtitle-premium {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero-buttons-premium {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-tags-premium {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-tags-premium {
    margin-bottom: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -40px;
}

.hero-logo-glow {
    position: relative;
    width: 520px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer ring - slow clockwise rotation */
.hero-logo-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    animation: spinCW 30s linear infinite;
}

/* Middle ring - counter-clockwise rotation */
.hero-logo-glow::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: spinCCW 22s linear infinite;
}

@keyframes spinCW {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinCCW {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.hero-main-logo {
    width: 220px;
    height: auto;
    filter: none;
    opacity: 1;
    position: relative;
    z-index: 2;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Inner ring - slow clockwise */
.hero-logo-glow .inner-circle {
    position: absolute;
    width: 65%;
    height: 65%;
    border: 1.5px dashed rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    animation: spinCW 40s linear infinite;
}

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-header-premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-tag-premium {
    display: inline-block;
    background: rgba(54, 177, 160, 0.1);
    border: 1px solid var(--teal-green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-green);
    margin-bottom: var(--space-md);
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    white-space: normal;
}

/* OS Capsule - Pill shape for tagline */
.os-capsule {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #3BA6D9 100%);
    color: white !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    margin-top: 10px;
}

.section-subtitle-premium {
    font-size: 1.1rem;
    color: #707B8C;
    line-height: 1.7;
    max-width: 700px;
}

/* Section Divider Line */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-divider .line {
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eee, transparent);
}

.section-divider h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

/* ==========================================================================
   BACKGROUND VARIANTS - ONIC Blue System
   ========================================================================== */
.bg-navy,
.bg-blue {
    background: linear-gradient(
        165deg,
        var(--onic-deep-blue) 0%,
        var(--onic-primary-blue) 50%,
        var(--onic-mid-blue) 100%
    );
    color: var(--text-white);
    position: relative;
}

.bg-navy-gradient,
.bg-blue-gradient {
    background: var(--mint-bg);
    color: #111827;
    position: relative;
    overflow: hidden;
}

/* White Section */
.bg-white-premium {
    background: #FFFFFF;
    color: var(--text-black);
    position: relative;
}

.bg-white-premium .section-tag-premium {
    background: rgba(54, 177, 160, 0.1);
    border-color: var(--teal-green);
    color: var(--teal-green);
}

.bg-white-premium .section-title-premium {
    color: var(--text-black);
}

.bg-white-premium .section-subtitle-premium {
    color: var(--text-gray);
}

.bg-white-premium .section-divider h2 {
    color: var(--text-black);
}

.bg-white-premium .section-divider .line {
    background: linear-gradient(90deg, transparent, rgba(15, 94, 168, 0.3), transparent);
}

/* White Section - Pillar Cards */
.bg-white-premium .pillar-card-premium {
    background: #FFFFFF;
    border: 1px solid rgba(15, 94, 168, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bg-white-premium .pillar-card-premium:hover {
    border-color: rgba(15, 94, 168, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(15, 94, 168, 0.1);
}

.bg-white-premium .pillar-card-premium h3 {
    color: var(--text-black);
}

.bg-white-premium .pillar-card-premium p {
    color: var(--text-gray);
}

.bg-white-premium .pillar-icon-premium {
    background: var(--mint-bg);
}

.bg-white-premium .pillar-icon-premium svg {
    color: var(--teal-green);
}

/* White Section - Process Steps */
.bg-white-premium .step-circle-premium {
    background: var(--teal-green);
    border: none;
}

.bg-white-premium .step-label-premium {
    color: #111827;
}

.bg-white-premium .step-arrow-premium {
    color: var(--teal-green);
}

.bg-white-premium .step-arrow-premium svg {
    color: var(--teal-green);
}

/* White Section - CTA Cards */
.bg-white-premium .cta-card-premium {
    background: #FFFFFF;
    border: 1px solid rgba(15, 94, 168, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bg-white-premium .cta-card-premium:hover {
    border-color: rgba(15, 94, 168, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(15, 94, 168, 0.1);
}

.bg-white-premium .cta-card-premium h3 {
    color: var(--text-black);
}

.bg-white-premium .cta-subtitle {
    color: var(--onic-primary-blue);
}

.bg-white-premium .cta-list li {
    color: var(--text-gray);
}

/* White Section - Service Cards */
.bg-white-premium .service-card-premium {
    background: #FFFFFF;
    border: 1px solid rgba(15, 94, 168, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bg-white-premium .service-card-premium:hover {
    border-color: rgba(15, 94, 168, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 20px rgba(15, 94, 168, 0.08);
}

.bg-white-premium .service-card-body h3 {
    color: var(--text-black);
}

.bg-white-premium .service-card-body p {
    color: var(--text-gray);
}

/* White Section - Tabs */
.bg-white-premium .service-tab-premium {
    background: transparent;
    border: 1px solid #eee;
    color: #111827;
}

.bg-white-premium .service-tab-premium:hover {
    background: var(--mint-bg);
    color: var(--teal-green);
    border-color: var(--teal-green);
}

.bg-white-premium .service-tab-premium.active {
    background: var(--teal-green);
    color: #fff;
    border-color: var(--teal-green);
}

/* White Section - Partner Logos */
.bg-white-premium .partner-logo-premium {
    filter: grayscale(100%) brightness(0.4);
}

.bg-white-premium .partner-logo-premium:hover {
    filter: grayscale(0%) brightness(1);
}

.bg-white-premium .partner-logo-premium span {
    color: #666;
}

/* ==========================================================================
   PREMIUM GLASS CARDS - Three Pillars
   ========================================================================== */
.pillars-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card-premium {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar-card-premium::before {
    display: none;
}

.pillar-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--teal-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pillar-card-premium:hover::before {
    display: none;
}

.pillar-icon-premium {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-bg);
    border: none;
    border-radius: 12px;
    position: relative;
}

.pillar-icon-premium svg {
    width: 28px;
    height: 28px;
    color: var(--teal-green);
}

.pillar-card-premium h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--teal-green);
    margin-bottom: 1rem;
}

.pillar-card-premium p {
    font-size: 0.95rem;
    color: #707B8C;
    line-height: 1.6;
}

/* ==========================================================================
   PROCESS FLOW - How ONIC Works
   ========================================================================== */
.process-section-premium {
    padding: var(--space-xxl) 0;
}

.process-flow-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
    max-width: 180px;
}

.step-circle-premium {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--teal-green);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-premium:hover .step-circle-premium {
    transform: scale(1.05);
    background: var(--primary-blue);
}

.step-circle-premium svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.step-label-premium {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-arrow-premium {
    color: var(--teal-green);
    font-size: 1.5rem;
    opacity: 0.6;
}

.step-arrow-premium svg {
    width: 24px;
    height: 24px;
    color: var(--teal-green);
}

/* ==========================================================================
   DUAL CTA SECTION - Build & Partner
   ========================================================================== */
.cta-dual-section {
    padding: var(--space-xxl) 0;
}

.cta-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card-premium {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cta-card-premium .btn {
    margin-top: auto;
}

/* No texture overlay */
.cta-card-premium::after {
    display: none;
}

.cta-card-premium > * {
    position: relative;
    z-index: 1;
}

.cta-card-premium::before {
    display: none;
}

.cta-card-premium:hover {
    border-color: var(--primary-blue);
    transform: translateY(-6px);
}

.cta-card-premium h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    position: relative;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--teal-green);
    font-weight: 600;
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md) 0;
    position: relative;
}

.cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #707B8C;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.cta-list .bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--teal-green);
    border-radius: 50%;
    margin-top: 6px;
}

/* Icon styles for CTA cards */
.cta-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
}

.cta-icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #22c55e 0%, #3BA6D9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-icon-partner {
    background: linear-gradient(135deg, #22c55e 0%, #1a4a7a 100%);
}

.cta-list-icons li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-list-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   PARTNER LOGOS
   ========================================================================== */
.partners-section-premium {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-grid-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.partner-logo-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(2);
}

.partner-logo-premium:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.partner-logo-premium img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.partner-logo-premium span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   DIFFERENCE SECTION - Full Width Box with Logo & Content
   ========================================================================== */
.difference-section {
    padding: 50px 0;
    background: var(--white);
}

.difference-box {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 100%),
        url('/static/images/trust-bg.png') center/cover;
    border-radius: 24px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* No diagonal lines - using image */
.difference-box::before {
    display: none;
}

.difference-logo {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.difference-logo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer dotted circle */
.difference-logo-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

/* Middle dotted circle */
.difference-logo-wrapper::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 45s linear infinite reverse;
}

/* Inner dotted circle */
.difference-logo-inner {
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.difference-logo img {
    width: 100px;
    height: auto;
    filter: none;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.difference-divider {
    width: 1px;
    height: 250px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 40px;
    position: relative;
    z-index: 1;
}

.difference-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.difference-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.difference-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.difference-list li .check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--teal-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.difference-list li .check svg {
    width: 14px;
    height: 14px;
    color: white;
}

/* Difference List - No Checks Style */
.difference-list.no-checks li {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.75rem;
}

.difference-list.no-checks li strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

.difference-list.no-checks li span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    display: block;
}

.difference-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #111;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.difference-btn:hover {
    background: #f8f8f8;
    border-color: #22c55e;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .difference-box {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
    }

    .difference-logo {
        margin-bottom: 30px;
    }

    .difference-divider {
        width: 80%;
        height: 1px;
        margin: 30px 0;
    }

    .difference-content h2 {
        font-size: 2rem;
    }

    .difference-list li {
        justify-content: center;
        text-align: left;
    }
}

/* ==========================================================================
   FEATURE SECTION - Image Left, Content Right
   ========================================================================== */
.feature-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.feature-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.1rem;
    color: #707B8C;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #111827;
    line-height: 1.6;
}

.feature-list li .check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--teal-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-list li .check svg {
    width: 12px;
    height: 12px;
    color: white;
}

@media (max-width: 992px) {
    .feature-row {
        flex-direction: column;
        gap: 40px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .feature-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   HOW ONIC WORKS - SYSTEM SECTION
   ========================================================================== */
.onic-system-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.onic-system-header {
    text-align: center;
    margin-bottom: 110px;
}

.onic-system-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--teal-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.onic-system-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #0b2e4f;
    margin: 0 0 25px;
}

.onic-system-header p {
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
    color: #4f5d75;
    font-size: 1.1rem;
}

.onic-system {
    position: relative;
}

/* Stages Layout */
.onic-stages {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 2;
    gap: 0;
}

.onic-stage {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.onic-stage p {
    flex: 1;
}

/* Arrows between stages */
.onic-arrow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 48px;
    width: 50px;
}

.onic-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Icon Circle */
.onic-icon-box {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--teal-green);
    position: relative;
    z-index: 2;
}

.onic-icon-box svg {
    width: 55px;
    height: 55px;
    stroke: var(--teal-green);
    fill: none;
    stroke-width: 2;
}

/* Text Box */
.onic-stage h4 {
    font-family: 'Inter', sans-serif;
    margin-top: 70px;
    font-size: 15px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 6px;
}

.onic-stage p {
    font-size: 13px;
    color: #4f5d75;
    line-height: 1.6;
    margin-top: 0;
}

/* Leaf Node - ONIC Logo Styling */
.onic-leaf-node .onic-icon-box {
    background: linear-gradient(135deg, var(--teal-green), #1b7f6b);
    border: none;
}

.onic-leaf-node .onic-icon-box img {
    width: 45px;
    height: auto;
    filter: none;
}

/* Values */
.onic-values {
    margin-top: 120px;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--teal-green);
}

.onic-values span {
    margin: 0 35px;
    font-size: 14px;
}

/* Responsive - ONIC System */
@media (max-width: 1300px) {
    .onic-stage {
        width: 120px;
    }

    .onic-arrow {
        width: 30px;
    }

    .onic-arrow svg {
        width: 24px;
        height: 24px;
    }

    .onic-icon-box {
        width: 100px;
        height: 100px;
    }

    .onic-icon-box svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 1100px) {
    .onic-stages {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .onic-arrow {
        padding-top: 0;
        transform: rotate(90deg);
        width: auto;
        height: 40px;
    }

    .onic-stage {
        width: 80%;
        max-width: 400px;
    }

    .onic-stage h4 {
        margin-top: 20px;
    }

    .onic-system-header h3 {
        font-size: 32px;
    }

    .onic-values span {
        display: block;
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .onic-system-section {
        padding: 80px 0;
    }

    .onic-system-header {
        margin-bottom: 60px;
    }

    .onic-system-header h3 {
        font-size: 26px;
    }

    .onic-icon-box {
        width: 100px;
        height: 100px;
    }

    .onic-icon-box svg {
        width: 45px;
        height: 45px;
    }

    .onic-values {
        margin-top: 60px;
    }
}

/* ==========================================================================
   CTA SECTION - NEW STANDARDIZED
   ========================================================================== */
.cta-section-new {
    padding: 100px 0;
    background: var(--mint-bg);
    text-align: center;
}

.cta-content-new h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-content-new p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.cta-content-new .highlight {
    font-weight: 600;
    color: var(--teal-green);
    margin-bottom: 2rem;
}

/* ==========================================================================
   PAGE HERO - STANDARDIZED FOR ALL PAGES
   ========================================================================== */
.page-hero {
    padding: 120px 0 30px;
    text-align: center;
    color: #FFFFFF;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Section backgrounds standardized */
.section-white {
    background: #FFFFFF;
    padding: 40px 0;
}

.section-light {
    background: var(--mint-bg);
    padding: 40px 0;
}

.section-dark {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('/static/images/2.jpg') center/cover;
    padding: 80px 0;
    color: #FFFFFF;
}

/* Quote Box - Green with rounded edges */
.quote-box-green {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('/static/images/2.jpg') center/cover;
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
}

.quote-box-green .quote-text {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.quote-box-green .quote-author {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .quote-box-green {
        padding: 40px 30px;
    }

    .quote-box-green .quote-text {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.footer {
    background: linear-gradient(160deg, #f8faf9 0%, #eef5f0 40%, #e8f0eb 100%);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(76,175,80,0.15);
    color: #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-info h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1a1a1a;
    background-clip: unset;
    margin-bottom: var(--space-sm);
}

.footer-info p {
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #1a1a1a !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal-green);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    color: #333333;
    font-size: 0.85rem;
}

/* ==========================================================================
   SERVICES SECTION - Premium Tabs
   ========================================================================== */
.services-section-premium {
    padding: var(--space-xxl) 0;
}

.services-tabs-premium {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.service-tab-premium {
    padding: 0.8rem 1.8rem;
    background: rgba(15, 94, 168, 0.05);
    border: 1px solid rgba(15, 94, 168, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab-premium:hover {
    background: rgba(15, 94, 168, 0.1);
    color: var(--onic-primary-blue);
}

.service-tab-premium.active {
    background: linear-gradient(135deg, var(--onic-emerald-dark) 0%, var(--onic-emerald) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px var(--onic-emerald-glow);
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.service-card-premium {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue);
}

.service-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: var(--space-md);
}

.service-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal-green);
    margin-bottom: 0.6rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: #707B8C;
    line-height: 1.6;
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title-premium {
        font-size: 3.2rem;
    }

    .hero-content-premium {
        gap: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .hero-content-premium {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-premium {
        max-width: 100%;
    }

    .hero-subtitle-premium {
        max-width: 100%;
    }

    .hero-buttons-premium,
    .hero-tags-premium {
        justify-content: center;
    }

    .hero-visual-premium {
        display: none;
    }

    .pillars-grid-premium {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .process-flow-premium {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .step-arrow-premium {
        display: none;
    }

    .cta-dual-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .services-tabs-premium {
        flex-wrap: wrap;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero-title-premium {
        font-size: 2.4rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .nav-buttons {
        display: none;
    }

    .partners-grid-premium {
        gap: var(--space-md);
    }

    .partner-logo-premium img {
        height: 35px;
    }

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

/* ==========================================================================
   MOBILE TOP LOGO
   ========================================================================== */
.mobile-top-logo {
    display: none;
}

@media (max-width: 768px) {
    .mobile-top-logo {
        display: none;
    }

    .navbar {
        top: 0;
        background: rgba(61, 92, 58, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================================================== */

/* Page Hero - Mobile */
@media (max-width: 992px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

/* Section Responsive */
@media (max-width: 768px) {
    .section-white,
    .section-light,
    .section-dark {
        padding: 50px 0;
    }

    .section-header-premium {
        margin-bottom: 2rem !important;
    }

    .section-title-premium {
        font-size: 1.6rem !important;
    }

    .section-subtitle-premium {
        font-size: 0.95rem;
    }

    .section-tag-premium {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
}

/* Pillars Grid - Mobile */
@media (max-width: 992px) {
    .pillars-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .pillars-grid-premium {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .pillar-card-premium {
        padding: 30px 20px;
    }

    .pillar-card-premium h3 {
        font-size: 1rem;
    }

    .pillar-card-premium p {
        font-size: 0.85rem;
    }
}

/* Services Grid - Mobile */
@media (max-width: 992px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid-premium {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card-image {
        height: 150px;
    }

    .service-card-body {
        padding: 1.2rem;
    }

    .service-card-body h3 {
        font-size: 1rem;
    }

    .service-card-body p {
        font-size: 0.85rem;
    }
}

/* Hero Pillars Section - Mobile */
@media (max-width: 992px) {
    .hero-pillars-section {
        width: calc(100% - 40px);
        margin: 40px auto 60px;
        padding: 40px 25px;
    }

    .hero-pillars-section .pillars-grid-premium {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .hero-pillars-section {
        width: calc(100% - 30px);
        margin: 30px auto 50px;
        padding: 30px 20px;
        border-radius: 15px;
    }

    .hero-pillars-section .section-title-premium {
        font-size: 1.4rem !important;
    }
}

/* Quote Box - Mobile */
@media (max-width: 768px) {
    .quote-box-green {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .quote-box-green .quote-text {
        font-size: 1.1rem;
    }

    .quote-box-green .quote-author {
        font-size: 0.9rem;
    }
}

/* CTA Section - Mobile */
@media (max-width: 768px) {
    .cta-section-new {
        padding: 60px 0;
    }

    .cta-content-new h2 {
        font-size: 1.8rem;
    }

    .cta-content-new p {
        font-size: 1rem;
    }
}

/* ONIC System (How it Works) - Mobile */
@media (max-width: 768px) {
    .onic-system-section {
        padding: 80px 0;
    }

    .onic-system-header {
        margin-bottom: 60px;
    }

    .onic-system-header h2 {
        font-size: 12px;
    }

    .onic-system-header h3 {
        font-size: 1.6rem;
    }

    .onic-system-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .onic-icon-box {
        width: 90px;
        height: 90px;
    }

    .onic-icon-box svg {
        width: 40px;
        height: 40px;
    }

    .onic-stage h4 {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    .onic-stage p {
        font-size: 0.8rem;
    }

    .onic-values {
        margin-top: 60px;
    }

    .onic-values span {
        font-size: 12px;
        margin: 10px 0;
    }
}

/* Feature Sections - Mobile */
@media (max-width: 992px) {
    .feature-row {
        flex-direction: column !important;
        gap: 30px;
    }

    .feature-row.reverse {
        flex-direction: column !important;
    }

    .feature-image {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .feature-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .feature-section {
        padding: 60px 0;
    }

    .feature-content h2 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .feature-image img {
        border-radius: 15px;
    }
}

/* Difference Section - Mobile */
@media (max-width: 992px) {
    .difference-box {
        flex-direction: column;
        padding: 50px 25px;
        text-align: center;
    }

    .difference-logo {
        margin-bottom: 30px;
    }

    .difference-logo-wrapper {
        width: 220px;
        height: 220px;
    }

    .difference-divider {
        width: 80%;
        height: 1px;
        margin: 25px 0;
    }

    .difference-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .difference-section {
        padding: 50px 0;
    }

    .difference-box {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .difference-logo-wrapper {
        width: 180px;
        height: 180px;
    }

    .difference-logo img {
        width: 70px;
    }

    .difference-content h2 {
        font-size: 1.5rem;
    }

    .difference-list.no-checks li strong {
        font-size: 1.1rem;
    }

    .difference-list.no-checks li span {
        font-size: 0.9rem;
    }
}

/* Footer - Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .footer-info h3 {
        font-size: 1.3rem;
    }

    .footer-links h4 {
        margin-bottom: 0.8rem;
    }

    .footer-links ul {
        margin-bottom: 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        padding: 0 10px;
    }
}

/* Buttons - Mobile */
@media (max-width: 600px) {
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .hero-buttons-premium {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .hero-buttons-premium .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Hero Tags - Mobile */
@media (max-width: 600px) {
    .hero-tags-premium {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* CTA Dual Grid - Mobile */
@media (max-width: 768px) {
    .cta-dual-section {
        padding: 60px 0;
    }

    .cta-dual-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 100%;
    }

    .cta-card-premium {
        padding: 30px 25px;
    }

    .cta-card-premium h3 {
        font-size: 1.3rem;
    }
}

/* Flip Cards */
.pani-flip-card{perspective:1000px;height:220px;cursor:pointer}
.pani-flip-inner{position:relative;width:100%;height:100%;transition:transform 0.6s;transform-style:preserve-3d}
.pani-flip-card:hover .pani-flip-inner{transform:rotateY(180deg)}
.pani-flip-front,.pani-flip-back{position:absolute;width:100%;height:100%;backface-visibility:hidden;border-radius:16px;display:flex;flex-direction:column;justify-content:center;padding:1.5rem;overflow:hidden}
.pani-flip-back{transform:rotateY(180deg)}
@media(max-width:768px){
    .pani-flip-card{height:180px}
}
