*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --red: #bb2d29;
    --red-dark: #921f1c;
    --red-deep: #6b1614;
    --red-light: #d63b37;
    --red-pale: #fdf3f3;
    --red-tint: #f9e5e5;
    --navy: #1a1a2e;
    --navy-mid: #16213e;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f5f5f5;
    --gray-100: #e8e8e8;
    --gray-200: #d0d0d0;
    --gray-400: #999999;
    --gray-600: #555555;
    --text: #1c1c1c;
    --text-muted: #666666;
    --gold: #f0a500;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(187, 45, 41, 0.08);
    --shadow-lg: 0 12px 48px rgba(187, 45, 41, 0.15);
    --trans: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
}

.w-full {
    width: 100%;
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.process-section {
    background-color: #f9fafb;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 64px;
    height: 64px;
    background-color: rgb(187, 45, 41);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(187, 45, 41, 0.3);
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 64px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: repeating-linear-gradient(to right, #d1d5db 0, #d1d5db 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

@media (max-width: 768px) {
    .process-grid::after {
        display: none;
    }
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-brand {
    color: rgb(187, 45, 41);
}

.text-gray-muted {
    color: #6b7280;
}

.text-sm {
    font-size: 0.875rem;
}

.border-light {
    border-color: rgba(255, 255, 255, 0.3);
}

.text-light {
    color: #ffffff;
}

.rounded-xl {
    border-radius: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.top-bar-socials {
    display: flex;
    align-items: center;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
    padding-top: 80px;
    /* Adjusted for header */
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 80px;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
}

#desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

#desktop-nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--trans);
}

#desktop-nav a:hover {
    color: var(--red);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    padding: 25px 0;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-trigger svg {
    transition: transform var(--trans);
    opacity: 0.6;
}

.nav-dropdown:hover .dropdown-trigger {
    color: var(--red);
}

.nav-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid var(--gray-50);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem !important;
    border-radius: 10px;
    color: var(--navy) !important;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: var(--red-pale);
    color: var(--red) !important;
    padding-left: 24px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 1.5px solid var(--gray-200);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--trans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-pale);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--trans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(187, 45, 41, 0.2);
}

.btn-primary:hover {
    background-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(187, 45, 41, 0.3);
}

.btn-hero-solid {
    background-color: var(--red);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 9999px;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all var(--trans);
    box-shadow: 0 10px 25px rgba(187, 45, 41, 0.25);
}

.btn-hero-solid:hover {
    background-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(187, 45, 41, 0.35);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--navy);
    padding: 1rem 2.25rem;
    border-radius: 9999px;
    border: 2px solid var(--gray-200);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all var(--trans);
}

.btn-hero-outline:hover {
    border-color: var(--navy);
    background-color: var(--gray-50);
    transform: translateY(-3px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #fef2f2 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 80px;
    right: 40px;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    background-color: rgba(187, 45, 41, 0.1);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background-color: rgba(187, 45, 41, 0.05);
}

/* Hero padding override to remove top space */
.hero .container {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fef2f2;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(187, 45, 41, 0.2);
    font-size: 0.875rem;
    color: rgb(187, 45, 41);
    width: fit-content;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(187, 45, 41);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
}

h1 .highlight {
    color: rgb(187, 45, 41);
    display: block;
    margin-top: 0.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 2.25rem;
    color: rgb(187, 45, 41);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background-color: rgba(187, 45, 41, 0.95);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 384px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(185, 28, 28, 0.7);
}

.hero-badge-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #ffffff;
    opacity: 0.9;
}

.hero-badge-text {
    font-size: 1.125rem;
    line-height: 1.5;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgb(187, 45, 41);
    color: rgb(187, 45, 41);
    margin-bottom: 1rem;
    font-weight: 500;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Services Section */
.services {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgb(187, 45, 41);
}

.card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(187, 45, 41, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: rgb(187, 45, 41);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card a {
    color: rgb(187, 45, 41);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s;
}

.card:hover a {
    gap: 0.5rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(187, 45, 41, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: rgb(187, 45, 41);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-column:last-child {
    padding-top: 2rem;
}

.image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.image-wrapper:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Client Types Section */
.client-types {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.client-types::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, rgb(187, 45, 41) 1px, transparent 0);
    background-size: 40px 40px;
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.client-card {
    text-align: center;
}

.client-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(187, 45, 41, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.card:hover .client-icon {
    transform: scale(1.1);
}

.client-icon svg {
    width: 40px;
    height: 40px;
    stroke: rgb(187, 45, 41);
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.number-card .card-icon {
    background-color: rgb(187, 45, 41);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.cta-box {
    background-color: rgb(187, 45, 41);
    color: white;
    border-radius: 3rem;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(187, 45, 41, 0.2);
}

.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.cta-box::before {
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
}

.cta-box::after {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
}

.cta-box h2,
.cta-box h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.cta-box p {
    font-size: 1.25rem;
    color: #fecaca;
    margin-bottom: 2rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-white {
    background-color: white;
    color: rgb(187, 45, 41);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid white;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: rgba(185, 28, 28, 0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgb(187, 45, 41) 0%, rgb(150, 35, 32) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
}

.contact::before {
    top: 40px;
    right: 80px;
    width: 384px;
    height: 384px;
}

.contact::after {
    bottom: 40px;
    left: 80px;
    width: 384px;
    height: 384px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.contact-card-label {
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    pointer-events: none;
    /* Make it "no link" interaction-wise if requested */
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    color: #1f2937;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: rgb(187, 45, 41);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

/* Redesigned Contact Section */
.new-contact-section {
    background-color: rgb(187, 45, 41);
    color: white;
    padding: 4rem 0;
}

.contact-headline {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.contact-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.glass-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.glass-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

.full-width-glass {
    width: 100%;
    text-align: center;
}

.full-width-glass h4 {
    margin-bottom: 0.5rem;
}

.contact-info-footer {
    margin-top: 1rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item-group h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-sub-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.875rem;
}

.contact-icon-small {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-sub-item span {
    line-height: 1.6;
    padding-top: 4px;
}

.white-contact-card {
    background: white;
    color: #1f2937;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.white-contact-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.white-contact-card .sub-text {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group-full {
    margin-bottom: 1.5rem;
}

.input-styled {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-family: inherit;
    transition: all 0.2s;
}

.input-styled:focus {
    outline: none;
    border-color: rgb(187, 45, 41);
    background: white;
    box-shadow: 0 0 0 4px rgba(187, 45, 41, 0.1);
}

.btn-send-full {
    width: 100%;
    background: rgb(187, 45, 41);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-send-full:hover {
    background: rgb(167, 35, 31);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(187, 45, 41, 0.3);
}

.privacy-notice {
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Redesign Styles */
.footer-contact-bar {
    background-color: rgb(187, 45, 41);
    color: white;
    padding: 1.5rem 0;
}

.footer-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-contact-container {
        justify-content: center;
        text-align: center;
    }

    .contact-info-list {
        justify-content: center;
    }
}

.contact-info-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    pointer-events: none;
}

.contact-info-item svg {
    opacity: 0.8;
}

.btn-white-outline {
    background-color: white;
    color: rgb(187, 45, 41);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-white-outline:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.main-footer {
    background-color: #f8fafc;
    padding: 5rem 0 3rem;
    color: rgb(15, 23, 42);
}

.footer-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 60px;
}

.footer-description {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: rgb(187, 45, 41);
    color: white;
    border-color: rgb(187, 45, 41);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: rgb(15, 23, 42);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 1rem;
}

.footer-links-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: rgb(187, 45, 41);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.footer-links-list a:hover {
    color: rgb(187, 45, 41);
    padding-left: 0.5rem;
}

.footer-links-list a:hover::before {
    opacity: 1;
}

.footer-cta-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    text-align: center;
    width: 100%;
}

.footer-cta-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(15, 23, 42);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.cta-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-contact-item a:hover {
    color: rgb(187, 45, 41);
}

.cta-contact-item svg {
    color: rgb(187, 45, 41);
}

.btn-cta-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(187, 45, 41);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta-footer:hover {
    background-color: rgb(167, 35, 31);
    box-shadow: 0 10px 15px -3px rgba(187, 45, 41, 0.3);
    transform: translateY(-2px);
}

/* Services Page Specific */
.services-hero {
    background-color: #f8fafc;
    padding: 6rem 0 4rem;
    border-bottom: 1px solid #e2e8f0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-badge {
    display: inline-block;
    color: rgb(187, 45, 41);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.service-category h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.service-category p {
    color: #64748b;
    font-size: 1.125rem;
}

.service-details {
    padding: 6rem 0;
}

.footer-copyright-bar {
    border-top: 1px solid #e2e8f0;
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-copyright-bar {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .legal-links {
        justify-content: center;
    }
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: rgb(187, 45, 41);
}

/* Responsive */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo,
    .social-links,
    .footer-links-list li a,
    .cta-contact-item {
        justify-content: center;
    }

    .footer-links-list a:hover {
        padding-left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #desktop-nav {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-badge {
        left: 0;
        right: 0;
        bottom: -48px;
        max-width: 100%;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* --- New Premium Design System Sections --- */
.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy);
}

.logo-text span {
    color: var(--red);
}

/* BREADCRUMB */
.breadcrumb {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb-inner a {
    color: var(--text-muted);
    transition: color var(--trans);
}

.breadcrumb-inner a:hover {
    color: var(--red);
}

.breadcrumb-inner .sep {
    color: var(--gray-200);
}

/* PAGE HERO */
.page-hero {
    background: var(--white);
    padding: 88px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, var(--red-pale) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, var(--off-white) 0%, transparent 60%);
    opacity: 0.6;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--off-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    opacity: 0.5;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-pale);
    border: 1px solid var(--red-tint);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero h1 .highlight {
    color: var(--red);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-solid {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
}

.btn-hero-solid:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 45, 41, 0.25);
}

.btn-hero-outline {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red-tint);
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
}

.btn-hero-outline:hover {
    background: var(--red-pale);
    border-color: var(--red);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--red);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.hero-panel {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.hero-panel-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
    margin-bottom: 18px;
}

.service-pill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--trans);
}

.service-pill:hover {
    background: var(--red-pale);
    border-color: var(--red-tint);
    color: var(--red);
}

.pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(240, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.pill-label {
    flex: 1;
}

.pill-arrow {
    font-size: 0.75rem;
    color: var(--gray-200);
}

/* INTRO STRIP */
.intro-strip {
    padding: 80px 0 60px;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-left h2 {
    margin-bottom: 16px;
}

.intro-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.check-list li::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 12px;
}

.intro-right {
    position: relative;
}

.intro-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

.float-card {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 24px;
}

.fc-stat .n {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
}

.fc-stat .l {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ALL SERVICES GRID */
.all-services {
    padding: 20px 0 80px;
    background: var(--off-white);
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.scard {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--trans);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.scard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
}

.scard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(187, 45, 41, 0.15);
}

.scard:hover::after {
    transform: scaleX(1);
}

.scard-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--trans);
}

.scard-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
}

.scard:hover .scard-icon {
    background: var(--red-tint);
}

.scard-tag {
    display: inline-block;
    background: var(--gray-50);
    color: var(--gray-400);
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 10px;
}

.scard h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.scard p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.scard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.scard-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--trans);
}

.scard-link:hover {
    gap: 10px;
}

.scard-ideal {
    font-size: 0.72rem;
    color: var(--gray-400);
}

/* PROCESS */
.process-sec-premium {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.process-sec-premium::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 45, 41, 0.15) 0%, transparent 70%);
}

.process-sec-premium h2 {
    color: var(--white);
}

.process-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

.process-connector-premium {
    position: absolute;
    top: 44px;
    left: 13%;
    right: 13%;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, rgba(187, 45, 41, 0.2) 100%);
}

.pstep {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--trans);
}

.pstep:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.pstep-num-premium {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px rgba(187, 45, 41, 0.5);
}

.pstep h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.pstep p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* WHO WE SERVE */
.who-serve-premium {
    background: var(--white);
    padding: 80px 0;
}

.client-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ccard-premium {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    text-align: center;
    transition: all var(--trans);
}

.ccard-premium:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(187, 45, 41, 0.2);
    transform: translateY(-4px);
}

.ccard-icon-premium {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ccard-icon-premium svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
}

.ccard-premium h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.ccard-premium p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* WHY CHOOSE */
.why-sec-premium {
    background: var(--off-white);
    padding: 80px 0;
}

.why-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-img-wrap-premium {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img-wrap-premium img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.why-reasons-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.reason-premium {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: all var(--trans);
}

.reason-premium:hover {
    box-shadow: var(--shadow);
    border-color: rgba(187, 45, 41, 0.15);
}

.reason-num-premium {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red-tint);
    line-height: 1;
    margin-bottom: 8px;
}

.reason-premium h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.reason-premium p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA BAND */
.cta-band {
    background: var(--red);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, var(--red-light) 100%);
}

