/* ═══════════════════════════════════════════
   OFINCA S.C. — Corporate Security Design System
   Navy · Gold · Industrial Gray
   ═══════════════════════════════════════════ */

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

:root {
    /* Navy Corporate */
    --navy-900: #0a1628;
    --navy-800: #0f1d32;
    --navy-700: #152540;
    --navy-600: #1a2d4e;
    --navy-500: #243d66;

    /* Gold / Security Accent */
    --gold-500: #c9a84c;
    --gold-400: #d4b85e;
    --gold-300: #e0c872;
    --gold-200: #ebd896;
    --gold-glow: rgba(201, 168, 76, 0.2);

    /* Industrial Gray */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;

    /* Functional */
    --bg-body: #080e1a;
    --bg-section: #0c1322;
    --bg-section-alt: #0f172a;
    --bg-card: #131c2e;
    --bg-card-hover: #182338;
    --border: rgba(201, 168, 76, 0.08);
    --border-hover: rgba(201, 168, 76, 0.2);
    --border-gold: rgba(201, 168, 76, 0.35);

    /* Text */
    --text-white: #f1f5f9;
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e1;
    /* Color más claro para mejor contraste */
    --text-muted: #94a3b8;
    /* De 64748b a 94a3b8 para WCAG */
    --text-gold: var(--gold-400);

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.1);

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Spacing */
    --section-py: 100px;
    --container-max: 1180px;

    /* Animation */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    /* 17px desktop */
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color .3s var(--ease);
}

a:hover {
    color: var(--gold-300);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible,
input:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 4px;
}

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

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

/* ═══════════════════════════════════════════
   TIPOGRAFÍA GLOBAL
   ═══════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: 3.25rem;
    /* 52px */
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

/* Botones — Montserrat 600 */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text small {
    font-weight: 400;
    font-size: 0.55em;
    opacity: 0.45;
    letter-spacing: 0;
    text-transform: none;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color .3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width .3s var(--ease);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text-white);
}

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

.nav-links .btn-nav {
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 10px 24px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid var(--gold-500);
    cursor: pointer;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.nav-links .btn-nav::after {
    display: none !important;
}

.nav-links .btn-nav:hover {
    background: var(--gold-400);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
    border-color: var(--gold-400);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-400);
    border-radius: 4px;
    transition: all .3s var(--ease);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--navy-800);
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Deep linear gradient: from deep navy to near black */
    background: linear-gradient(180deg,
            rgba(7, 27, 45, 0.7) 0%,
            rgba(5, 18, 32, 0.85) 50%,
            rgba(3, 10, 20, 0.98) 100%);
    z-index: 1;
}

/* Subtle geometric pattern */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.35;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -120px;
    right: -80px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

.hero-particles::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -60px;
    left: -40px;
    border: 1px solid rgba(201, 168, 76, 0.04);
    border-radius: 50%;
    animation: orbit 16s linear infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #EBD48E;
    /* Light gold for readability */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.125rem, 5.5vw, 3.25rem);
    /* 34px mobile / 52px desktop */
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-300) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shift 5s ease infinite;
}

@keyframes gold-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Certifications list */
.hero-certs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin: 0 auto 36px;
    max-width: 680px;
}

.hero-certs span {
    font-size: 0.82rem;
    color: var(--gold-400);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-item strong {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
}

.trust-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

.trust-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius-xs);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all .35s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy-800);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--navy-700);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Featured Hero Button for maximum contrast */
.btn-accent {
    background: var(--gold-500);
    color: var(--navy-900);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25);
    border: 1px solid var(--gold-500);
}

.btn-accent:hover {
    background: var(--gold-400);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
    border-color: var(--gold-400);
}

.btn-ghost {
    background: transparent;
    color: var(--gold-400);
    border: 1px solid var(--gold-400);
}

.btn-ghost:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-300);
    border-color: var(--gold-300);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.btn-full {
    width: 100%;
}

.btn-service {
    background: transparent;
    color: var(--gold-400);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    border-radius: var(--radius-xs);
    margin-top: 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s var(--ease);
}

.service-card.expanded .btn-service,
.service-card:hover .btn-service {
    opacity: 1;
    transform: translateY(0);
}

.btn-service:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}


/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    /* 36px */
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold-500);
    margin: 18px auto 0;
}

.section-header p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    /* 17px */
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Section label / eyebrow ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold-500);
}


/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-section {
    padding: var(--section-py) 0;
    background: var(--bg-section);
    position: relative;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 32px 26px;
    cursor: pointer;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover,
.service-card.expanded {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-xs);
    margin-bottom: 20px;
    color: var(--gold-400);
    transition: all .3s var(--ease);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.25);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.service-short {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.service-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease), opacity .3s;
    opacity: 0;
}

