/* ==========================================================================
   VARIABLES & BASE
   ========================================================================== */
:root {
    --color-primary: #16a34a;
    --color-primary-deep: #047857;
    --color-secondary: #7c3aed;
    --color-accent: #06b6d4;
    --color-gold: #f59e0b;
    --color-dark: #081226;
    --color-dark-soft: #13203a;
    --color-text: #0f172a;
    --color-text-soft: #475569;
    --color-light: #f7fafc;
    --color-white: #ffffff;
    --color-border: rgba(148, 163, 184, 0.22);

    --font-title: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(8, 18, 38, 0.18);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.07), transparent 22%),
        var(--color-light);
    color: var(--color-text);
}
body { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 88px 0; }
.text-center { text-align: center; }
.relative-z { position: relative; z-index: 2; }
.alignment-center { align-items: center; }
.row-gap-xl { row-gap: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(26px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes zoomInEffect {
    0% { opacity: 0; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.68; }
    50% { transform: scale(1.08); opacity: 0.92; }
}
@keyframes orbFloat {
    0% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-18px) translateX(10px) scale(1.08); }
    100% { transform: translateY(0) translateX(0) scale(1); }
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
@keyframes commanderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes commanderShimmer {
    0% { transform: translateX(-130%) skewX(-18deg); }
    100% { transform: translateX(260%) skewX(-18deg); }
}
@keyframes priceBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.035); }
}

.anim-fade-up { opacity: 0; animation: fadeUp 0.8s var(--transition-smooth) forwards; }
.anim-zoom-in { opacity: 0; animation: zoomInEffect 0.95s var(--transition-smooth) forwards; }
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.animate-on-scroll.revealed,
.tab-content.active-tab.revealed,
.tab-content.active-tab .animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}
.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.logo-brand {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
}
.logo-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}
.logo-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    color: var(--color-text);
    cursor: pointer;
}
.nav-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-link {
    position: relative;
    font-weight: 700;
    color: var(--color-text-soft);
    transition: color 0.25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--color-text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; }

/* ==========================================================================
   BUTTONS & GLOBAL UI
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
    box-shadow: 0 14px 30px rgba(4, 120, 87, 0.22);
}
.btn-primary:hover { box-shadow: 0 20px 36px rgba(4, 120, 87, 0.28); }
.btn-secondary {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.16); }
.btn-block { width: 100%; }
.btn-gradient-multicolor {
    width: 100%;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    box-shadow: 0 16px 30px rgba(124, 58, 237, 0.18);
}
.btn-gradient-multicolor:hover { box-shadow: 0 24px 40px rgba(124, 58, 237, 0.24); }
.btn-offer-direct {
    width: 100%;
    margin-top: 10px;
}
.offer-hero-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
    padding: 38px;
    margin-bottom: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,250,252,0.94));
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: var(--shadow-md);
}
.offer-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-deep);
    background: rgba(22, 163, 74, 0.12);
}
.offer-hero-copy h3 {
    font-family: var(--font-title);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    margin-bottom: 16px;
}
.offer-hero-copy h3 span {
    color: var(--color-primary-deep);
}
.offer-hero-copy p {
    color: var(--color-text-soft);
    font-size: 17px;
    line-height: 1.75;
    max-width: 62ch;
}
.offer-highlights {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}
.offer-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(226,232,240,0.86);
}
.offer-highlight-item i {
    color: var(--color-primary);
    flex-shrink: 0;
}
.offer-price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-radius: 28px;
    color: var(--color-white);
    background: linear-gradient(160deg, #081226 0%, #0f3d2e 55%, #047857 100%);
    box-shadow: var(--shadow-lg);
}
.offer-price-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}
.offer-price-value {
    font-family: var(--font-title);
    font-size: clamp(40px, 6vw, 58px);
    line-height: 1;
    margin: 14px 0 12px;
}
.offer-price-value span {
    font-size: 28px;
    color: #bbf7d0;
}
.offer-price-note {
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}
.commander-card-note {
    margin-bottom: 18px;
    color: var(--color-text-soft);
    line-height: 1.7;
}
.aidaform-shell {
    min-height: 500px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
}

.kicker,
.kicker-premium,
.promo-tag,
.live-badge,
.circle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #dcfce7;
    background: rgba(22, 163, 74, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 22px;
}
.kicker-premium {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(124, 58, 237, 0.1);
    padding: 9px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.promo-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    background: rgba(124, 58, 237, 0.09);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}
.section-header { margin-bottom: 46px; }
.section-title {
    font-family: var(--font-title);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--color-text);
}
.text-display { font-size: clamp(34px, 5vw, 52px); }
.section-desc {
    color: var(--color-text-soft);
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}
.card,
.glass-card,
.fancy-step-card,
.premium-price-side,
.team-graphics-container,
.contact-info-panel {
    border-radius: var(--radius-lg);
}
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 32px;
}

/* ==========================================================================
   TAB SYSTEM
   ========================================================================== */