.cta-band::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse 40% 50% at 75% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
}

.cta-band-inner {
    position: relative;
    z-index: 10;
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    background: var(--white);
    color: var(--red);
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
}

.btn-cta-white:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-cta-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 14px 30px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
}

.btn-cta-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* CONTACT PREMIUM */
.contact-sec-premium {
    background: var(--red);
    padding: 80px 0;
}

.contact-headline {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: -80px auto 52px;
    text-align: center;
    line-height: 1.5;
    padding: 20px 0;
}

.glass-cards-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.gcard-premium {
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 22px;
    backdrop-filter: blur(8px);
    transition: all var(--trans);
}

.gcard-premium:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.gcard-premium h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.gcard-premium p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.contact-info-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.cinfo-block h5 {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cinfo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cinfo-icon svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.cinfo-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.7;
}

.btn-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .float-card {
        left: 0;
    }

    .process-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-connector-premium {
        display: none;
    }

    .why-grid-premium {
        grid-template-columns: 1fr;
    }

    .why-img-wrap-premium {
        display: none;
    }
}

@media (max-width: 540px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .client-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* --- MEDIA PLANNING & STRATEGY PAGE --- */
/* ── MEDIA PLANNING & STRATEGY (MPS) ── */
.mps-crumb {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 0;
}

.mps-crumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.mps-crumb-inner a {
    color: var(--text-muted);
    transition: color var(--trans);
    text-decoration: none;
}

.mps-crumb-inner a:hover {
    color: var(--red);
}

.mps-crumb-inner .sep {
    color: var(--gray-200);
}

.mps-badge {
    display: inline-block;
    background: var(--red-tint);
    color: var(--red);
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.mps-hero {
    background: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.mps-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 75% 20%, rgba(187, 45, 41, 0.03) 0%, transparent 60%);
}

.mps-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.mps-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-pale);
    border: 1px solid rgba(187, 45, 41, 0.1);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.mps-pulse {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: mps-pulse 2s infinite;
}

