:root {
  --slate: #1a2332;
  --slate-2: #243044;
  --slate-3: #2f3d54;
  --copper: #c67b4a;
  --copper-2: #d9946a;
  --copper-soft: rgba(198, 123, 74, .14);
  --ink: #121820;
  --muted: #5a6478;
  --line: rgba(26, 35, 50, .12);
  --paper: #f7f5f2;
  --cream: #ede8e1;
  --white: #fff;
  --serif: "Libre Baskerville", "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --shadow: 0 22px 60px rgba(26, 35, 50, .14);
  --shadow-soft: 0 10px 30px rgba(26, 35, 50, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.65; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; background: #fff; padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-soft); }
.skip-link:focus { top: 16px; }

.topbar { background: var(--slate); color: rgba(255,255,255,.78); font-size: 12px; letter-spacing: .06em; }
.topbar-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--copper-2); font-weight: 600; }
.site-header { position: fixed; z-index: 40; width: 100%; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(26, 35, 50, .94); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; color: white; }
.brand { display: inline-flex; gap: 12px; align-items: center; line-height: 1.05; }
.brand-mark { width: 48px; height: 48px; border: 1px solid var(--copper); border-radius: 10px; display: grid; place-items: center; background: rgba(198,123,74,.08); }
.brand-mark svg { width: 28px; fill: none; stroke: var(--copper); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-family: var(--serif); font-size: 22px; letter-spacing: .03em; font-weight: 700; }
.brand small { display: block; margin-top: 4px; opacity: .72; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.brand-light { color: #fff; }
.main-menu { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.main-menu > a:not(.nav-cta) { position: relative; opacity: .9; }
.main-menu > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--copper); transition: width .25s; }
.main-menu > a:hover::after { width: 100%; }
.nav-cta { background: var(--copper); color: #fff; padding: 11px 20px; border-radius: 999px; font-weight: 700; transition: transform .2s, background .2s; }
.nav-cta:hover { background: var(--copper-2); transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; color: inherit; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; margin: 5px; }

.hero { min-height: 820px; height: 100vh; max-height: 980px; position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(105deg, rgba(18,24,32,.93) 0%, rgba(26,35,50,.78) 45%, rgba(26,35,50,.4) 100%),
  linear-gradient(0deg, rgba(18,24,32,.6), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 110px; }
.eyebrow { margin: 0 0 22px; color: var(--copper); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.light { color: var(--copper-2); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; letter-spacing: -.02em; margin: 0; }
h1 { font-size: clamp(44px, 6vw, 82px); max-width: 920px; font-weight: 700; }
h1 em, h2 em { font-weight: 700; color: var(--copper-2); font-style: italic; }
.hero-tagline { max-width: 700px; margin: 28px 0 0; font-size: clamp(18px, 2.2vw, 24px); color: rgba(255,255,255,.92); font-weight: 500; line-height: 1.5; }
.hero-copy { max-width: 600px; margin: 22px 0 0; font-size: 17px; color: rgba(255,255,255,.76); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border: 1px solid transparent; padding: 0 26px; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: #fff; }
.button-primary:hover { background: var(--copper-2); }
.button-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.button-ghost:hover { background: white; color: var(--slate); }
.button-dark { background: var(--slate); color: #fff; }
.button-dark:hover { background: var(--slate-2); }
.button-small { min-height: 40px; padding-inline: 18px; font-size: 13px; }
.button-ghost-dark { color: var(--slate); border-color: var(--line); background: transparent; }
.hero-meta { border-top: 1px solid rgba(255,255,255,.18); margin-top: 56px; padding-top: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hero-meta div { font-size: 13px; color: rgba(255,255,255,.7); }
.hero-meta b { display: block; font-family: var(--serif); font-size: 28px; color: var(--copper-2); margin-bottom: 4px; font-weight: 700; }
.scroll-cue { position: absolute; z-index: 2; right: 40px; bottom: 38px; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; opacity: .7; }
.scroll-cue span { display: block; width: 44px; height: 1px; background: #fff; }

h2 { font-size: clamp(38px, 4.8vw, 64px); color: var(--slate); font-weight: 700; }
h2 em { color: var(--copper); font-style: italic; }
h3 { font-size: 24px; color: var(--slate); font-weight: 700; }

.trust-banner { background: var(--slate); color: #fff; padding: 32px 0; border-top: 1px solid rgba(198,123,74,.25); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-inner div { padding: 12px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-inner div:last-child { border-right: 0; }
.trust-inner b { display: block; font-family: var(--serif); font-size: 32px; color: var(--copper-2); margin-bottom: 6px; font-weight: 700; }
.trust-inner span { font-size: 12px; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.intro-copy { max-width: 500px; padding-bottom: 8px; }
.intro-copy p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }
.intro-highlights { display: grid; gap: 18px; margin-top: 32px; }
.intro-highlights li { list-style: none; display: flex; gap: 14px; align-items: start; padding: 18px 20px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-soft); border-left: 3px solid var(--copper); }
.intro-highlights li strong { display: block; color: var(--slate); margin-bottom: 4px; font-size: 15px; }
.intro-highlights li span { font-size: 14px; color: var(--muted); }
.intro-highlights svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--copper); fill: none; stroke-width: 2; margin-top: 2px; }
.text-link { display: inline-flex; gap: 10px; color: var(--slate); border-bottom: 1px solid var(--slate); padding-bottom: 3px; font-weight: 700; font-size: 15px; }
.photo-strip { display: grid; grid-template-columns: 1.1fr .85fr 1fr; gap: 22px; align-items: start; margin-top: 70px; }
.photo-card { margin: 0; position: relative; overflow: hidden; height: 380px; border-radius: 10px; box-shadow: var(--shadow-soft); }
.photo-card.photo-tall { height: 500px; }
.photo-card.photo-offset { margin-top: 60px; height: 430px; }
.photo-card img { height: 100%; object-fit: cover; transition: transform .7s; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(18,24,32,.78)); }
.photo-card figcaption { position: absolute; z-index: 2; bottom: 22px; left: 22px; right: 22px; color: #fff; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.photo-card figcaption span { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.photo-card figcaption b { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }

.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: end; margin-bottom: 55px; }
.section-heading > p { color: var(--muted); margin: 0; font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(198,123,74,.35); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--copper-soft); display: grid; place-items: center; margin-bottom: 22px; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--copper); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }
.service-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 18px; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }

.why { background: var(--slate); color: #fff; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(198,123,74,.12), transparent 70%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-copy p { color: rgba(255,255,255,.76); font-size: 17px; margin: 0 0 20px; }
.why-copy h2 { color: #fff; margin-bottom: 24px; }
.why-cards { display: grid; gap: 18px; }
.why-card { display: flex; gap: 18px; padding: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; transition: background .2s; }
.why-card:hover { background: rgba(255,255,255,.09); }
.why-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--copper-2); line-height: 1; flex-shrink: 0; }
.why-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.why-card p { margin: 0; font-size: 14px; color: rgba(255,255,255,.7); }

.process { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; counter-reset: step; }
.process-step { position: relative; background: var(--white); border-radius: 14px; padding: 32px 24px 28px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--copper); }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-family: var(--serif); font-size: 42px; font-weight: 700; color: rgba(198,123,74,.35); line-height: 1; margin-bottom: 16px; }
.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { margin: 0; font-size: 14px; color: var(--muted); }

