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

:root {
    --navy: #0f1b2d;
    --navy-light: #1a2b45;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #3b82f6;
    --indigo: #4338ca;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.35s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    padding: 0.8rem 0;
}

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

.nav-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 230px;
    height: 36px;
}

.nav-logo-img {
    display: block;
    height: 100%;
    width: auto;
    transition: opacity 0.25s ease;
}

.nav-logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled .nav-logo-light { opacity: 0; }
.navbar.scrolled .nav-logo-dark { opacity: 1; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-menu a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.navbar.scrolled .nav-menu a { color: var(--slate-600); }
.navbar.scrolled .nav-menu a:hover { color: var(--blue); }

.nav-cta-btn {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.6rem 1.6rem;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: all 0.3s !important;
}

.nav-cta-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ===== CONTAINER ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(37,99,235,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(67,56,202,0.1) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { max-width: 560px; }

.hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue-light);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59,130,246,0.3);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.35);
}

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

.btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Terminal */
.terminal {
    background: #0d1117;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.terminal-header {
    background: #161b22;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.terminal-dot.r { background: #ff5f57; }
.terminal-dot.y { background: #ffbd2e; }
.terminal-dot.g { background: #28c840; }

.terminal-title {
    font-size: 0.72rem;
    color: var(--slate-400);
    margin-left: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.terminal-body {
    padding: 1.2rem 1.4rem;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.78rem;
    line-height: 1.8;
    min-height: 200px;
}

.terminal-body .line {
    opacity: 0;
    animation: typeLine 0.4s ease forwards;
}

.terminal-body .line:nth-child(1) { animation-delay: 0.3s; }
.terminal-body .line:nth-child(2) { animation-delay: 0.7s; }
.terminal-body .line:nth-child(3) { animation-delay: 1.1s; }
.terminal-body .line:nth-child(4) { animation-delay: 1.5s; }
.terminal-body .line:nth-child(5) { animation-delay: 1.9s; }
.terminal-body .line:nth-child(6) { animation-delay: 2.3s; }
.terminal-body .line:nth-child(7) { animation-delay: 2.7s; }
.terminal-body .line:nth-child(8) { animation-delay: 3.1s; }
.terminal-body .line:nth-child(9) { animation-delay: 3.5s; }

@keyframes typeLine {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.t-keyword { color: #ff7b72; }
.t-func { color: #d2a8ff; }
.t-string { color: #a5d6ff; }
.t-comment { color: #8b949e; }
.t-const { color: #79c0ff; }
.t-param { color: #ffa657; }
.t-white { color: #e6edf3; }
.t-bracket { color: #8b949e; }
.t-green { color: #7ee787; }

/* AI Visual card */
.ai-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.ai-icon-wrap {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(37,99,235,0.15);
    flex-shrink: 0;
}

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

.ai-card-info h3 {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.ai-card-info p {
    font-size: 0.78rem;
    color: var(--slate-400);
}

.ai-card-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ai-card-status .pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #28c840;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ai-card-status span {
    font-size: 0.75rem;
    color: #28c840;
    font-weight: 500;
}

/* Stats bar */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 3rem 0;
}

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

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 10%;
    height: 80%;
    width: 1px;
    background: var(--slate-200);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    margin-bottom: 0.3rem;
}

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

/* ===== TRUSTED BAR ===== */
.trusted-bar {
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    padding: 2rem 0;
}

.trusted-bar .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.trusted-bar p {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-400);
    font-weight: 600;
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.trusted-logos span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-300);
    letter-spacing: -0.5px;
}

/* ===== SECTION COMMON ===== */
section { padding: 5.5rem 0; }

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

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

.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--blue-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.service-icon-wrap {
    width: 54px; height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-icon-wrap svg {
    width: 26px; height: 26px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.si-blue { background: var(--blue); }
.si-indigo { background: var(--indigo); }
.si-teal { background: #0d9488; }
.si-amber { background: #d97706; }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== AI SECTION ===== */
.ai-section {
    background: linear-gradient(135deg, var(--navy) 0%, #111827 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(99,102,241,0.08) 0%, transparent 50%);
}

.ai-section .container { position: relative; z-index: 1; }

.ai-section .section-label { color: rgba(255,255,255,0.5); }
.ai-section .section-title { color: var(--white); }
.ai-section .section-subtitle { color: var(--slate-400); }

.ai-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.ai-intro-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai-intro-text h2 span { color: var(--blue-light); }

.ai-intro-text p {
    color: var(--slate-300);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ai-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ai-cap-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem 1.8rem;
    transition: all 0.35s;
}

.ai-cap-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(37,99,235,0.3);
    transform: translateY(-4px);
}

.ai-cap-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(37,99,235,0.15);
    margin-bottom: 1.2rem;
}

.ai-cap-icon svg {
    width: 22px; height: 22px;
    stroke: var(--blue-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ai-cap-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.ai-cap-card p {
    font-size: 0.85rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.ai-terminal {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.ai-terminal .terminal-header {
    background: #161b22;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-terminal .terminal-body {
    padding: 1.2rem 1.4rem;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.76rem;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .ai-intro { grid-template-columns: 1fr; gap: 2rem; }
    .ai-capabilities { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

/* ===== METODOLOGIA ===== */
.approach { background: var(--slate-50); }

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

.approach-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    position: relative;
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--slate-100);
    position: absolute;
    top: 1.5rem; right: 2rem;
    line-height: 1;
}

.approach-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.approach-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== CONTACTO ===== */
.contact-section { background: var(--white); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.contact-info {
    padding: 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info p {
    color: var(--slate-400);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail svg {
    color: var(--blue-light);
}

.contact-detail span {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.contact-form-wrap {
    padding: 4rem;
    background: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
    color: var(--slate-400);
}

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

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 1rem;
    width: 180px;
    height: 28px;
}

.footer-brand .nav-logo .nav-logo-dark { opacity: 0; }
.footer-brand .nav-logo .nav-logo-light { opacity: 1; }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-300);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--white); }

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

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

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--blue);
    color: var(--blue-light);
    background: rgba(37,99,235,0.1);
}

.footer-social a svg {
    width: 16px; height: 16px;
    fill: currentColor;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 2rem; }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trusted-bar .container { flex-direction: column; gap: 1rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info,
    .contact-form-wrap { padding: 2.2rem; }
    .contact-info h2 { font-size: 1.8rem; }
    .contact-info p { margin-bottom: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }
    .nav-menu.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-wrapper { border-radius: 14px; }
    .contact-info,
    .contact-form-wrap { padding: 1.4rem; }
    .contact-info h2 { font-size: 1.45rem; }
    .contact-form { gap: 1rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-buttons { flex-direction: column; }
    .btn { justify-content: center; }
    .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-item::after { display: none !important; }
    .contact-info,
    .contact-form-wrap { padding: 1.1rem; }
    .btn-submit { padding: 0.9rem; }
}