@keyframes mps-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.5);
    }
}

.mps-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

.mps-hero h1 em {
    font-style: normal;
    color: var(--red);
}

.mps-hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.mps-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.mps-btn-solid {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
    text-decoration: none;
}

.mps-btn-solid:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(187, 45, 41, 0.25);
}

.mps-btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
    text-decoration: none;
}

.mps-btn-outline:hover {
    border-color: var(--navy);
    background: rgba(15, 23, 42, 0.05);
}

.mps-hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--gray-100);
}

.mps-hstat {
    flex: 1;
    padding: 20px 0;
    border-right: 1px solid var(--gray-100);
    text-align: center;
}

.mps-hstat:last-child {
    border-right: none;
}

.mps-hstat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
}

.mps-hstat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.mps-hero-img-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mps-hero-img-wrap {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.25);
}

.mps-hero-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.mps-hero-img-card {
    background: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mps-hero-img-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mps-hero-img-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
}

.mps-hero-img-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.mps-hero-img-card strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.mps-fu {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .55s ease, transform .55s ease;
}

.mps-fu.mps-in {
    opacity: 1;
    transform: translateY(0);
}

.mps-overview {
    padding: 80px 0;
    background: var(--white);
}

.mps-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mps-overview-left h2 {
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
}

.mps-overview-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.mps-highlight-bar {
    background: var(--red-pale);
    border-left: 4px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin-top: 24px;
}

