/* ============================================================
   CINAMON REAL MOVERS â€” main.css FINAL
   REGLA: Navbar/logo = HARDCODED, resto del sitio = variables CSS
   ============================================================ */

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

/* CSS VARIABLES */
:root {
    --brown:       #8B5E3C;
    --brown2:      #A47252;
    --brown3:      #764E27;
    --brown-light: #A47252;
    --blue:        #1B2A4A;
    --blue2:       #273F63;
    --blue3:       #0B1A2A;
    --blue-mid:    #273F63;
    --cream:       #FAF7F2;
    --cream2:      #F0E8DC;
    --white:       #FFFFFF;
    --text-dark:   #1B2A4A;
    --text-mid:    #4A5568;
    --text-light:  #718096;
    --font-head:   'Syne', sans-serif;
    --font-body:   'DM Sans', sans-serif;
    --shadow:      0 4px 24px rgba(27,42,74,0.10);
    --shadow-lg:   0 12px 48px rgba(27,42,74,0.18);
    --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
    --container:   1280px;
}

/* BASE */
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 2px; }

/* CURSOR */
@media (hover: hover) {
    body { cursor: none; }
    .crm-cursor { position: fixed; width: 10px; height: 10px; background: var(--brown); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: transform 0.1s; }
    .crm-cursor-ring { position: fixed; width: 38px; height: 38px; border: 1.5px solid var(--brown-light); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); transition: all 0.12s ease; opacity: 0.7; }
}

/* ============================================================
   LANG BAR â€” HARDCODED
   ============================================================ */