.service-card.expanded .service-expanded {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
}

.service-expanded ul {
    list-style: none;
}

.service-expanded li {
    padding: 5px 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    position: relative;
}

.service-expanded li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-weight: 700;
}


/* ═══════════════════════════════════════════
   INDUSTRIES / SECTORS
   ═══════════════════════════════════════════ */
.industries-section {
    padding: 80px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 20px;
    text-align: center;
    transition: all .35s var(--ease);
}

.industry-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        var(--navy-800);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-dark {
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        var(--navy-900);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   TRUST / CERTIFICATIONS
   ═══════════════════════════════════════════ */
.trust-section {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

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

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 36px 22px;
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
}

.trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transition: transform .4s var(--ease);
}

.trust-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.trust-card:hover::after {
    transform: scaleX(1);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    color: var(--gold-500);
    transition: all .3s var(--ease);
}

.trust-card:hover .trust-card-icon {
    background: rgba(201, 168, 76, 0.15);
    transform: scale(1.08);
}

.trust-card-icon svg {
    width: 26px;
    height: 26px;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

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


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: background .3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--gold-500);
    border-radius: 2px;
    transition: transform .3s var(--ease);
}

.faq-icon span:first-child {
    top: 50%;
    left: 2px;
    right: 2px;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon span:last-child {
    left: 50%;
    top: 2px;
    bottom: 2px;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

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

.faq-answer p {
    padding: 12px 20px 20px !important;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 !important;
}


/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-section {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

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

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-xs);
    color: var(--gold-400);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3px;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--text-secondary);
}

.contact-info-item a:hover {
    color: var(--gold-400);
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    /* Evita zoom automático en iOS (mínimo 16px) */
    transition: all .3s var(--ease);
    outline: none;
    min-height: 44px;
    /* Touch target */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 5px;
    min-height: 18px;
}

.form-group input.error,
.form-group select.error {
    border-color: #f87171;
}

/* Loader */
.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(10, 22, 40, 0.3);
    border-top-color: var(--navy-900);
    border-radius: 50%;
    animation: spin .6s linear infinite;
}

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

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loader {
    display: block;
}

/* Form messages */
.form-message {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    margin-top: 18px;
}

.form-message.visible {
    display: flex;
}

.form-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
}

.form-success svg {
    color: #22c55e;
    flex-shrink: 0;
}

.form-error-msg {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #fca5a5;
}

.form-error-msg svg {
    color: #f87171;
    flex-shrink: 0;
}

.form-message p {
    font-size: 0.88rem;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 26, 0.88);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform .4s var(--ease-bounce);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color .3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.modal-content>p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    margin-bottom: 12px;
    outline: none;
    transition: border-color .3s;
}

.modal-content input::placeholder {
    color: var(--text-muted);
}

.modal-content input:focus,
.modal-content select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.modal-content select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.modal-content select option {
    background: var(--bg-card);
}

.modal-content .btn {
    margin-top: 6px;
}

.modal-content .form-group {
    margin-bottom: 12px;
}

.modal-content .form-message {
    padding: 12px;
    font-size: 0.85rem;
}


/* ═══════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════ */
/* Mobile Call */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 899;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 14px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-sm);
}

.mobile-call-btn svg {
    stroke: var(--navy-900);
}

.mobile-call-btn:hover {
    color: var(--navy-900);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gold-400);
    border-radius: var(--radius-xs);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: all .3s var(--ease);
}

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

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


/* ═══════════════════════════════════════════
   ASSISTANT (Chat Widget)
   ═══════════════════════════════════════════ */
.assistant-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.assistant-overlay.active {
    display: flex;
}

.assistant-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 500px;
    height: 90vh;
    height: 90dvh;
    max-height: 700px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 168, 76, 0.15);
}

.assistant-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
}

.assistant-header {
    padding: 24px;
    padding-right: 50px;
    background: var(--bg-section-alt);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.assistant-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy-800);
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.assistant-header-info h2 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0;
}

.assistant-header-info p {
    font-size: 0.8rem !important;
    color: var(--text-gold);
    margin: 0 !important;
}

.assistant-chat {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-behavior: smooth;
}

/* Chat Bubbles */
.msg {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: bubbleIn 0.4s var(--ease) forwards;
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.msg-bot {
    align-self: flex-start;
    background: var(--bg-section);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border);
}

.msg-user {
    align-self: flex-end;
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 600;
    border-bottom-right-radius: 4px;
}

