/* ============================================ */
/* ACADEMIX™ — Design System & Variables        */
/* ============================================ */

:root {
    /* Color Palette — Academic & Professional */
    --navy: #0B1D3A;
    --navy-light: #132B52;
    --navy-dark: #07132A;
    --blue: #1A3A6B;
    --blue-accent: #2563EB;
    --gold: #C9A227;
    --gold-light: #E5C44D;
    --gold-dark: #A88520;
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --light-gray: #EEF1F6;
    --gray: #9CA3AF;
    --dark-gray: #4B5563;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --success: #10B981;
    --whatsapp: #25D366;
    --error: #EF4444;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Source Serif 4', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 8px 32px rgba(11, 29, 58, 0.12);
    --shadow-xl: 0 16px 48px rgba(11, 29, 58, 0.16);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

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

/* ============================================ */
/* UTILITY CLASSES                              */
/* ============================================ */

.brand-text {
    color: var(--gold);
}

.text-left .section-title,
.text-left .section-label {
    text-align: left;
}
.text-left .section-label::after {
    margin-left: 0;
}
.text-left .section-divider {
    margin-left: 0;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-sm {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    padding: 10px 24px;
    font-size: 14px;
}
.btn-primary-sm:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-nav:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 12px 0;
}

.navbar.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-logo-icon {
    height: 48px;
}

.navbar.scrolled .nav-logo-wordmark {
    height: 32px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo-icon {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-wordmark {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-8deg) scale(1.08);
}

.nav-logo:hover .nav-logo-wordmark {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================ */
/* SECTION 1 — HERO                            */
/* ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 50%, #EFF3FA 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 58, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--navy);
}

.title-accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-family: var(--font-accent);
}

.hero-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
}

.hero-trust-line i {
    color: var(--gold);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-micro-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--success);
    font-size: 14px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, transparent 60%, rgba(11, 29, 58, 0.15) 100%);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 24px;
    color: var(--gold);
}

.hero-floating-card strong {
    font-size: 18px;
    color: var(--navy);
    display: block;
}

.hero-floating-card span {
    font-size: 12px;
    color: var(--text-secondary);
}

.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 28px;
    height: 42px;
    border: 2px solid var(--gray);
    border-radius: 14px;
    position: relative;
    opacity: 0.5;
    transition: var(--transition);
}

.scroll-mouse:hover {
    opacity: 1;
    border-color: var(--navy);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--navy);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================ */
/* SECTION 2 — TRUST LAYER                     */
/* ============================================ */

.trust-section {
    padding: var(--section-padding);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.trust-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.3);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.trust-icon i {
    font-size: 24px;
    color: var(--gold);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.3);
}

.trust-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================ */
/* SECTION 3 — SERVICES                        */
/* ============================================ */

.services-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.05), rgba(201, 162, 39, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-wrap i {
    font-size: 28px;
    color: var(--navy);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    margin-bottom: 20px;
    padding: 12px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}

.price-amount small {
    font-size: 14px;
    font-weight: 500;
}

.services-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.services-note i {
    color: var(--gold);
}

/* ============================================ */
/* SECTION 4 — HOW IT WORKS                    */
/* ============================================ */

.how-section {
    padding: var(--section-padding);
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(201, 162, 39, 0.15);
    position: absolute;
    top: 0;
    right: 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.2);
}

.step-icon i {
    font-size: 26px;
    color: var(--gold);
}

.step-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 56px;
    color: var(--gold);
    font-size: 20px;
    opacity: 0.5;
}

/* ============================================ */
/* SECTION 5 — PRICING                         */
/* ============================================ */

.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section .section-label {
    color: var(--gold);
}

.pricing-section .section-title {
    color: var(--white);
}

.pricing-section .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--light-gray);
}