.mps-highlight-bar p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin: 0;
    line-height: 1.6;
}

.mps-overview-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mps-stat-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--trans);
    text-decoration: none;
}

.mps-stat-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(187, 45, 41, 0.15);
    transform: translateX(4px);
}

.mps-stat-card-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.mps-stat-card-text h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    font-family: 'Sora', sans-serif;
}

.mps-stat-card-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.mps-approach {
    padding: 80px 0;
    background: var(--off-white);
}

.mps-approach-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 60px;
}

.mps-approach-header-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.mps-approach-header-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.mps-approach-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(187, 45, 41, 0.15) 0%, transparent 60%);
}

.mps-approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mps-astep {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.mps-astep:last-child {
    border-bottom: none;
}

.mps-astep-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(187, 45, 41, 0.35);
}

.mps-astep-body h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.mps-astep-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.mps-key-services {
    padding: 80px 0;
    background: var(--white);
}

.mps-ks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.mps-ks-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--trans);
    text-decoration: none;
}

.mps-ks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
}

.mps-ks-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(187, 45, 41, 0.12);
    transform: translateY(-4px);
}

.mps-ks-card:hover::before {
    transform: scaleX(1);
}

.mps-ks-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.mps-ks-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
}

.mps-ks-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.mps-ks-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.mps-ks-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mps-ks-tag {
    background: var(--red-tint);
    color: var(--red);
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 99px;
}