/* Assistant Options */
.assistant-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.opt-btn {
    width: 100%;
    min-height: 44px;
    /* Touch target */
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.opt-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-400);
    color: var(--text-white);
}

.assistant-footer {
    padding: 16px 24px;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
}

.assistant-progress {
    height: 4px;
    background: var(--navy-800);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gold-500);
    transition: width 0.4s ease;
}

/* Forms inside assistant */
.assistant-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assistant-form input,
.assistant-form textarea {
    height: 48px;
    padding: 0 16px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 16px !important;
    font-family: var(--font-body);
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.assistant-form textarea {
    height: auto;
    min-height: 80px;
    padding: 12px 16px;
    resize: vertical;
}

.assistant-form input::placeholder,
.assistant-form textarea::placeholder {
    color: var(--text-muted);
}

.assistant-form input:focus,
.assistant-form textarea:focus {
    border-color: var(--gold-500);
    outline: none;
}

@media (max-width: 480px) {
    .assistant-content {
        height: 100vh;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        border: none;
    }
}

/* Assistant CTA Card below contact form */
.assistant-cta-card {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(8, 14, 26, 0.4), rgba(201, 168, 76, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.assistant-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
    transition: 0.5s;
}

.assistant-cta-card:hover::before {
    left: 100%;
}

.assistant-cta-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 168, 76, 0.1);
}

.assistant-cta-card p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 24px !important;
    letter-spacing: 0.5px;
}

.assistant-cta-card .btn-outline {
    border-color: var(--gold-500);
    color: var(--gold-500);
}

.assistant-cta-card .btn-outline:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}




/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--navy-900);
    border-top: 1px solid var(--border);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 14px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-links li {
    color: var(--text-muted);
    font-size: 0.88rem !important;
    transition: color .3s;
}

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

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem !important;
    letter-spacing: 0.3px;
}

.footer-logo {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .8s var(--ease) forwards;
}

.delay-1 {
    animation-delay: .12s;
}

.delay-2 {
    animation-delay: .24s;
}

.delay-3 {
    animation-delay: .36s;
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════
   BENEFITS (¿Por qué?)
   ═══════════════════════════════════════════ */
.benefits-section {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
}

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

.benefit-item {
    display: flex;
    gap: 22px;
    padding: 30px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all .35s var(--ease);
    align-items: flex-start;
}

.benefit-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-500);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
    text-align: center;
}

.benefit-item:hover .benefit-number {
    opacity: 0.7;
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════
   PROCESS (¿Cómo funciona?)
   ═══════════════════════════════════════════ */
.process-section {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

.process-steps {
    max-width: 740px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-400);
    flex-shrink: 0;
    transition: all .35s var(--ease);
}

.process-step:hover .step-number {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold-500);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.step-content {
    padding-bottom: 8px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.process-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    margin-left: 25px;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-py: 72px;
    }

    .container {
        padding: 0 16px;
    }

    body {
        font-size: 1rem;
        /* 16px móvil */
        padding-bottom: 100px;
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }

    h1 {
        font-size: 2.125rem;
        /* 34px móvil */
        line-height: 1.2;
    }

    h2 {
        font-size: 1.625rem;
        /* 26px móvil */
        line-height: 1.2;
    }

    p {
        font-size: 1rem;
        /* 16px */
        line-height: 1.6;
    }

    .hamburger {
        display: flex;
        min-height: 44px;
        min-width: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--navy-800);
        padding: 90px 32px 32px;
        gap: 0;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        border-left: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        /* Touch target excelente */
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        text-transform: none;
        letter-spacing: 0;
    }

    .nav-links a::after {
        display: none;
    }

    .btn-nav {
        text-align: center !important;
        margin-top: 20px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 100px 0 56px;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 18px;
    }

    .trust-divider {
        width: 36px;
        height: 1px;
    }

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

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

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

    .contact-form {
        padding: 24px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 24px 16px 120px;
        padding-bottom: calc(120px + env(safe-area-inset-bottom));
    }

    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .modal-content {
        padding: 28px 18px;
        margin: 10px;
    }

    /* Floating buttons adjustment to avoid overlap */
    .mobile-call-btn {
        display: flex;
        height: 52px;
        /* Touch target fix */
    }

    .back-to-top {
        bottom: 84px;
        /* Colocado sobre la barra de llamada */
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .process-step {
        gap: 16px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .process-connector {
        margin-left: 20px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-answer p {
        padding: 8px 16px 16px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 16px;
    }

    .btn-lg {
        padding: 14px 26px;
        font-size: 0.9rem;
    }

    .trust-item strong {
        font-size: 1.7rem;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.625rem;
        /* 26px */
    }
}