.price-from {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-value .currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value .amount {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================ */
/* SECTION 6 — CONSULTATION CTA                */
/* ============================================ */

.consultation-section {
    padding: 80px 0;
    background: var(--off-white);
}

.consultation-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
}

/* Consultation Logo */
.consultation-logo {
    height: 56px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.25;
    transition: var(--transition);
}

.consultation-card:hover .consultation-logo {
    opacity: 0.4;
    transform: scale(1.05);
}

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

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

.consultation-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ============================================ */
/* SECTION 7 — TESTIMONIALS                    */
/* ============================================ */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: var(--font-accent);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================ */
/* SECTION 8 — PRINCIPLES                      */
/* ============================================ */

.principles-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.principle-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.principle-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.principle-icon i {
    font-size: 24px;
    color: var(--gold);
}

.principle-card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================ */
/* SECTION 9 — FAQ                             */
/* ============================================ */

.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-question i {
    font-size: 14px;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================ */
/* SECTION 10 — CONTACT / LEAD FORM            */
/* ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.contact-method i {
    font-size: 24px;
    color: var(--navy);
    width: 40px;
    text-align: center;
}

.contact-method i.fa-whatsapp {
    color: var(--whatsapp);
}

.contact-method strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.contact-method span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-msg {
    display: block;
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
    min-height: 16px;
}

.form-privacy {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: var(--success);
}

/* Success State */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ============================================ */
/* SECTION 11 — SCARCITY                       */
/* ============================================ */

.scarcity-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.scarcity-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Scarcity Logo */
.scarcity-logo {
    height: 40px;
    width: auto;
    opacity: 0.12;
    margin-bottom: 12px;
    transition: var(--transition);
}

.scarcity-content:hover .scarcity-logo {
    opacity: 0.2;
}

.scarcity-content > i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.scarcity-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.scarcity-cta {
    font-weight: 700;
    color: var(--navy) !important;
    margin-top: 8px;
}

/* ============================================ */
/* SECTION 12 — FOOTER                         */
/* ============================================ */

.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
    transform: scale(1.03);
}

.footer-tagline {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================ */
/* FLOATING ELEMENTS                           */
/* ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================ */
/* RESPONSIVE DESIGN                           */
/* ============================================ */

@media (max-width: 1024px) {
    .hero-title { font-size: 42px; }
    .section-title { font-size: 34px; }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .step-connector { display: none; }
    
    .steps-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .pricing-card { padding: 30px 24px; }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }
    
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }
    
    .btn-nav { display: none; }
    .hamburger { display: flex; }
    
    /* Logo responsive */
    .nav-logo-icon { height: 48px; }
    .nav-logo-wordmark { height: 32px; }
    .footer-logo-img { height: 64px; }
    
    /* Hero */
    .hero { padding: 90px 0 48px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-micro-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-image { height: 300px; }
    
    .hero-floating-card.card-1 { right: 10px; }
    .hero-floating-card.card-2 { left: 10px; }
    
    .hero-scroll-indicator { display: none; }
    
    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Steps */
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    /* Consultation */
    .consultation-card { padding: 40px 24px; }
    .consultation-content h2 { font-size: 28px; }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Principles */
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper { padding: 28px 20px; }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }
    .hero-image { height: 250px; }
    .hero-floating-card { display: none; }
    
    /* Logo small screens */
    .nav-logo-icon { height: 40px; }
    .nav-logo-wordmark { height: 26px; }
    .footer-logo-img { height: 56px; }
    .consultation-logo { height: 40px; }
    .scarcity-logo { height: 32px; }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value .amount { font-size: 42px; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    
    .back-to-top {
        right: 80px;
        bottom: 20px;
        width: 38px;
        height: 38px;
    }
}

/* ============================================ */
/* ANIMATIONS                                  */
/* ============================================ */

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

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

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

/* Stagger animations */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* Counter animation */
.counter-animated {
    transition: var(--transition);
}

/* Loading state for form */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

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

/* Overlay for mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================ */
/* LANGUAGE TOGGLE BUTTON                      */
/* ============================================ */

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    padding: 6px 16px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text-secondary);
    user-select: none;
}

.lang-toggle:hover {
    background: var(--light-gray);
    border-color: var(--gold);
}

.lang-active {
    color: var(--navy);
    font-weight: 700;
}

.lang-inactive {
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================ */
/* RTL (RIGHT-TO-LEFT) SUPPORT — Arabic        */
/* ============================================ */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
    font-family: 'Inter', 'Segoe UI', 'Tahoma', sans-serif;
}

/* RTL Navigation */
html[dir="rtl"] .nav-links {
    direction: rtl;
}