.tab-content { display: none; }
.tab-content.active-tab { display: block; }
.tab-content[hidden] { display: none !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 128px 0 88px;
    background:
        radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.22), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.2), transparent 24%),
        radial-gradient(circle at 50% 78%, rgba(124, 58, 237, 0.18), transparent 28%),
        linear-gradient(180deg, #0a1328 0%, #081226 100%);
}
.hero-bg-blur {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.18), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(6, 182, 212, 0.16), transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.12), transparent 22%);
    animation: pulseGlow 12s ease-in-out infinite;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-title {
    font-family: var(--font-title);
    font-size: clamp(38px, 7vw, 68px);
    font-weight: 800;
    color: var(--color-white);
    max-width: 900px;
    margin-bottom: 22px;
    line-height: 1.05;
}
.text-gradient-accent {
    background: linear-gradient(135deg, #93c5fd 0%, #86efac 45%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    color: rgba(226, 232, 240, 0.92);
    font-size: 19px;
    max-width: 720px;
    margin-bottom: 38px;
    line-height: 1.7;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.hero-showcase { width: 100%; max-width: 980px; margin-bottom: 42px; }
.showcase-wrapper {
    padding: 1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
    box-shadow: var(--shadow-lg);
}
.showcase-panel {
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    backdrop-filter: blur(16px);
    border-radius: calc(var(--radius-xl) - 1px);
    padding: 30px;
    color: var(--color-white);
}
.showcase-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    font-weight: 700;
}
.showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.showcase-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 22px;
    min-height: 148px;
}
.showcase-card strong {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-title);
    font-size: 20px;
}
.showcase-card p { color: rgba(226, 232, 240, 0.9); line-height: 1.65; }
.reassurance-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 232, 240, 0.95);
    padding: 10px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
}
.reassurance-item i { color: #86efac; }

/* ==========================================================================
   HOME SECTIONS
   ========================================================================== */
.section-piliers { padding-top: 92px; padding-bottom: 92px; }
.relative-glow-section { position: relative; overflow: hidden; }
.glow-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: var(--radius-full);
    filter: blur(90px);
    pointer-events: none;
    animation: orbFloat 9s ease-in-out infinite;
    opacity: 0.9;
}
.orb-1 { left: -40px; top: 60px; background: rgba(22, 163, 74, 0.18); }
.orb-2 { right: -30px; bottom: 20px; background: rgba(124, 58, 237, 0.16); animation-delay: 2s; }
.pillar-card h3 {
    font-family: var(--font-title);
    margin-bottom: 12px;
    font-size: 22px;
}
.pillar-card p { color: var(--color-text-soft); line-height: 1.7; }
.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 18px;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.1);
}
.icon-wrapper.emea { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep)); }
.icon-wrapper.blue { background: linear-gradient(135deg, var(--color-accent), #2563eb); }
.icon-wrapper.gold { background: linear-gradient(135deg, var(--color-gold), #d97706); }
.section-lab {
    padding: 26px 0 88px;
}
.bg-light-gradient {
    background:
        radial-gradient(circle at 15% 15%, rgba(22, 163, 74, 0.09), transparent 22%),
        radial-gradient(circle at 85% 20%, rgba(124, 58, 237, 0.09), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(247,250,252,0.98) 100%);
}
.testimonial-live {
    position: relative;
    overflow: hidden;
}
.testimonial-live::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-family: var(--font-title);
    font-weight: 800;
}
.user-meta,
.testimonial-body,
.contact-intro-text,
.premium-subtext,
.fancy-step-card p,
.blog-content p,
.perk-item,
.team-graphics-container p {
    color: var(--color-text-soft);
    line-height: 1.7;
}
.live-badge {
    margin-left: auto;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: rgba(22, 163, 74, 0.12);
    color: var(--color-primary-deep);
    font-size: 12px;
    font-weight: 700;
}
.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulseDot 1.8s infinite;
}
.testimonial-body { font-size: 17px; }

/* ==========================================================================
   ORDER / OFFER SECTION
   ========================================================================== */
.steps-showcase { margin-bottom: 58px; }
.fancy-step-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.fancy-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.18);
}
.step-icon-bg {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 20px;
}
.step-icon-bg.col-1 { background: linear-gradient(135deg, var(--color-secondary), #4f46e5); }
.step-icon-bg.col-2 { background: linear-gradient(135deg, var(--color-accent), #0f766e); }
.step-icon-bg.col-3 { background: linear-gradient(135deg, var(--color-gold), #d97706); }
.step-icon-bg.col-4 { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep)); }
.step-badge-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}
.fancy-step-card h4 {
    font-family: var(--font-title);
    font-size: 20px;
    margin-bottom: 10px;
}
.premium-pricing-container { display: flex; justify-content: center; }
.premium-glass-card {
    position: relative;
    width: 100%;
    max-width: 980px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(247,250,252,0.92));
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-md);
    border-radius: 34px;
    padding: 44px;
}
.premium-glass-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary), var(--color-gold));
}
.premium-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 36px;
    align-items: center;
}
.premium-details-side h3 {
    font-family: var(--font-title);
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}
.perks-grid { display: grid; gap: 18px; }
.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(226,232,240,0.8);
}
.perk-item i { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.c-purple { color: var(--color-secondary); }
.c-cyan { color: var(--color-accent); }
.c-orange { color: var(--color-gold); }
.c-green { color: var(--color-primary); }
.premium-price-side {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
    border: 1px solid rgba(255,255,255,0.8);
    padding: 34px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.price-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}
.circle-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}
.circle-amount {
    font-family: var(--font-title);
    font-size: clamp(48px, 7vw, 64px);
    line-height: 1;
    color: var(--color-text);
    margin: 10px 0;
}
.circle-curr {
    font-size: 30px;
    color: var(--color-primary);
}
.circle-badge {
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-deep);
    background: rgba(22, 163, 74, 0.1);
    padding: 7px 14px;
    border-radius: var(--radius-full);
}
.commander-section .section-header {
    position: relative;
    overflow: hidden;
}
.commander-section .premium-glass-card {
    isolation: isolate;
}
.commander-section .premium-glass-card::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: -35%;
    width: 28%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.58), rgba(255,255,255,0));
    pointer-events: none;
    animation: commanderShimmer 6.5s linear infinite;
}
.commander-section .premium-price-side {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    animation: commanderFloat 5.2s ease-in-out infinite;
}
.commander-section .premium-price-side::before {
    content: '';
    position: absolute;
    inset: -35% 10%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, rgba(6, 182, 212, 0.1) 35%, rgba(255,255,255,0) 72%);
    filter: blur(20px);
    animation: pulseGlow 4.4s ease-in-out infinite;
}
.commander-section .premium-price-side > * {
    position: relative;
    z-index: 1;
}
.commander-section .price-circle {
    animation: priceBreath 4.4s ease-in-out infinite;
}
.commander-section .btn-gradient-multicolor {
    box-shadow: 0 18px 34px rgba(124, 58, 237, 0.2);
}
.commander-section .btn-gradient-multicolor:hover {
    transform: translateY(-4px) scale(1.02);
}
.commander-section .fancy-step-card:nth-child(2),
.commander-section .fancy-step-card:nth-child(4) {
    animation: commanderFloat 6.2s ease-in-out infinite;
}
.commander-section .fancy-step-card:nth-child(1),
.commander-section .fancy-step-card:nth-child(3) {
    animation: commanderFloat 6.2s ease-in-out infinite reverse;
}

