:root {
    /* Color Palette */
    --color-primary: #0B1F3B;
    --color-primary-light: #0F2A52;
    --color-primary-lighter: #132F5E;
    --color-primary-lightest: #1A3E73;
    --color-primary-accent: #214C8F;
    
    --color-white: #FFFFFF;
    --color-gray-light: #F4F6F8;
    --color-gray-dark: #E3E8EF;
    --color-text: #1a1a24;
    --color-text-light: #4A5568;
    
    --color-cta: #25D366;
    --color-cta-hover: #20BA56;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(11, 31, 59, 0.8) 0%, rgba(15, 42, 82, 0.9) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(7, 19, 36, 0.15);
    --shadow-glow: 0 0 20px rgba(37, 211, 102, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--color-gray-light);
}

/* Utilities */
.glass-card {
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight {
    color: var(--color-primary-accent);
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-cta);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-cta-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-giant {
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    background-color: var(--color-cta);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-giant:hover {
    background-color: var(--color-cta-hover);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.btn-more-areas {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: blue-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 rgba(11, 31, 59, 0.4);
    font-weight: 700;
}

.btn-more-areas i {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-more-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease-out;
    z-index: -1;
}

.btn-more-areas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transition: all 0.4s ease-out;
    z-index: -2;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-more-areas:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 31, 59, 0.2);
    animation: none;
}

.btn-more-areas:hover i {
    transform: rotate(90deg) scale(1.2);
}

.btn-more-areas:hover::before {
    left: 100%;
    transition: all 0.6s ease-in-out;
}

.btn-more-areas:hover::after {
    transform: scaleX(1);
}

/* Animations */
@keyframes blue-pulse {
    0% { box-shadow: 0 0 0 0 rgba(11, 31, 59, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(11, 31, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 31, 59, 0); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(11, 31, 59, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-svg {
    height: 180px;
    width: auto;
    transition: var(--transition-normal);
}

.header.scrolled .logo-svg {
    height: 90px;
}

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
}

.header.scrolled .btn-outline {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 220px;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(11, 31, 59, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    background: rgba(11, 31, 59, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glass);
}

.headline {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 24px;
}

.headline .highlight {
    color: #4DA8DA; /* Slightly lighter blue for contrast against dark bg */
    display: inline;
}

.subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
}

/* Authority Strip */
.authority-strip {
    background-color: var(--color-white);
    padding: 40px 0;
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.authority-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.auth-item {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.auth-divider {
    width: 1px;
    height: 60px;
    background-color: var(--color-gray-dark);
}

.auth-number, .auth-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.auth-title {
    font-size: 1.5rem;
}

.auth-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 200px;
    margin: 0 auto;
}

/* About Section */
.about {
    margin-top: -60px; /* Offset for the overlapping authority strip */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.section-title span {
    color: var(--color-primary-accent);
}

.copy-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.highlight-box {
    background-color: var(--color-gray-light);
    padding: 24px;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-weight: 500;
    color: var(--color-primary);
}

.highlight-box svg {
    flex-shrink: 0;
    color: var(--color-primary-accent);
}

.premium-badge {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.premium-badge h4 {
    color: var(--color-white);
    font-size: 1.8rem;
}

.premium-badge svg {
    width: 64px;
    height: 64px;
    opacity: 0.9;
}

/* Bio Section */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-image {
    position: relative;
    border-radius: 20px;
    padding: 20px;
}

.bio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: 0;
    transform: rotate(-3deg);
    transition: var(--transition-normal);
}

.bio-image:hover::before {
    transform: rotate(0deg);
}

.profile-img {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.bio-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
}

.badge-number {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary-accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}

.oab-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gray-dark);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.oab-text i {
    width: 20px;
    height: 20px;
}

.bio-cta {
    padding: 24px;
    background: var(--color-white);
    border-left: 4px solid var(--color-primary-accent);
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-sm);
}

.bio-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-primary-light);
}

.bio-cta p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Margin Utilities */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* Practice Areas */
.section-header {
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-top: 4px solid transparent;
}

.service-card:hover {
    border-top-color: var(--color-primary-accent);
    transform: translateY(-8px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-gray-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.service-card:hover .card-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Methodology */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 10px var(--color-white);
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    padding: 0 15px;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: var(--color-gray-dark);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Split Section (Proof & Differentials) */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.testimonial-card {
    margin-bottom: 24px;
    background: var(--color-white);
}

.stars {
    color: #FBBF24;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.client-name {
    font-weight: 600;
    color: var(--color-primary);
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.diff-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.diff-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-gray-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-accent);
    flex-shrink: 0;
}

.diff-text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.diff-text p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Online Consultation CTA */
.consultation-box {
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    border-radius: 24px;
    gap: 40px;
}

.consult-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.consultation-content h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.consultation-content h2 .highlight {
    color: #4DA8DA;
}

.consultation-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    background-color: var(--color-gray-light);
    text-align: center;
    padding: 120px 0;
}

.final-cta-content {
    max-width: 800px;
}

.headline-large {
    font-size: 3rem;
    margin-bottom: 24px;
}

.subheadline-large {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.security-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 300px;
}

.footer-info .logo {
    align-items: flex-start;
    text-align: left;
}

.footer-contact h4, .footer-links h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-links li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-cta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    z-index: 1000;
    transition: var(--transition-fast);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    background-color: var(--color-cta-hover);
    transform: scale(1.1);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Review Subpage Styles - Sober Premium (Discreet & Elegant) */
.review-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #050a14;
    background-image: radial-gradient(circle at center, #112a4f 0%, #050a14 100%);
    position: relative;
    overflow-x: hidden;
}

.review-background {
    display: none;
}

.review-logo {
    height: 120px;
    margin-bottom: 30px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}
.review-logo:hover { opacity: 1; }

.review-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 40px auto;
    padding: 70px 60px;
    text-align: center;
    background: rgba(11, 31, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInSoft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSoft {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.review-badge {
    display: none;
}

.review-container h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.highlight-gold {
    color: #D4AF37;
    font-weight: 500;
}

.review-container p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto; margin-right: auto;
}

.elegant-stars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.elegant-star {
    width: 42px;
    height: 42px;
    color: #D4AF37;
    fill: transparent;
    stroke: #D4AF37;
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.elegant-stars:hover .elegant-star {
    fill: #D4AF37;
    transform: scale(1.05);
}

.btn-multibillionaire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    color: #D4AF37;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 20px 45px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-multibillionaire::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(212, 175, 55, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-multibillionaire i { color: #D4AF37; width: 22px; height: 22px; transition: color 0.5s ease; }

.btn-multibillionaire:hover {
    color: #02050A;
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.btn-multibillionaire:hover i { color: #02050A; }

.btn-multibillionaire:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    background: #D4AF37;
}

@media (max-width: 768px) {
    .review-container { padding: 40px 24px; margin: 30px 15px; border-radius: 12px; }
    .review-container h1 { font-size: 2rem; }
    .review-container p { font-size: 0.95rem; margin-bottom: 40px; }
    .elegant-star { width: 32px; height: 32px; gap: 8px; }
    .btn-multibillionaire { padding: 18px 24px; font-size: 0.95rem; width: 100%; }
    .review-logo { height: 90px; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .headline { font-size: 2.8rem; }
    .about-grid, .split-grid, .bio-grid { grid-template-columns: 1fr; gap: 40px; }
    .authority-grid { justify-content: center; }
    .auth-divider { display: none; }
    .auth-item { min-width: 40%; margin-bottom: 20px; }
    .authority-strip { transform: none; margin: -20px 20px 40px; }
    .about { margin-top: 0; }
    .steps-container { flex-direction: column; align-items: center; gap: 30px; }
    .step-connector { display: none; }
    .consultation-box { flex-direction: column; text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .headline { 
        font-size: 1.5rem; 
    }
    .headline .highlight {
        display: inline;
    }
    .hero {
        padding-top: 190px;
    }
    .subheadline { font-size: 1.1rem; }
    .hero-text { padding: 40px 20px; }
    .section-title { font-size: 2rem; }
    .btn-giant { font-size: 1.1rem; padding: 16px 24px; }
    .headline-large { font-size: 2.2rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .auth-item { min-width: 100%; }
    .about-title { font-size: 1.40rem; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; white-space: nowrap; font-size: 0.95rem; padding: 14px 10px; }
    .logo-svg { height: 130px; }
    .header.scrolled .logo-svg { height: 80px; }
}

@media (min-width: 769px) {
    .mobile-break { display: none; }
}