html[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .hamburger {
    order: -1;
}

html[dir="rtl"] .nav-links.open {
    right: auto;
    left: 0;
}

@media (max-width: 768px) {
    html[dir="rtl"] .nav-links {
        right: auto;
        left: -100%;
    }
    html[dir="rtl"] .nav-links.open {
        left: 0;
    }
}

/* RTL Hero */
html[dir="rtl"] .hero-container {
    direction: rtl;
}

html[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-trust-line {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .trust-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-ctas {
    justify-content: flex-start;
}

html[dir="rtl"] .hero-floating-card {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .card-1 {
    right: auto;
    left: -20px;
}

html[dir="rtl"] .card-2 {
    left: auto;
    right: -20px;
}

/* RTL Buttons */
html[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .btn::before {
    left: auto;
    right: -100%;
}

html[dir="rtl"] .btn:hover::before {
    right: 100%;
    left: auto;
}

/* RTL Section Headers */
html[dir="rtl"] .section-header {
    text-align: center;
}

html[dir="rtl"] .text-left .section-title,
html[dir="rtl"] .text-left .section-label {
    text-align: right;
}

html[dir="rtl"] .text-left .section-divider {
    margin-left: auto;
    margin-right: 0;
}

/* RTL Steps / How It Works */
html[dir="rtl"] .steps-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .step-connector i {
    transform: rotate(180deg);
}

html[dir="rtl"] .step-number {
    right: auto;
    left: 16px;
}

/* RTL Services Note */
html[dir="rtl"] .services-note {
    flex-direction: row-reverse;
}

/* RTL Contact Section */
html[dir="rtl"] .contact-method {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .contact-method div {
    text-align: right;
}

/* RTL FAQ */
html[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .faq-answer {
    text-align: right;
}

/* RTL Pricing */
html[dir="rtl"] .pricing-features li {
    flex-direction: row-reverse;
    text-align: right;
}

/* RTL Footer */
html[dir="rtl"] .footer-socials {
    justify-content: flex-start;
}

html[dir="rtl"] .footer-contact li {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .footer-brand {
    text-align: right;
}

/* RTL WhatsApp & Back to Top */
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .back-to-top {
    right: auto;
    left: 88px;
}

/* RTL Form */
html[dir="rtl"] .form-privacy {
    flex-direction: row-reverse;
}

html[dir="rtl"] .form-privacy i {
    margin-left: 6px;
    margin-right: 0;
}

/* RTL Scarcity */
html[dir="rtl"] .scarcity-content {
    text-align: center;
}

/* RTL loading spinner */
html[dir="rtl"] .btn.loading::after {
    margin-left: 0;
    margin-right: 8px;
}

/* ============================================ */
/* ENHANCED MOBILE RESPONSIVENESS              */
/* ============================================ */

/* ---- Better touch targets ---- */
@media (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 15px;
    }

    .btn-outline,
    .btn-primary-sm {
        width: 100%;
    }

    /* Navigation improvements */
    .nav-container {
        padding: 0 16px;
    }

    .nav-logo {
        gap: 10px;
    }

    .nav-actions {
        gap: 8px;
    }

    .lang-toggle {
        font-size: 12px;
        padding: 4px 10px;
    }

    /* Hero mobile fixes */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-trust-line {
        font-size: 13px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-micro-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-image {
        height: 220px;
        border-radius: var(--radius-lg);
    }

    .hero-image-wrapper {
        margin: 0 -8px;
    }

    /* Trust section mobile */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-card {
        padding: 24px 14px;
    }

    .trust-card h3 {
        font-size: 14px;
    }

    .trust-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .trust-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .trust-icon i {
        font-size: 20px;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .service-icon-wrap i {
        font-size: 24px;
    }

    .price-amount {
        font-size: 24px;
    }

    .services-note {
        flex-direction: column;
        text-align: center;
        font-size: 13px;
        gap: 4px;
    }

    /* How It Works mobile */
    .steps-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .step-card {
        max-width: 100%;
        padding: 24px 20px;
        text-align: center;
        background: var(--off-white);
        border-radius: var(--radius-md);
        border: 1px solid var(--light-gray);
    }

    .step-connector {
        display: none;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 22px;
    }

    .step-number {
        font-size: 36px;
    }

    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .price-value .amount {
        font-size: 40px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    /* Consultation CTA mobile */
    .consultation-card {
        padding: 32px 20px;
    }

    .consultation-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .consultation-content p {
        font-size: 14px;
    }

    .consultation-logo {
        height: 48px;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* Principles mobile */
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .principle-card {
        padding: 28px 20px;
    }

    /* FAQ mobile */
    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 15px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 16px 18px;
    }

    /* Contact section mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-header {
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center;
        font-size: 26px;
    }

    .contact-info .section-label {
        text-align: center;
    }

    .contact-description {
        text-align: center;
        font-size: 14px;
    }

    .contact-methods {
        justify-content: center;
    }

    .contact-method {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 14px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    /* Scarcity mobile */
    .scarcity-content {
        padding: 24px 16px;
    }

    .scarcity-content p {
        font-size: 14px;
    }

    .scarcity-logo {
        height: 40px;
    }

    /* Section headers mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    /* Floating elements mobile */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .back-to-top {
        right: 72px;
        bottom: 16px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ---- Extra small screens (≤ 400px) ---- */
@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

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

    .trust-card {
        padding: 20px 14px;
    }

    .pricing-card {
        padding: 28px 18px;
    }

    .price-value .amount {
        font-size: 36px;
    }

    .nav-logo-icon {
        height: 36px;
    }

    .nav-logo-wordmark {
        height: 22px;
    }

    .lang-toggle {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* ---- RTL + Mobile combined ---- */
@media (max-width: 768px) {
    html[dir="rtl"] .hero-container {
        text-align: center;
    }

    html[dir="rtl"] .hero-trust-line {
        justify-content: center;
    }

    html[dir="rtl"] .hero-micro-trust {
        align-items: center;
    }

    html[dir="rtl"] .contact-info {
        text-align: center;
    }

    html[dir="rtl"] .contact-info .section-title,
    html[dir="rtl"] .contact-info .section-label {
        text-align: center;
    }

    html[dir="rtl"] .footer-brand,
    html[dir="rtl"] .footer-nav,
    html[dir="rtl"] .footer-contact {
        text-align: center;
    }

    html[dir="rtl"] .whatsapp-float {
        left: 16px;
        right: auto;
    }

    html[dir="rtl"] .back-to-top {
        left: 72px;
        right: auto;
    }

    html[dir="rtl"] .steps-container {
        flex-direction: column;
    }
}