.sectors { background: var(--paper); }
.sectors-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.sectors-image { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); height: 480px; }
.sectors-image img { height: 100%; object-fit: cover; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sector-tags span { padding: 10px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--slate); transition: .2s; }
.sector-tags span:hover { border-color: var(--copper); background: var(--copper-soft); }

.values { background: var(--slate-2); color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.value-card { text-align: center; padding: 36px 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.value-icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--copper-soft); display: grid; place-items: center; }
.value-icon svg { width: 28px; height: 28px; stroke: var(--copper-2); fill: none; stroke-width: 1.8; }
.value-card h3 { color: #fff; font-size: 22px; margin-bottom: 12px; }
.value-card p { margin: 0; font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7; }

.testimonials { background: var(--slate); color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 32px 28px; }
.testimonial-card blockquote { margin: 0 0 24px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.88); font-style: italic; }
.testimonial-card blockquote::before { content: "\201C"; font-family: var(--serif); font-size: 48px; color: var(--copper-2); line-height: 0; display: block; margin-bottom: 12px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--copper); }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,.6); }

.team { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo { height: 320px; overflow: hidden; }
.team-photo img { height: 100%; object-fit: cover; object-position: top center; transition: transform .6s; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 26px 24px 28px; }
.team-info h3 { font-size: 24px; margin-bottom: 6px; }
.team-role { margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--copper); }
.team-info p:last-child { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65; }

.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; background: none; border: 0; text-align: left; cursor: pointer; color: var(--slate); font-family: var(--serif); font-size: 22px; font-weight: 600; }
.faq-trigger svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--copper); fill: none; stroke-width: 2; transition: transform .25s; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-panel { max-height: 500px; }
.faq-panel p { margin: 0 0 24px; color: var(--muted); font-size: 15px; padding-right: 40px; }