.mps-results {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mps-results::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 45, 41, 0.18) 0%, transparent 70%);
}

.mps-results h2 {
    color: var(--white);
    font-family: 'Sora', sans-serif;
}

.mps-results .lead {
    color: rgba(255, 255, 255, 0.5);
}

.mps-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.mps-rcard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--trans);
}

.mps-rcard:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
    border-color: rgba(187, 45, 41, 0.3);
}

.mps-rcard-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(187, 45, 41, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.mps-rcard-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff8a88;
}

.mps-rcard-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
}

.mps-rcard h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}

.mps-rcard p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0;
}

.mps-why-riyo {
    padding: 80px 0;
    background: var(--off-white);
}

.mps-why-riyo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mps-why-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mps-why-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.mps-why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mps-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--trans);
}

.mps-why-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(187, 45, 41, 0.15);
}

.mps-why-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mps-why-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
}

.mps-why-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.mps-why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.mps-timeline-sec {
    padding: 80px 0;
    background: var(--white);
}

.mps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.mps-timeline::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red) 0%, rgba(187, 45, 41, 0.1) 100%);
}

.mps-titem {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    position: relative;
}

.mps-titem:last-child {
    padding-bottom: 0;
}

.mps-titem-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--red);
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(187, 45, 41, 0.08);
    z-index: 1;
    background: var(--white);
}

.mps-titem-body {
    padding-top: 14px;
    flex: 1;
}

.mps-titem-body h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.mps-titem-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.mps-titem-tag {
    display: inline-block;
    background: var(--red-tint);
    color: var(--red);
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 8px;
}

.mps-cta-band {
    background: var(--off-white);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.mps-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 75% 20%, rgba(187, 45, 41, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.mps-cta-band::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -10%;
    width: 120%;
    height: 220%;
    background: radial-gradient(ellipse 40% 50% at 75% 50%, rgba(187, 45, 41, 0.03) 0%, transparent 60%);
}

.mps-cta-inner {
    position: relative;
    z-index: 1;
}

.mps-cta-inner h2 {
    color: var(--navy);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    font-family: 'Sora', sans-serif;
}

.mps-cta-inner p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.mps-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-pale);
    border: 1px solid rgba(187, 45, 41, 0.1);
    border-radius: 99px;
    padding: 10px 20px;
    color: var(--red);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.mps-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.mps-btn-cw {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
    text-decoration: none;
}

.mps-btn-cw:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(187, 45, 41, 0.25);
}

.mps-btn-cg {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px 30px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans);
    display: inline-block;
    text-decoration: none;
}