.crm-lang-bar { background: #ffffff; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.crm-lang-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.crm-lang-contact { display: flex; gap: 20px; align-items: center; }
.crm-lang-contact a { color: #333333; font-size: 12px; display: flex; align-items: center; gap: 6px; transition: color 0.2s; font-weight: 500; }
.crm-lang-contact a:hover { color: #8B5E3C; }
.crm-lang-switch { display: flex; gap: 2px; background: rgba(0,0,0,0.06); border-radius: 20px; padding: 3px; }
.crm-lang-btn { background: none; border: none; color: rgba(0,0,0,0.5); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 16px; cursor: pointer; transition: var(--transition); text-transform: uppercase; }
.crm-lang-btn.active { background: #8B5E3C; color: #ffffff; }

/* ============================================================
   NAVBAR â€” HARDCODED BLANCO
   ============================================================ */
.crm-nav {
    position: sticky; top: 0; width: 100%; z-index: 900;
    background: #ffffff;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 100px;
    transition: height 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 24px;
}
.crm-nav.scrolled {
    height: 82px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

/* ============================================================
   LOGO â€” 80px desktop, HARDCODED sin filtros ni variables
   ============================================================ */
.crm-nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.crm-logo-link { display: flex; align-items: center; line-height: 0; text-decoration: none; }

/* La imagen del logo â€” selectores mÃºltiples para cubrir todo lo que WordPress genera */
.crm-logo-link img.crm-logo-img,
.crm-logo-link img,
.crm-nav-logo img.crm-logo-img,
.crm-nav-logo img {
    display: block;
    height: 80px;
    width: auto;
    max-width: 260px;
    max-height: 80px;
    min-width: 30px;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.2s ease;
    /* SIN filter, SIN brightness, SIN invert â€” logo original intacto */
}
.crm-logo-link img:hover { opacity: 0.85; }

.crm-nav.scrolled .crm-logo-link img.crm-logo-img,
.crm-nav.scrolled .crm-logo-link img,
.crm-nav.scrolled .crm-nav-logo img { height: 80px; max-height: 80px; }

/* Fallback texto cuando no hay logo */
.crm-logo-fallback { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.crm-nav-logo-icon { width: 42px; height: 42px; background: #8B5E3C; border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.crm-nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.crm-nav-logo-name { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: #1B2A4A; letter-spacing: 0.3px; }
.crm-nav-logo-sub { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #8B5E3C; font-weight: 500; }

/* NAV LINKS â€” HARDCODED texto oscuro */
.crm-nav-links { display: flex; gap: 28px; }
.crm-nav-links li a { color: #1B2A4A; font-size: 15px; font-weight: 600; position: relative; transition: color 0.25s; padding: 4px 0; display: block; }
.crm-nav-links li a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #8B5E3C; transition: width 0.3s ease; }
.crm-nav-links li a:hover, .crm-nav-links li.crm-nav-active a { color: #000000; }
.crm-nav-links li a:hover::after, .crm-nav-links li.crm-nav-active a::after { width: 100%; }

.crm-nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.crm-nav-phone { color: #8B5E3C; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: color 0.2s; white-space: nowrap; }
.crm-nav-phone:hover { color: #1B2A4A; }
.crm-btn-nav { background: #8B5E3C; color: #ffffff; padding: 10px 22px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; transition: all 0.25s ease; white-space: nowrap; }
.crm-btn-nav:hover { background: #A0714F; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,94,60,0.3); }

/* Hamburger â€” HARDCODED oscuro */
.crm-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; position: relative; }
.crm-hamburger span { display: block; width: 26px; height: 3px; background: #1B2A4A; border-radius: 2px; transition: var(--transition); }
.crm-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.crm-hamburger.open span:nth-child(2) { opacity: 0; }
.crm-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu â€” HARDCODED azul oscuro */
.crm-mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #1B2A4A; z-index: 1000; padding: 100px 32px 40px; flex-direction: column; overflow-y: auto; }
.crm-mobile-menu.open { display: flex; }
.crm-mobile-menu a { color: #ffffff; font-size: 26px; font-family: var(--font-head); font-weight: 700; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s; display: block; }
.crm-mobile-menu a:hover { color: #C4956A; }
.crm-mobile-menu-cta { margin-top: 30px !important; background: #8B5E3C !important; color: #ffffff !important; text-align: center; padding: 18px !important; border-radius: 3px; border-bottom: none !important; font-size: 18px !important; }
.crm-mobile-lang { display: flex; gap: 10px; margin-top: 24px; }
.crm-mobile-lang-btn { flex: 1; background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.5); padding: 13px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.crm-mobile-lang-btn.active { background: #8B5E3C; color: #ffffff; }

/* ============================================================
   HERO
   ============================================================ */
.crm-hero { min-height: calc(100vh - 141px); position: relative; display: flex; align-items: center; overflow: hidden; background: var(--blue); }
.crm-hero-bg { position: absolute; inset: 0; z-index: 0; }
.crm-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: saturate(0.5); }
.crm-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(15,30,53,0.97) 0%, rgba(27,42,74,0.88) 55%, rgba(27,42,74,0.5) 100%); }
.crm-hero-pattern { position: absolute; inset: 0; z-index: 1; background-image: radial-gradient(rgba(196,149,106,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.crm-hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%; padding: 70px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.crm-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(139,94,60,0.15); border: 1px solid rgba(196,149,106,0.35); padding: 8px 16px; border-radius: 20px; margin-bottom: 28px; animation: crmFadeUp 0.7s 0.2s both; }
.crm-hero-badge-dot { width: 6px; height: 6px; background: var(--brown-light); border-radius: 50%; animation: crmPulse 2s infinite; }
.crm-hero-badge span { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--brown-light); }
@keyframes crmPulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.3;transform:scale(0.8)} }
.crm-hero-title { font-family: var(--font-head); font-size: clamp(36px, 5vw, 72px); font-weight: 800; line-height: 1.0; color: #ffffff; margin-bottom: 24px; letter-spacing: -1px; }
.crm-hero-title em { display: block; color: var(--brown-light); font-style: normal; }
.crm-hero-title .crm-outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.2); color: transparent; }
.crm-hero-desc { font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.78; margin-bottom: 40px; max-width: 460px; font-weight: 300; animation: crmFadeUp 0.7s 0.5s both; }
.crm-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; animation: crmFadeUp 0.7s 0.7s both; }
.crm-btn-hero-primary { background: var(--brown); color: #ffffff; padding: 16px 32px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.crm-btn-hero-primary:hover { background: var(--brown2); transform: translateY(-2px); }
.crm-btn-hero-secondary { background: transparent; color: #ffffff; padding: 16px 30px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 3px; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; }
.crm-btn-hero-secondary:hover { border-color: var(--brown-light); color: var(--brown-light); }
.crm-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; animation: crmFadeUp 0.7s 0.9s both; }
.crm-trust-item { display: flex; align-items: center; gap: 8px; }
.crm-trust-item svg { width: 15px; height: 15px; stroke: var(--brown-light); flex-shrink: 0; }
.crm-trust-item span { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.crm-hero-right { display: flex; flex-direction: column; gap: 16px; animation: crmFadeRight 0.8s 0.5s both; }
.crm-hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.crm-hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; transition: var(--transition); }
.crm-hero-card:hover { transform: translateY(-3px); border-color: rgba(196,149,106,0.3); }
.crm-hero-card-img { height: 150px; overflow: hidden; }
.crm-hero-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.crm-hero-card:hover .crm-hero-card-img img { transform: scale(1.06); }
.crm-hero-card-body { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.crm-hero-card-name { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #ffffff; }
.crm-hero-card-arrow { width: 26px; height: 26px; background: rgba(139,94,60,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.crm-hero-card-arrow svg { width: 11px; height: 11px; stroke: var(--brown-light); fill: none; }
.crm-hero-stat-strip { background: rgba(139,94,60,0.15); border: 1px solid rgba(196,149,106,0.2); border-radius: 8px; padding: 16px 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.crm-hero-stat-num { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--brown-light); }
.crm-hero-stat-lbl { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 2px; }
@keyframes crmFadeUp { from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)} }
@keyframes crmFadeRight { from{opacity:0;transform:translateX(30px)}to{opacity:1;transform:translateX(0)} }

/* MARQUEE */
.crm-marquee { background: var(--brown); padding: 14px 0; overflow: hidden; }
.crm-marquee-track { display: flex; width: max-content; animation: crmMarquee 28s linear infinite; }
.crm-marquee-item { display: flex; align-items: center; gap: 18px; padding: 0 22px; white-space: nowrap; }
.crm-marquee-text { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #ffffff; }
.crm-marquee-sep { width: 5px; height: 5px; background: rgba(255,255,255,0.4); border-radius: 50%; flex-shrink: 0; }
@keyframes crmMarquee { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }

/* SECTION BASE */
.crm-section { padding: 90px 40px; }
.crm-wrap { max-width: var(--container); margin: 0 auto; }
.crm-section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.crm-section-label-line { width: 30px; height: 2px; background: var(--brown); }
.crm-section-label span { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brown); }
.crm-section-h { font-family: var(--font-head); font-size: clamp(28px, 4vw, 52px); font-weight: 800; line-height: 1.05; color: var(--blue); margin-bottom: 16px; letter-spacing: -0.5px; }
.crm-section-h em { color: var(--brown); font-style: normal; }
.crm-section-sub { font-size: 16px; color: var(--text-light); line-height: 1.78; max-width: 560px; font-weight: 300; }

/* SERVICES */
.crm-services { background: #ffffff; }
.crm-services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 52px; }
.crm-services-cta-side { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.crm-services-cta-side p { font-size: 14px; color: var(--text-light); line-height: 1.65; max-width: 280px; text-align: right; font-weight: 300; }
.crm-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.crm-svc-card { background: var(--cream); border-radius: 8px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(139,94,60,0.1); }
.crm-svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(139,94,60,0.25); }
.crm-svc-card-img { height: 220px; overflow: hidden; position: relative; }
.crm-svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.crm-svc-card:hover .crm-svc-card-img img { transform: scale(1.06); }
.crm-svc-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(15,30,53,0.7) 0%,transparent 60%); }
.crm-svc-card-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--brown); color: #ffffff; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.crm-svc-card-body { padding: 26px; }
.crm-svc-card-num { font-size: 11px; color: var(--brown); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.crm-svc-card-title { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--blue); margin-bottom: 12px; line-height: 1.2; }
.crm-svc-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.72; margin-bottom: 18px; font-weight: 300; }
.crm-svc-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brown); transition: gap 0.25s; }
.crm-svc-card-link:hover { gap: 14px; }

/* WHY US */
.crm-why { background: var(--blue); }
.crm-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.crm-why-text .crm-section-h { color: #ffffff; }
.crm-why-text .crm-section-sub { color: rgba(255,255,255,0.5); }
.crm-why-list { margin-top: 36px; display: flex; flex-direction: column; }
.crm-why-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: var(--transition); cursor: default; }
.crm-why-item:hover { padding-left: 6px; }
.crm-why-icon { width: 46px; height: 46px; background: rgba(139,94,60,0.15); border: 1px solid rgba(196,149,106,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s; }
.crm-why-item:hover .crm-why-icon { background: var(--brown); }
.crm-why-icon svg { width: 20px; height: 20px; stroke: var(--brown-light); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.crm-why-item:hover .crm-why-icon svg { stroke: #ffffff; }
.crm-why-item-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 5px; }
.crm-why-item-text { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; font-weight: 300; }
.crm-why-visual { position: relative; }
.crm-why-img-wrap { border-radius: 8px; overflow: hidden; height: 480px; }
.crm-why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.crm-why-badge { position: absolute; bottom: -20px; left: -20px; background: var(--brown); padding: 22px 28px; border-radius: 8px; box-shadow: var(--shadow-lg); }
.crm-why-badge .num { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: #ffffff; line-height: 1; }
.crm-why-badge .lbl { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }
.crm-why-badge2 { position: absolute; top: 24px; right: -16px; background: #ffffff; padding: 16px 20px; border-radius: 8px; box-shadow: var(--shadow-lg); }
.crm-why-badge2 .num { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--blue); line-height: 1; }
.crm-why-badge2 .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* PROCESS */
.crm-process { background: var(--cream); }
.crm-process-header { text-align: center; margin-bottom: 60px; }
.crm-process-header .crm-section-label { justify-content: center; }
.crm-process-header .crm-section-sub { margin: 0 auto; }
.crm-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.crm-process-steps::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg,var(--brown),var(--blue-mid),var(--brown)); opacity: 0.3; }
.crm-proc-step { padding: 0 20px; text-align: center; transition: transform 0.3s; }
.crm-proc-step:hover { transform: translateY(-4px); }
.crm-proc-num { width: 70px; height: 70px; background: #ffffff; border: 2px solid var(--brown); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--brown); transition: var(--transition); box-shadow: 0 4px 16px rgba(139,94,60,0.15); }
.crm-proc-step:hover .crm-proc-num { background: var(--brown); color: #ffffff; }
.crm-proc-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.crm-proc-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* STATS */
.crm-stats-band { background: var(--brown); padding: 56px 40px; }
.crm-stats-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.crm-stat-cell { text-align: center; padding: 20px; }
.crm-stat-cell .big { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: #ffffff; line-height: 1; letter-spacing: -2px; }
.crm-stat-cell .lbl { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.58); margin-top: 8px; }

/* TEAM */
.crm-team { background: #ffffff; }
.crm-team-header { text-align: center; margin-bottom: 48px; }
.crm-team-header .crm-section-label { justify-content: center; }
.crm-team-header .crm-section-sub { margin: 0 auto; text-align: center; }
.crm-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.crm-team-card { border-radius: 8px; overflow: hidden; border: 1px solid rgba(139,94,60,0.1); transition: var(--transition); }
.crm-team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.crm-team-card-img { height: 260px; overflow: hidden; }
.crm-team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.crm-team-card:hover .crm-team-card-img img { transform: scale(1.05); }
.crm-team-card-body { padding: 22px 24px; background: var(--cream); }
.crm-team-card-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.crm-team-card-role { font-size: 12px; color: var(--brown); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* TESTIMONIALS */
.crm-testi { background: var(--cream2); }
.crm-testi-header { text-align: center; margin-bottom: 48px; }
.crm-testi-header .crm-section-label { justify-content: center; }
.crm-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.crm-testi-card { background: #ffffff; border-radius: 8px; padding: 32px; border: 1px solid rgba(139,94,60,0.08); transition: var(--transition); position: relative; }
.crm-testi-card::before { content: '"'; position: absolute; top: 16px; right: 22px; font-family: var(--font-head); font-size: 80px; color: rgba(139,94,60,0.07); line-height: 1; font-weight: 800; }
.crm-testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.crm-testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--brown); font-size: 14px; }
.crm-testi-text { font-size: 15px; color: var(--text-mid); line-height: 1.78; margin-bottom: 24px; font-style: italic; font-weight: 300; }
.crm-testi-author { display: flex; align-items: center; gap: 14px; }
.crm-testi-av { width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #ffffff; flex-shrink: 0; }
.crm-testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--blue); }
.crm-testi-loc { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* CTA BAND */
.crm-cta-band { background: var(--blue); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.crm-cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%,rgba(139,94,60,0.12) 0%,transparent 70%); }
.crm-cta-band h2 { font-family: var(--font-head); font-size: clamp(26px,4vw,50px); font-weight: 800; color: #ffffff; margin-bottom: 16px; position: relative; letter-spacing: -0.5px; }
.crm-cta-band h2 em { color: var(--brown-light); font-style: normal; }
.crm-cta-band p { font-size: 17px; color: rgba(255,255,255,0.52); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; position: relative; font-weight: 300; }
.crm-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* QUOTE FORM */
.crm-quote { background: #ffffff; }
.crm-quote-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.crm-quote-left .crm-section-sub { margin-bottom: 32px; }
.crm-quote-perks { display: flex; flex-direction: column; gap: 14px; }
.crm-perk { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--cream); border-radius: 6px; border-left: 3px solid var(--brown); }
.crm-perk-icon { width: 36px; height: 36px; background: var(--brown); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.crm-perk-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.crm-perk-title { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--blue); margin-bottom: 2px; }
.crm-perk-text { font-size: 13px; color: var(--text-light); line-height: 1.55; font-weight: 300; }
.crm-quote-form { background: var(--blue); padding: 42px; border-radius: 8px; box-shadow: var(--shadow-lg); }
.crm-quote-form h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.crm-quote-form > p { font-size: 13px; color: rgba(255,255,255,0.42); margin-bottom: 26px; font-weight: 300; }
.crm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.crm-form-full { grid-column: 1 / -1; }
.crm-form-field { display: flex; flex-direction: column; gap: 6px; }
.crm-form-field label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.crm-form-field input, .crm-form-field select, .crm-form-field textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #ffffff; padding: 13px 16px; font-family: var(--font-body); font-size: 14px; border-radius: 4px; outline: none; transition: border-color 0.25s; width: 100%; font-weight: 300; }
.crm-form-field input::placeholder, .crm-form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.crm-form-field input:focus, .crm-form-field select:focus, .crm-form-field textarea:focus { border-color: var(--brown-light); }
.crm-form-field select { color: rgba(255,255,255,0.45); }
.crm-form-field select option { background: var(--blue2); color: white; }
.crm-form-field textarea { resize: vertical; min-height: 80px; }
.crm-form-submit { width: 100%; background: var(--brown); color: #ffffff; border: none; padding: 16px; font-family: var(--font-head); font-size: 16px; font-weight: 700; letter-spacing: 0.5px; border-radius: 4px; cursor: pointer; transition: var(--transition); margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.crm-form-submit:hover { background: var(--brown2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.crm-form-submit svg { width: 18px; height: 18px; }

/* FOOTER */
.crm-footer { background: var(--blue3); padding: 70px 40px 28px; }
.crm-footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
.crm-footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.crm-footer-logo-mark { width: 36px; height: 36px; background: var(--brown); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.crm-footer-logo-mark svg { width: 20px; height: 20px; fill: white; }
.crm-footer-logo-name { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: #ffffff; }
.crm-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.75; max-width: 240px; margin-bottom: 20px; font-weight: 300; }
.crm-footer-socials { display: flex; gap: 10px; }
.crm-footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 12px; font-weight: 700; transition: var(--transition); }
.crm-footer-social:hover { border-color: var(--brown-light); color: var(--brown-light); }
.crm-footer-col-title { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brown-light); margin-bottom: 20px; }
.crm-footer-links { display: flex; flex-direction: column; gap: 10px; }
.crm-footer-links a { color: rgba(255,255,255,0.38); font-size: 13px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; font-weight: 300; }
.crm-footer-links a::before { content: ''; width: 8px; height: 1px; background: var(--brown-light); opacity: 0; transition: opacity 0.2s; }
.crm-footer-links a:hover { color: rgba(255,255,255,0.75); }
.crm-footer-links a:hover::before { opacity: 1; }
.crm-footer-contact-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 2px; }
.crm-footer-contact-val { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 400; margin-bottom: 14px; }
.crm-footer-contact-val a { color: inherit; }
.crm-footer-bottom { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.crm-footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px; font-weight: 300; }
.crm-footer-btm-links { display: flex; gap: 20px; }
.crm-footer-btm-links a { font-size: 12px; color: rgba(255,255,255,0.18); transition: color 0.2s; font-weight: 300; }
.crm-footer-btm-links a:hover { color: rgba(255,255,255,0.5); }

/* GLOBAL BUTTONS */
.crm-btn-primary { background: var(--brown); color: #ffffff; padding: 13px 28px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.crm-btn-primary:hover { background: var(--brown2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.crm-btn-outline-light { background: transparent; color: #ffffff; padding: 13px 28px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.28); border-radius: 3px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.crm-btn-outline-light:hover { border-color: var(--brown-light); color: var(--brown-light); }

/* SCROLL REVEAL */
.crm-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.crm-reveal.crm-visible { opacity: 1; transform: translateY(0); }
.crm-reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.crm-reveal-l.crm-visible { opacity: 1; transform: translateX(0); }
.crm-reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.crm-reveal-r.crm-visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .crm-lang-inner { padding: 0 28px; }
    .crm-nav { padding: 0 28px; height: 86px; }
    .crm-nav.scrolled { height: 76px; }
    .crm-logo-link img.crm-logo-img, .crm-logo-link img, .crm-nav-logo img.crm-logo-img, .crm-nav-logo img { height: 70px; max-height: 70px; max-width: 220px; }
    .crm-nav.scrolled .crm-logo-link img.crm-logo-img, .crm-nav.scrolled .crm-logo-link img, .crm-nav.scrolled .crm-nav-logo img { height: 70px; max-height: 70px; }
    .crm-hero-content { padding: 60px 28px; gap: 40px; }
    .crm-why-inner { gap: 50px; }
    .crm-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
    .crm-lang-inner { padding: 0 16px; }
    .crm-lang-contact { display: none; }
    .crm-nav { padding: 0 20px; height: 72px; }
    .crm-nav.scrolled { height: 96px; }
    .crm-logo-link img.crm-logo-img, .crm-logo-link img, .crm-nav-logo img.crm-logo-img, .crm-nav-logo img { height: 54px; max-height: 54px; max-width: 180px; }
    .crm-nav.scrolled .crm-logo-link img.crm-logo-img, .crm-nav.scrolled .crm-logo-link img, .crm-nav.scrolled .crm-nav-logo img { height: 54px; max-height: 54px; }
    .crm-nav-links, .crm-nav-phone, .crm-btn-nav { display: none; }
    .crm-hamburger { display: flex; }
    .crm-hero { min-height: auto; }
    .crm-hero-content { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 52px; }
    .crm-hero-title { font-size: clamp(30px, 9vw, 50px); }
    .crm-hero-desc { font-size: 15px; max-width: 100%; }
    .crm-hero-ctas { flex-direction: column; }
    .crm-btn-hero-primary, .crm-btn-hero-secondary { width: 100%; justify-content: center; }
    .crm-hero-trust { flex-direction: column; gap: 10px; }
    .crm-hero-right { display: grid; grid-template-columns: 1fr 1fr; }
    .crm-hero-cards-row { grid-column: 1 / -1; }
    .crm-hero-stat-strip { grid-column: 1 / -1; }
    .crm-section { padding: 56px 20px; }
    .crm-services-header { grid-template-columns: 1fr; gap: 20px; }
    .crm-services-cta-side { align-items: flex-start; }
    .crm-services-cta-side p { text-align: left; max-width: 100%; }
    .crm-services-grid { grid-template-columns: 1fr; }
    .crm-why-inner { grid-template-columns: 1fr; gap: 48px; }
    .crm-why-visual { order: -1; }
    .crm-why-img-wrap { height: 300px; }
    .crm-why-badge { bottom: -10px; left: 10px; }
    .crm-why-badge2 { top: 10px; right: 10px; }
    .crm-process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .crm-process-steps::before { display: none; }
    .crm-stats-band { padding: 40px 20px; }
    .crm-stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
    .crm-stat-cell .big { font-size: 40px; }
    .crm-team-grid { grid-template-columns: 1fr; }
    .crm-testi-grid { grid-template-columns: 1fr; }
    .crm-cta-band { padding: 56px 20px; }
    .crm-cta-btns { flex-direction: column; align-items: center; }
    .crm-btn-primary, .crm-btn-outline-light { width: 100%; justify-content: center; }
    .crm-quote-inner { grid-template-columns: 1fr; gap: 36px; }
    .crm-quote-form { padding: 28px 20px; }
    .crm-form-grid { grid-template-columns: 1fr; }
    .crm-form-full { grid-column: auto; }
    .crm-footer { padding: 50px 20px 24px; }
    .crm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .crm-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .crm-footer-btm-links { justify-content: center; }
}
@media (max-width: 480px) {
    .crm-nav { height: 58px; }
    .crm-nav.scrolled { height: 58px; }
    .crm-logo-link img.crm-logo-img, .crm-logo-link img, .crm-nav-logo img.crm-logo-img, .crm-nav-logo img { height: 40px; max-height: 40px; max-width: 140px; }
    .crm-nav.scrolled .crm-logo-link img.crm-logo-img, .crm-nav.scrolled .crm-logo-link img, .crm-nav.scrolled .crm-nav-logo img { height: 40px; max-height: 40px; }
    .crm-hero-right { display: flex; flex-direction: column; }
    .crm-hero-cards-row { grid-template-columns: 1fr; }
    .crm-process-steps { grid-template-columns: 1fr; }
    .crm-stats-inner { grid-template-columns: 1fr 1fr; }
    .crm-footer-grid { grid-template-columns: 1fr; }
}