/* ==========================================================================
   BLOG / ABOUT / CONTACT
   ========================================================================== */
.blog-grid { align-items: stretch; }
.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-img-placeholder {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}
.design-sourcing { background: linear-gradient(135deg, #0f172a, #1d4ed8); }
.design-ia { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.design-carriere { background: linear-gradient(135deg, #16a34a, #22c55e); }
.blog-content { padding: 24px; }
.blog-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    display: inline-block;
}
.cat-sourcing { color: #1d4ed8; }
.cat-ia { color: #0891b2; }
.cat-carriere { color: var(--color-primary); }
.blog-content h3 {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 10px;
}
.blog-content h3 a:hover { color: var(--color-secondary); }
.team-graphics-container {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}
.team-graphics-container i {
    color: var(--color-primary);
    padding: 18px;
    border-radius: 24px;
    background: rgba(22, 163, 74, 0.08);
}
.contact-info-panel {
    padding: 12px 0;
}
.contact-details-list { margin-top: 28px; }
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}
.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22,163,74,0.12), rgba(124,58,237,0.12));
    color: var(--color-primary-deep);
}
.contact-form-wrapper {
    padding: 30px;
}
.interactive-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--color-text); }
.form-helper-note {
    font-size: 13px;
    line-height: 1.65;
    color: var(--color-text-soft);
}
.form-helper-note a {
    color: var(--color-primary-deep);
    font-weight: 700;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255,255,255,0.8);
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(22, 163, 74, 0.5);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
    background: var(--color-white);
}
.site-footer {
    margin-top: auto;
    padding: 34px 0;
    background: linear-gradient(180deg, #0a1328 0%, #081226 100%);
    color: rgba(226, 232, 240, 0.72);
    text-align: center;
    font-size: 14px;
}
.footer-container { display: flex; justify-content: center; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .grid-4,
    .grid-3,
    .premium-grid,
    .showcase-grid { grid-template-columns: 1fr 1fr; }
    .premium-grid { grid-template-columns: 1fr; }
    .offer-hero-card { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .showcase-grid { grid-template-columns: 1fr; }
    .hero-section { padding-top: 112px; }
    .nav-navigation {
        position: absolute;
        top: calc(100% + 12px);
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 22px;
        background: rgba(255,255,255,0.96);
        border: 1px solid rgba(255,255,255,0.9);
        border-radius: 24px;
        box-shadow: var(--shadow-md);
    }
    .nav-navigation.nav-open { display: flex; }
    .nav-links { flex-direction: column; align-items: flex-start; gap: 18px; }
    .nav-link::after { bottom: -4px; }
    .header-actions { width: 100%; }
    .header-actions .btn { width: 100%; }
    .mobile-menu-toggle { display: inline-flex; }
    .live-badge { margin-left: 0; }
}

@media (max-width: 640px) {
    .container,
    .header-container { padding-left: 18px; padding-right: 18px; }
    .section-padding { padding: 72px 0; }
    .hero-subtitle { font-size: 17px; }
    .showcase-panel,
    .premium-glass-card,
    .glass-card,
    .contact-form-wrapper,
    .card,
    .fancy-step-card { padding: 22px; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
    .reassurance-bar { border-radius: 24px; }
    .detail-item { padding: 16px; }
    .offer-price-card { padding: 24px; }
    .offer-hero-card { padding: 24px; }
}