.mps-btn-cg:hover {
    border-color: var(--navy);
    background: rgba(15, 23, 42, 0.05);
}

.mps-contact-sec {
    background: var(--navy);
    padding: 80px 0;
}

.mps-contact-headline {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
    line-height: 1.5;
}

.mps-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mps-contact-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mps-gcards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mps-gc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 18px;
    transition: all var(--trans);
}

.mps-gc:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(187, 45, 41, 0.3);
}

.mps-gc h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.mps-gc p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.mps-ci-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mps-ci-block h5 {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.mps-ci-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mps-ci-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(187, 45, 41, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mps-ci-icon svg {
    stroke: #ff8a88;
}

.mps-ci-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.mps-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.mps-form-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
}

.mps-form-card .mps-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.mps-frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.mps-fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mps-fgf {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.mps-fg label,
.mps-fgf label {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.mps-fi {
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color var(--trans);
    outline: none;
    width: 100%;
    background: var(--white);
}

.mps-fi:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(187, 45, 41, 0.1);
}

textarea.mps-fi {
    resize: vertical;
}

.mps-btn-send {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans);
    margin-top: 4px;
}

.mps-btn-send:hover {
    background: var(--red-light);
    box-shadow: 0 6px 24px rgba(187, 45, 41, 0.4);
    transform: translateY(-1px);
}

.mps-priv {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

@media(max-width:900px) {
    .mps-hero-grid {
        grid-template-columns: 1fr;
    }

    .mps-hero-img-col {
        display: none;
    }

    .mps-contact-grid {
        grid-template-columns: 1fr;
    }

    .mps-gcards {
        grid-template-columns: 1fr;
    }

    .mps-frow {
        grid-template-columns: 1fr;
    }

    .mps-why-riyo-grid {
        grid-template-columns: 1fr;
    }

    .mps-why-img {
        display: none;
    }
}

@media(max-width:768px) {
    .mps-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mps-approach-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mps-approach-header-img {
        display: none;
    }

    .mps-results-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:640px) {
    .mps-ks-grid {
        grid-template-columns: 1fr;
    }
}

/* ── STANDARDIZED INSIDE HERO (Standard for all inside pages) ── */
.inside-hero {
    background: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.inside-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 75% 20%, rgba(187, 45, 41, 0.03) 0%, transparent 60%);
}

.inside-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.inside-hero-left {
    padding-bottom: 60px;
}

.inside-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-pale);
    border: 1px solid rgba(187, 45, 41, 0.1);
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.inside-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

.inside-hero h1 .highlight {
    color: var(--red);
    display: inline;
}

.inside-hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.inside-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.inside-btn-solid {
    background: var(--red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--trans);
    display: inline-block;
}

.inside-btn-solid:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(187, 45, 41, 0.3);
}

.inside-btn-outline {
    background: transparent;
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--trans);
    display: inline-block;
}

.inside-btn-outline:hover {
    border-color: var(--navy);
    background: rgba(15, 23, 42, 0.05);
}

.inside-hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.inside-hstat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2px;
}

.inside-hstat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.inside-hero-img-col {
    position: relative;
}

.inside-hero-img-wrap {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

.inside-hero-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* ── CONTACT PAGE SPECIFIC ── */
.cnt-main {
    padding: 100px 0;
    background: var(--off-white);
}

.cnt-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    margin-bottom: 80px;
}

.cnt-info-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cnt-info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: -10px;
}

.cnt-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cnt-info-icon {
    width: 48px;
    height: 48px;
    background: var(--red-pale);
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cnt-info-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.cnt-info-item a, .cnt-info-item p {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color var(--trans);
}

.cnt-info-item a:hover {
    color: var(--red);
}

.cnt-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cnt-form-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.cnt-fg {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cnt-fg label {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
}

.cnt-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-100);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: all var(--trans);
    outline: none;
    background: var(--gray-50);
}

.cnt-input:focus {
    background: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(187, 45, 41, 0.1);
}

.cnt-map {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

@media (max-width: 1024px) {
    .inside-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .inside-hero-img-col {
        display: none;
    }
    
    .cnt-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