.cta-band { background: linear-gradient(135deg, var(--slate) 0%, var(--slate-3) 100%); color: #fff; padding: 70px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: rgba(255,255,255,.78); font-size: 17px; }
.cta-band .button-primary { min-width: 220px; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-copy p { color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.contact-list { display: grid; gap: 22px; margin-bottom: 32px; }
.contact-list div span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--copper); font-weight: 700; margin-bottom: 6px; }
.contact-list div p { margin: 0; color: var(--slate); font-size: 15px; }
.contact-list a { color: var(--slate-3); font-weight: 600; }
.contact-list a:hover { color: var(--copper); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px; box-shadow: var(--shadow-soft); }
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 600; color: var(--slate); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px var(--copper-soft); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .check { display: flex; gap: 10px; align-items: start; font-weight: 400; font-size: 13px; color: var(--muted); }
.contact-form .check input { width: auto; margin-top: 3px; }
.form-status { margin: 14px 0 0; font-size: 13px; color: var(--muted); min-height: 20px; }

.footer { background: var(--slate); color: rgba(255,255,255,.72); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { margin: 18px 0 0; font-size: 14px; max-width: 300px; line-height: 1.7; }
.footer h3 { color: #fff; font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 18px; font-weight: 700; }
.footer a { display: block; margin-bottom: 12px; font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--copper-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; }

.cookie-banner { position: fixed; z-index: 50; left: 20px; right: 20px; bottom: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; box-shadow: var(--shadow); flex-wrap: wrap; }
.cookie-banner strong { display: block; color: var(--slate); margin-bottom: 4px; }
.cookie-banner p { margin: 0; font-size: 13px; color: var(--muted); max-width: 520px; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cookie-actions a { font-size: 13px; font-weight: 600; color: var(--slate); margin-right: 8px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.legal-header { position: relative; background: var(--slate); }
.legal-hero { background: var(--slate-2); color: #fff; padding: 140px 0 70px; }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; padding: 70px 0 110px; }
.legal-nav { position: sticky; top: 110px; display: grid; gap: 8px; }
.legal-nav a { padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--muted); transition: .2s; }
.legal-nav a:hover { background: var(--cream); color: var(--slate); }
.legal-content section { margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 32px; margin-bottom: 16px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 15px; }
.legal-updated { display: inline-block; margin-bottom: 40px; font-size: 13px; color: var(--muted); background: var(--cream); padding: 8px 14px; border-radius: 999px; }

.sas-benefits { background: var(--paper); }
.sas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.sas-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px; box-shadow: var(--shadow-soft); }
.sas-card h3 { font-size: 20px; margin-bottom: 12px; }
.sas-card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.7; }
.sas-card .sas-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--copper-soft); display: grid; place-items: center; margin-bottom: 18px; }
.sas-card .sas-icon svg { width: 24px; height: 24px; stroke: var(--copper); fill: none; stroke-width: 1.8; }

.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; align-items: stretch; }
.pricing-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 36px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured { border: 2px solid var(--copper); position: relative; }
.pricing-card.featured::before { content: "Más popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--copper); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.pricing-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); margin-bottom: 8px; }
.pricing-card h3 { font-size: 26px; margin-bottom: 8px; }
.pricing-price { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.pricing-price small { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--muted); }
.pricing-card > p { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pricing-card li { position: relative; padding-left: 22px; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.pricing-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--copper-soft); border: 2px solid var(--copper); }
.pricing-card .button { width: 100%; }

.whatsapp-float { position: fixed; z-index: 45; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
body:has(.cookie-banner:not([hidden])) .whatsapp-float { bottom: 120px; }

@media (max-width: 1024px) {
  .sas-grid, .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .intro-grid, .why-grid, .sectors-layout, .contact-grid, .section-heading, .footer-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid, .team-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-inner div:nth-child(2) { border-right: 0; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-card.photo-offset { margin-top: 0; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .menu-toggle { display: block; }
  .main-menu { position: fixed; inset: 84px 0 auto 0; background: rgba(26,35,50,.98); flex-direction: column; align-items: stretch; padding: 24px; gap: 0; transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .3s; }
  .main-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-menu a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-menu .nav-cta { margin-top: 12px; text-align: center; }
  .services-grid, .testimonials-grid, .team-grid, .process-steps, .photo-strip, .values-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card.photo-tall, .photo-card.photo-offset { height: 320px; margin-top: 0; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-inner div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-meta { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}
