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

:root {
    --red-primary: #C41E3A;
    --red-dark: #8B1538;
    --red-light: #FDECEF;
    --slate-50: #F9FAFB;
    --slate-100: #F3F4F6;
    --slate-200: #E5E7EB;
    --slate-300: #D1D5DB;
    --slate-400: #9CA3AF;
    --slate-500: #6B7280;
    --slate-600: #4B5563;
    --slate-700: #374151;
    --slate-800: #1F2937;
    --slate-900: #111827;
    --slate-950: #030712;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(17, 24, 39, 0.08);
    --shadow-lg: 0 18px 50px rgba(17, 24, 39, 0.12);
    --shadow-red: 0 18px 45px rgba(196, 30, 58, 0.2);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(196, 30, 58, 0.08), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(17, 24, 39, 0.06), transparent 24%),
        linear-gradient(180deg, #f4f5f8 0%, #eef1f5 52%, #f7f4f5 100%);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.65);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 72px;
    height: 62px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.04) rotate(2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.03em;
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--red-primary);
    background: var(--red-light);
}

.nav-link.active {
    color: var(--red-primary);
    background: rgba(196, 30, 58, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    padding: 0.625rem 1.25rem;
    margin-left: 0.75rem;
    box-shadow: var(--shadow-red);
}

.nav-cta:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(196, 30, 58, 0.24);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.mobile-toggle:hover {
    background: var(--red-light);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-link:hover {
    background: var(--slate-50);
}

.mobile-link.active {
    color: var(--red-primary);
    background: rgba(155, 27, 48, 0.05);
}

.mobile-cta {
    background: var(--red-primary);
    color: white;
    margin-top: 0.75rem;
    text-align: center;
}

.mobile-cta:hover {
    background: var(--red-dark);
}

/* Main Content */
.main-content {
    padding-top: 72px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(196, 30, 58, 0.14), transparent 24%),
        radial-gradient(circle at 82% 12%, rgba(17, 24, 39, 0.08), transparent 20%),
        linear-gradient(135deg, #f7f7fa 0%, #eef2f6 54%, #f8eaee 100%);
}

.hero--compact {
    min-height: 62vh;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        linear-gradient(rgba(196, 30, 58, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 30, 58, 0.22) 1px, transparent 1px);
    background-size: 56px 56px;
}

.hero-gradient-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, transparent 70%);
    transform: translate(25%, -33%);
}

.hero-gradient-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(17, 24, 39, 0.08) 0%, transparent 70%);
    transform: translate(-25%, 33%);
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.hero-content {
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.18);
    border-radius: 50px;
    color: var(--red-primary);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.08);
    margin-bottom: 2rem;
}

.hero-badge .material-icons {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 1.75rem;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--slate-500);
    line-height: 1.75;
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(196, 30, 58, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.78);
    color: var(--slate-900);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--slate-900);
    color: white;
    border-color: var(--slate-900);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    background: linear-gradient(135deg, #edf1f5, #f7f8fa, rgba(253, 236, 239, 0.92));
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.96));
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 2rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 30, 58, 0.18);
    box-shadow: var(--shadow-md);
}

.stat-symbol {
    font-size: 2rem;
    color: var(--red-primary);
    margin-bottom: 0.85rem;
    display: inline-block;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--red-primary), var(--red-dark));
    box-shadow: 0 10px 15px -3px rgba(155, 27, 48, 0.2);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(155, 27, 48, 0.3);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--red-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--slate-500);
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    background: white;
    border-bottom: 1px solid var(--slate-100);
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.trust-item:hover {
    background: var(--slate-50);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(155, 27, 48, 0.05);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    color: var(--red-primary);
}

.trust-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

/* Section Headers */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.18);
    border-radius: 50px;
    color: var(--red-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.08);
    margin-bottom: 1.5rem;
}

.section-badge .material-icons {
    font-size: 0.95rem;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 44rem;
    margin: 1.5rem auto 0;
    line-height: 1.75;
}

.section-title--left,
.section-description--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.section--muted {
    background:
        linear-gradient(180deg, rgba(238, 241, 245, 0.96), rgba(246, 245, 247, 0.98));
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 30, 58, 0.18);
    box-shadow: var(--shadow-lg);
}

.service-card--dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.service-card--dark .service-title {
    color: white;
}

.service-card--dark .service-description {
    color: var(--slate-300);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(196, 30, 58, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    transform: scale(1.05) rotate(-4deg);
}

.service-icon svg,
.service-icon .material-icons {
    width: 28px;
    height: 28px;
    font-size: 1.7rem;
    color: var(--red-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon .material-icons {
    color: white;
}

.service-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 14px;
    color: var(--slate-600);
}

.service-features li::before {
    content: '→';
    color: var(--red-primary);
    font-weight: bold;
}

/* Dark Section */
.dark-section {
    background: var(--slate-950);
    background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), #1a0a0f);
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.dark-section .section-badge {
    background: linear-gradient(to right, rgba(155, 27, 48, 0.2), rgba(155, 27, 48, 0.1));
    border-color: rgba(155, 27, 48, 0.3);
    color: rgba(239, 68, 68, 1);
    box-shadow: 0 10px 15px -3px rgba(155, 27, 48, 0.2);
}

.dark-section .section-title {
    color: white;
}

.dark-section .section-description {
    color: var(--slate-400);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: start;
}

.services-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.detail-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 249, 0.98));
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.detail-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 0.9rem;
}

.detail-card p {
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.detail-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.detail-list li {
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--red-primary);
}

.legal-shell {
    padding: 3rem 0 6rem;
}

.legal-stack {
    display: grid;
    gap: 1.5rem;
}

.legal-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 249, 0.98));
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    color: var(--slate-900);
    margin-bottom: 0.9rem;
}

.legal-card p,
.legal-card li {
    color: var(--slate-600);
    line-height: 1.75;
}

.legal-card ul {
    margin-left: 1.2rem;
    display: grid;
    gap: 0.55rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0b111d 0%, var(--slate-950) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-description {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.75;
    max-width: 20rem;
}

.footer-brand-link {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand-main {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.footer-brand-sub {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-300);
}

.footer-meta {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-section a {
    font-size: 14px;
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--slate-500);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 12px;
    color: var(--slate-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--slate-300);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

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

.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: var(--slate-800);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: var(--slate-800);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.copy-block {
    color: var(--slate-600);
    line-height: 1.8;
    margin-top: 1.25rem;
}

.info-stack {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 1.75rem;
}

.info-card .material-icons {
    color: var(--red-primary);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.info-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

.cta-panel {
    background:
        linear-gradient(135deg, rgba(249, 250, 252, 0.96), rgba(251, 241, 244, 0.98));
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.cta-panel__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

.contact-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .material-icons {
    color: var(--red-primary);
    background: var(--red-light);
    border-radius: 12px;
    padding: 0.8rem;
    font-size: 1.3rem;
}

.contact-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item a {
    color: var(--slate-600);
    line-height: 1.7;
    text-decoration: none;
}

.contact-form-template {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--slate-300);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--slate-900);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(196, 30, 58, 0.45);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}

.form-note {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .content-grid,
    .contact-grid,
    .split-section,
    .cta-panel__content,
    .form-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-panel {
        padding: 2rem;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-container {
        padding: 3rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}
