:root {
  --ink: #121212;
  --ink-2: #222222;
  --paper: #ffffff;
  --soft: #f5f3ef;
  --muted: #6d6b67;
  --line: #dedbd5;
  --accent: #f37722;
  --accent-dark: #d95c0d;
  --accent-soft: #ffeadc;
  --green: #22a665;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 60px rgba(25, 19, 14, .13);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -100px; background: var(--paper); padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.announcement { background: var(--ink); color: #fff; font-size: .78rem; letter-spacing: .03em; }
.announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.announcement__inner a { color: #ffb47f; font-weight: 800; }
.announcement__separator { width: 3px; height: 3px; background: var(--accent); border-radius: 50%; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,.07); }
.header-main { min-height: 82px; display: grid; grid-template-columns: 190px minmax(260px, 1fr) auto auto; gap: 28px; align-items: center; }
.brand img { width: 154px; }
.search { height: 46px; display: flex; border: 1px solid #d6d1ca; border-radius: 999px; background: #f8f7f5; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(243,119,34,.12); }
.search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; padding: 0 18px; color: var(--ink); }
.search button { width: 52px; border: 0; background: transparent; display: grid; place-items: center; }
.search svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.header-contact { text-align: right; line-height: 1.15; }
.header-contact__label { display: block; color: var(--muted); font-size: .74rem; }
.header-contact a { font-size: 1rem; font-weight: 900; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.primary-nav { border-top: 1px solid #eeeae5; }
.primary-nav__inner { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 38px; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.primary-nav a { position: relative; }
.primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--accent); transition: right .2s; }
.primary-nav a:hover::after { right: 0; }
.nav-cta { color: var(--accent-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { position: relative; display: flex; align-items: center; border: 0; padding: 0; color: inherit; background: transparent; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.nav-dropdown__toggle::after { content: ""; position: absolute; right: 100%; bottom: -6px; left: 0; height: 2px; background: linear-gradient(90deg,var(--cyan),var(--magenta),var(--yellow)); transition: right .2s; }
.nav-dropdown:hover .nav-dropdown__toggle::after, .nav-dropdown:focus-within .nav-dropdown__toggle::after, .nav-dropdown.is-open .nav-dropdown__toggle::after { right: 0; }
.nav-dropdown__menu { position: absolute; z-index: 20; top: 100%; left: 50%; display: none; width: 230px; padding: 18px 10px 10px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; background: var(--navy, #031020); box-shadow: 0 16px 35px rgba(3,16,32,.25); }
.nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 5px; color: rgba(255,255,255,.88); letter-spacing: inherit; text-transform: uppercase; }
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus-visible { color: #fff; background: linear-gradient(90deg, rgba(0,188,212,.22), rgba(236,0,140,.22), rgba(255,214,0,.22)); }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { display: block; }

.hero { position: relative; overflow: hidden; background: var(--accent); min-height: 650px; }
.hero__texture { position: absolute; inset: 0; opacity: .23; background-image: radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(90deg, #000, transparent 60%); }
.hero::after { content: ""; position: absolute; width: 600px; height: 600px; right: -180px; top: -240px; border: 90px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero__grid { position: relative; z-index: 1; min-height: 650px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 30px; }
.hero__content { padding: 72px 0; max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--accent-dark); }
.hero h1 { margin: 20px 0 22px; max-width: 720px; color: #fff; font-size: clamp(3.6rem, 7vw, 6.2rem); line-height: .87; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 span { color: var(--ink); }
.hero__content > p { max-width: 610px; margin: 0; color: rgba(31,22,15,.78); font-size: 1.12rem; line-height: 1.68; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 900; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.button--dark { color: #fff; background: var(--ink); }
.button--ghost { color: var(--ink); border-color: rgba(18,18,18,.45); background: rgba(255,255,255,.18); }
.button--light { background: #fff; color: var(--ink); }
.button--full { width: 100%; }
.hero__trust { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 30px; }
.hero__trust div { display: grid; gap: 2px; }
.hero__trust strong { font-size: 1rem; }
.hero__trust span { color: rgba(32,20,12,.7); font-size: .74rem; }
.hero__visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.hero__product { width: min(610px, 100%); position: relative; z-index: 2; filter: drop-shadow(0 32px 34px rgba(65, 24, 0, .27)); animation: float 5s ease-in-out infinite; }
.hero__orbit { position: absolute; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.hero__orbit--one { width: 430px; height: 430px; }
.hero__orbit--two { width: 520px; height: 520px; border-style: dashed; animation: spin 26s linear infinite; }
.floating-card { position: absolute; z-index: 3; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.65); box-shadow: 0 16px 42px rgba(74,31,4,.17); backdrop-filter: blur(10px); }
.floating-card--top { top: 18%; right: 0; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px; }
.floating-card__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-weight: 900; }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { margin-top: 2px; color: var(--muted); font-size: .68rem; }
.floating-card--bottom { left: 2%; bottom: 13%; width: 190px; padding: 16px; border-radius: 18px; }
.floating-card--bottom span { display: block; margin-top: 6px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.quick-benefits { position: relative; z-index: 3; margin-top: -32px; }
.quick-benefits__grid { display: grid; grid-template-columns: repeat(3,1fr); background: #fff; border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.quick-benefits article { min-height: 118px; display: flex; align-items: center; gap: 16px; padding: 24px 28px; }
.quick-benefits article + article { border-left: 1px solid var(--line); }
.benefit-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-size: .75rem; font-weight: 1000; }
.quick-benefits strong { display: block; margin-bottom: 5px; }
.quick-benefits p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }

.section { padding: 112px 0; }
.section--soft { background: var(--soft); }
.section-heading { margin-bottom: 42px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.section-heading h2, .story-grid h2, .custom-section h2, .quote-card h2 { margin: 14px 0 0; font-size: clamp(2.35rem, 4.3vw, 4rem); line-height: 1.02; letter-spacing: -.05em; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.7; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card, .service-card { scroll-margin-top: 150px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.catalog-card:hover, .service-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(3,16,32,.1); }
.catalog-card > span, .service-card > span { color: var(--blue); font-size: .72rem; font-weight: 900; }
.catalog-card h3, .service-card h3 { margin: 13px 0 9px; font-size: 1.45rem; letter-spacing: -.03em; }
.catalog-card p, .service-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.catalog-card b { display: inline-block; margin-top: 22px; color: var(--blue); font-size: .78rem; }
.catalog-card { overflow: hidden; padding: 0; }
.catalog-card__media { height: 245px; overflow: hidden; background: var(--soft); }
.catalog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.catalog-card:hover .catalog-card__media img { transform: scale(1.045); }
.catalog-card__content { padding: 28px; }
.catalog-card__content > span { color: var(--blue); font-size: .72rem; font-weight: 900; }
.product-banner { position: relative; padding: 22px; border-radius: 28px; background: linear-gradient(135deg, var(--navy), #0a315a); box-shadow: 0 24px 55px rgba(3,16,32,.18); }
.product-banner .catalog-card { border-color: rgba(255,255,255,.12); }
.products-more { display: flex; justify-content: center; margin-top: 30px; }
.products-more .button { min-width: 220px; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-banner { padding: 24px; border: 1px solid rgba(206,20,115,.12); border-radius: 28px; background: linear-gradient(135deg, #fff0f7 0%, #fff8dc 100%); box-shadow: 0 24px 55px rgba(91,20,61,.12); }
.service-banner .service-card { border-color: rgba(206,20,115,.16); }
.services-more { display: flex; justify-content: center; margin-top: 30px; }
.services-more .button { min-width: 220px; border: 0; color: #fff; background: var(--magenta); text-align: center; }
.services-more .button:hover { background: #a90f5e; }
.service-card { overflow: hidden; padding: 0; }
.service-card__media { height: 330px; overflow: hidden; background: var(--soft); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-card__media img { transform: scale(1.045); }
.service-card__content { padding: 38px; }
.service-card__content > span { color: var(--blue); font-size: .72rem; font-weight: 900; }
.service-card .text-link { display: inline-block; margin-top: 25px; }
.catalog-card.is-hidden, .service-card.is-hidden { display: none; }
.internal-header { position: sticky; top: 0; z-index: 50; background: var(--navy); color: #fff; box-shadow: 0 9px 28px rgba(3,16,32,.15); }
.internal-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.internal-header .brand img { width: 155px; }
.internal-nav { display: flex; align-items: center; gap: 28px; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.internal-nav a { color: rgba(255,255,255,.88); }
.internal-nav a:hover, .internal-nav a[aria-current="page"] { color: var(--yellow); }
.internal-hero { padding: 100px 0 72px; background: linear-gradient(135deg, #fff 0%, #eef5ff 100%); }
.internal-hero h1 { max-width: 850px; margin: 14px 0 18px; font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .95; letter-spacing: -.06em; }
.internal-hero p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.internal-cta { padding: 76px 0; text-align: center; background: var(--navy); color: #fff; }
.internal-cta h2 { margin: 0 0 24px; font-size: clamp(2rem, 4vw, 3.5rem); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.contact-info, .contact-form-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; padding: 36px; box-shadow: 0 18px 45px rgba(3,16,32,.07); }
.contact-info h2, .contact-form-card h2 { margin: 0 0 14px; font-size: 2rem; letter-spacing: -.04em; }
.contact-info > p, .contact-form-card > p { color: var(--muted); line-height: 1.65; }
.contact-details { display: grid; gap: 22px; margin-top: 32px; }
.contact-detail small { display: block; margin-bottom: 5px; color: var(--muted); font-weight: 700; }
.contact-detail a, .contact-detail strong { font-size: 1.05rem; font-weight: 900; }
.contact-form { display: grid; gap: 16px; margin-top: 26px; }
.contact-form label { display: grid; gap: 7px; font-size: .8rem; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; color: var(--navy); background: #fff; font: inherit; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(27,116,192,.16); border-color: var(--blue); }
.map-section { padding: 0 0 100px; }
.map-frame { overflow: hidden; height: 480px; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 18px 45px rgba(3,16,32,.1); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.category-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 310px; gap: 18px; }
.category-card { position: relative; grid-column: span 4; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #f8f7f4; transition: transform .25s, box-shadow .25s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(20,16,12,.12); }
.category-card--wide { grid-column: span 8; }
.category-card__content { position: relative; z-index: 2; width: 52%; padding: 30px; }
.category-card:not(.category-card--wide) .category-card__content { width: 100%; padding-right: 45%; }
.category-card__content > span { color: var(--accent-dark); font-weight: 900; font-size: .72rem; }
.category-card h3 { margin: 12px 0 9px; font-size: 1.62rem; letter-spacing: -.035em; }
.category-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.category-card b { display: inline-block; margin-top: 24px; font-size: .78rem; }
.category-card img { position: absolute; right: 0; bottom: 0; width: 51%; height: 90%; object-fit: contain; object-position: right bottom; transition: transform .3s; }
.category-card:not(.category-card--wide) img { width: 53%; height: 66%; }
.category-card:hover img { transform: scale(1.04) rotate(1deg); }
.category-card--dark { grid-column: span 5; background: var(--ink); color: #fff; border-color: var(--ink); }
.category-card--dark p { color: rgba(255,255,255,.65); }
.category-card--accent { grid-column: span 7; background: var(--accent); border-color: var(--accent); }
.category-card--accent .category-card__content > span { color: #fff; }
.category-card--accent p { color: rgba(39,20,7,.7); }

.section-heading--products { grid-template-columns: 1fr auto; }
.filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { border: 1px solid #d2cdc5; border-radius: 999px; background: #fff; padding: 10px 15px; color: #5b5853; font-size: .78rem; font-weight: 800; }
.filter-button:hover, .filter-button.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.search-status { min-height: 24px; margin: -18px 0 18px; color: var(--muted); font-size: .84rem; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.product-card { overflow: hidden; background: #fff; border: 1px solid #e2ded7; border-radius: var(--radius-md); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(28,22,17,.1); }
.product-card.is-hidden { display: none; }
.product-card__media { position: relative; height: 285px; display: grid; place-items: center; overflow: hidden; background: #ece9e3; }
.product-card__media::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,255,255,.53); }
.product-card__media img { position: relative; z-index: 1; width: 83%; height: 83%; object-fit: contain; transition: transform .25s; }
.product-card:hover img { transform: scale(1.05); }
.product-tag { position: absolute; z-index: 2; left: 16px; top: 16px; padding: 7px 10px; border-radius: 999px; background: var(--ink); color: white; font-size: .68rem; font-weight: 900; }
.product-tag--new { background: var(--accent); }
.product-card__body { padding: 24px; }
.product-card__body small { color: var(--accent-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { margin: 9px 0; font-size: 1.3rem; letter-spacing: -.03em; }
.product-card p { min-height: 46px; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.product-card__footer { margin-top: 20px; padding-top: 17px; border-top: 1px solid #ebe7e1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__footer span { color: var(--muted); font-size: .78rem; }
.product-card__footer strong { color: var(--ink); font-size: 1rem; }
.text-button { border: 0; background: transparent; padding: 0; font-weight: 900; font-size: .8rem; }
.text-button:hover { color: var(--accent-dark); }

.custom-section { background: var(--ink); color: #fff; overflow: hidden; }
.custom-section__grid { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.custom-section__visual { position: relative; align-self: stretch; display: grid; place-items: center; }
.custom-section__visual::before { content: ""; position: absolute; width: 490px; height: 490px; border-radius: 50%; background: var(--accent); }
.custom-section__visual img { position: relative; z-index: 1; width: 100%; max-height: 650px; filter: drop-shadow(0 32px 40px rgba(0,0,0,.34)); }
.custom-section__badge { position: absolute; z-index: 2; right: 0; bottom: 15%; width: 190px; padding: 18px; border-radius: 17px; background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.custom-section__badge strong, .custom-section__badge span { display: block; }
.custom-section__badge span { margin-top: 5px; color: var(--muted); font-size: .75rem; }
.custom-section__content { padding: 85px 0; }
.custom-section__content > p { color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.75; }
.process-list { list-style: none; margin: 34px 0; padding: 0; display: grid; gap: 22px; }
.process-list li { display: flex; gap: 16px; }
.process-list li > span { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--accent); font-weight: 900; }
.process-list strong { display: block; margin-bottom: 5px; }
.process-list p { margin: 0; color: rgba(255,255,255,.57); font-size: .83rem; line-height: 1.55; }
.process-section { overflow: hidden; padding: 105px 0 115px; color: #fff; background: linear-gradient(135deg, var(--navy) 0%, #092b50 100%); }
.process-heading { max-width: 680px; margin: 0 auto 70px; text-align: center; }
.process-heading h2 { margin: 14px 0 0; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.05em; }
.process-heading .eyebrow { justify-content: center; }
.process-timeline { position: relative; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin: 0; padding: 0; }
.process-timeline::before { content: ""; position: absolute; top: 27px; right: 16.66%; left: 16.66%; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow)); }
.process-timeline li { position: relative; z-index: 1; text-align: center; }
.process-timeline li > span { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 28px; border: 3px solid currentColor; border-radius: 50%; color: var(--yellow); background: var(--navy); font-size: 1.1rem; font-weight: 1000; box-shadow: 0 0 0 9px rgba(255,255,255,.06); }
.process-timeline li:nth-child(1) > span { color: var(--cyan); }
.process-timeline li:nth-child(2) > span { color: var(--magenta); }
.process-timeline strong { display: block; margin-bottom: 11px; font-size: 1.15rem; }
.process-timeline p { max-width: 310px; margin: 0 auto; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.65; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.story-copy { padding-top: 24px; }
.story-copy p { margin: 0 0 18px; color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.text-link { display: inline-block; margin-top: 12px; font-weight: 900; color: var(--accent-dark); }

.quote-section { padding: 0 0 112px; }
.quote-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; padding: 66px; border-radius: var(--radius-lg); background: var(--accent); box-shadow: 0 30px 80px rgba(100,41,5,.15); }
.quote-card__copy { padding-top: 10px; }
.quote-card__copy > p { color: rgba(45,25,11,.68); line-height: 1.7; }
.contact-lines { margin-top: 34px; display: grid; gap: 8px; font-weight: 900; }
.quote-form { padding: 30px; border-radius: 22px; background: #fff; box-shadow: 0 20px 52px rgba(94,38,4,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 14px; font-size: .76rem; font-weight: 900; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #dcd7d0; border-radius: 10px; background: #faf9f7; padding: 12px 13px; outline: 0; color: var(--ink); }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(243,119,34,.1); }
.form-note { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: .7rem; }

.site-footer { padding: 46px 0 18px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3,1fr); gap: 42px; }
.footer-brand img { width: 145px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-grid h3 { margin: 0 0 13px; font-size: .76rem; color: var(--accent); text-transform: uppercase; letter-spacing: .11em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a, .footer-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 17px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.4); font-size: .72rem; }

.whatsapp-float { position: fixed; z-index: 99; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 14px 36px rgba(16,91,49,.3); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; fill: #fff; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; padding: 12px 18px; border-radius: 999px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: .82rem; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1000px) {
  .header-main { grid-template-columns: 165px 1fr auto; gap: 16px; }
  .header-contact { display: none; }
  .hero__grid { grid-template-columns: 1fr .8fr; }
  .hero__visual { min-height: 500px; }
  .category-card__content { width: 62%; }
  .category-card:not(.category-card--wide) .category-card__content { padding-right: 30px; }
  .category-card:not(.category-card--wide) img { opacity: .5; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .custom-section__grid { gap: 40px; }
  .quote-card { gap: 35px; padding: 44px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,1fr); gap: 30px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .announcement__inner span:nth-of-type(2), .announcement__inner span:nth-of-type(3) { display: none; }
  .site-header { top: 0; }
  .header-main { min-height: 68px; grid-template-columns: 150px 1fr auto; }
  .brand img { width: 140px; }
  .search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 12px; }
  .menu-toggle { display: block; justify-self: end; }
  .primary-nav { display: none; }
  .primary-nav.is-open { display: block; }
  .primary-nav__inner { padding: 18px 0; min-height: auto; flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown__menu { position: static; width: 100%; margin-top: 10px; padding: 5px 0 0 14px; transform: none; border: 0; border-left: 2px solid var(--accent); border-radius: 0; background: transparent; box-shadow: none; }
  .nav-dropdown__menu a { color: inherit; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero, .hero__grid { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 20px; }
  .hero__content { padding: 55px 0 0; text-align: left; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero__visual { min-height: 430px; margin-top: -20px; }
  .hero__product { width: min(480px, 100%); }
  .hero__orbit--one { width: 310px; height: 310px; }
  .hero__orbit--two { width: 380px; height: 380px; }
  .floating-card--top { top: 8%; right: 0; }
  .floating-card--bottom { bottom: 8%; left: 0; }
  .quick-benefits { margin-top: 0; padding: 14px 0; background: var(--soft); }
  .quick-benefits__grid { grid-template-columns: 1fr; box-shadow: none; border: 1px solid var(--line); }
  .quick-benefits article + article { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading, .section-heading--products, .story-grid { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2, .story-grid h2, .custom-section h2, .quote-card h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .category-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .category-card, .category-card--wide, .category-card--dark, .category-card--accent { grid-column: auto; }
  .category-card__content, .category-card:not(.category-card--wide) .category-card__content { width: 68%; padding: 24px; }
  .category-card img, .category-card:not(.category-card--wide) img { width: 55%; height: 72%; opacity: 1; }
  .filters { justify-content: flex-start; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-grid, .services-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info, .contact-form-card { padding: 26px 20px; }
  .map-frame { height: 380px; }
  .internal-header__inner { min-height: 70px; }
  .internal-nav { gap: 14px; font-size: .68rem; letter-spacing: .04em; }
  .internal-header .brand img { width: 120px; }
  .internal-hero { padding: 72px 0 55px; }
  .product-card__media { height: 260px; }
  .custom-section__grid { min-height: auto; grid-template-columns: 1fr; }
  .custom-section__visual { min-height: 460px; order: 2; }
  .custom-section__visual::before { width: 330px; height: 330px; }
  .custom-section__content { padding: 75px 0 0; }
  .custom-section__badge { right: 4%; bottom: 8%; }
  .process-section { padding: 78px 0; }
  .process-heading { margin-bottom: 48px; text-align: left; }
  .process-heading .eyebrow { justify-content: flex-start; }
  .process-timeline { grid-template-columns: 1fr; gap: 38px; padding-left: 78px; }
  .process-timeline::before { top: 28px; bottom: 28px; left: 27px; width: 3px; height: auto; }
  .process-timeline li { min-height: 70px; text-align: left; }
  .process-timeline li > span { position: absolute; top: 0; left: -78px; margin: 0; }
  .process-timeline p { max-width: none; margin: 0; }
  .story-copy { padding-top: 0; }
  .quote-section { padding-bottom: 78px; }
  .quote-card { grid-template-columns: 1fr; padding: 28px 18px; border-radius: 24px; }
  .quote-form { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .announcement__inner { justify-content: space-between; }
  .announcement__inner span:first-child { font-size: .7rem; }
  .hero__trust { gap: 18px; }
  .hero__trust div { width: calc(50% - 10px); }
  .floating-card--top { transform: scale(.84); transform-origin: right top; }
  .floating-card--bottom { transform: scale(.86); transform-origin: left bottom; }
  .category-card__content, .category-card:not(.category-card--wide) .category-card__content { width: 78%; }
  .category-card img, .category-card:not(.category-card--wide) img { opacity: .62; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* =========================================================
   PALETA VISUAL AZUL · MAGENTA · AMARILLO
   Inspirada en la referencia compartida por el cliente.
   ========================================================= */
:root {
  --ink: #031020;
  --ink-2: #071f39;
  --paper: #ffffff;
  --soft: #f4f8fc;
  --muted: #637083;
  --line: #dce5f0;
  --accent: #0448ab;
  --accent-dark: #03377f;
  --accent-soft: #e8f2ff;
  --blue: #0448ab;
  --cyan: #1b74c0;
  --magenta: #ce1473;
  --yellow: #efbc12;
  --green: #24a042;
  --navy: #031020;
  --shadow: 0 24px 60px rgba(3, 16, 32, .13);
}

body { color: var(--navy); }
::selection { background: var(--magenta); color: #fff; }

.announcement { background: var(--blue); color: #fff; }
.announcement__inner a { color: #fff; }
.announcement__separator { background: var(--yellow); }

.site-header {
  background: rgba(3, 16, 32, .98);
  color: #fff;
  border-bottom-color: rgba(255,255,255,.09);
  box-shadow: 0 9px 28px rgba(3,16,32,.15);
}
.header-main { min-height: 76px; }
.brand img { width: 165px; }
.header-contact__label { color: rgba(255,255,255,.62); }
.header-contact a { color: #fff; }
.search { background: #fff; border-color: rgba(255,255,255,.16); }
.search input, .search button { color: var(--navy); }
.search:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(27,116,192,.22); }
.menu-toggle span { background: #fff; }
.primary-nav { border-top-color: rgba(255,255,255,.09); background: var(--navy); }
.primary-nav__inner { color: rgba(255,255,255,.88); }
.primary-nav a:not(.nav-cta)::after { background: linear-gradient(90deg,var(--cyan),var(--magenta),var(--yellow)); }
.nav-cta {
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(36,160,66,.22);
}

.hero {
  min-height: 650px;
  background: linear-gradient(112deg, #fff 0%, #fff 54%, #f4f8ff 100%);
}
.hero__texture {
  opacity: .34;
  background-image: radial-gradient(rgba(4,72,171,.16) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg,#000,transparent 52%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 760px;
  height: 520px;
  right: -120px;
  top: 55px;
  background:
    linear-gradient(154deg, transparent 0 19%, var(--cyan) 20% 30%, transparent 31% 100%),
    linear-gradient(160deg, transparent 0 29%, var(--magenta) 30% 42%, transparent 43% 100%),
    linear-gradient(168deg, transparent 0 39%, var(--yellow) 40% 50%, transparent 51% 100%),
    linear-gradient(175deg, transparent 0 49%, var(--blue) 50% 67%, transparent 68% 100%);
  clip-path: polygon(13% 9%, 100% 0, 93% 91%, 0 100%);
  opacity: .97;
  transform: rotate(-3deg);
}
.hero::after {
  width: 560px;
  height: 560px;
  right: -210px;
  top: -250px;
  border-color: rgba(4,72,171,.1);
}
.hero__grid { min-height: 650px; }
.hero__content { max-width: 670px; }
.eyebrow { color: var(--blue); }
.eyebrow--dark { color: var(--blue); }
.hero h1 {
  color: var(--navy);
  font-size: clamp(3.4rem, 6.2vw, 5.7rem);
  line-height: .92;
}
.hero h1 span { color: inherit; }
.hero-title__blue { color: var(--cyan) !important; }
.hero-title__pink { color: var(--magenta) !important; }
.hero__content > p { color: #344256; }
.button--primary { color: var(--navy); background: var(--yellow); }
.button--primary:hover { background: #ffd339; }
.button--dark { background: var(--navy); }
.button--ghost { color: var(--navy); border-color: rgba(3,16,32,.38); background: rgba(255,255,255,.84); }
.hero__trust strong { color: var(--navy); }
.hero__trust span { color: #667286; }
.hero__product { filter: drop-shadow(0 32px 35px rgba(3,16,32,.24)); }
.hero__orbit { border-color: rgba(255,255,255,.66); }
.hero__orbit--two { border-color: rgba(255,255,255,.75); }
.floating-card { box-shadow: 0 16px 42px rgba(3,16,32,.18); }

.quick-benefits__grid { border: 1px solid var(--line); }
.quick-benefits article:nth-child(1) .benefit-icon { color: var(--blue); background: #e7f0ff; }
.quick-benefits article:nth-child(2) .benefit-icon { color: var(--magenta); background: #ffe9f4; }
.quick-benefits article:nth-child(3) .benefit-icon { color: #9a7600; background: #fff6cf; }

.section-heading h2::after,
.story-grid h2::after,
.custom-section h2::after,
.quote-card h2::after {
  content: "";
  display: block;
  width: 94px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--cyan) 0 33%,var(--magenta) 33% 66%,var(--yellow) 66%);
}

.category-card { background: #fff; border-color: var(--line); box-shadow: 0 7px 24px rgba(3,16,32,.04); }
.category-card:hover { box-shadow: 0 20px 44px rgba(3,16,32,.12); }
.category-card__content > span { color: var(--blue); }
.category-card:nth-child(2) .category-card__content > span { color: var(--magenta); }
.category-card:nth-child(3) .category-card__content > span { color: #b88b00; }
.category-card--dark { background: var(--navy); border-color: var(--navy); }
.category-card--dark .category-card__content > span { color: var(--yellow); }
.category-card--accent { background: linear-gradient(135deg,var(--blue),var(--cyan)); border-color: var(--blue); color: #fff; }
.category-card--accent .category-card__content > span { color: var(--yellow); }
.category-card--accent p { color: rgba(255,255,255,.76); }

.filter-button { border-color: #cbd8e7; color: #4f5f73; }
.filter-button:hover, .filter-button.is-active { background: var(--blue); border-color: var(--blue); }
.product-card { border-color: var(--line); }
.product-card__media { background: linear-gradient(145deg,#edf3fa,#f9fbfe); }
.product-card__media::after { background: rgba(255,255,255,.74); }
.product-tag { background: var(--navy); }
.product-tag--new { background: var(--magenta); }
.product-card__body small, .text-button:hover, .text-link { color: var(--blue); }

.custom-section { background: var(--navy); }
.custom-section__visual::before {
  background: linear-gradient(145deg,var(--blue),var(--cyan) 48%,var(--magenta));
  box-shadow: 0 0 0 28px rgba(255,255,255,.04);
}
.process-list li > span { color: var(--yellow); border-color: rgba(239,188,18,.42); }
.button--light { color: var(--navy); background: var(--yellow); }

.quote-card {
  color: #fff;
  background: linear-gradient(135deg,var(--blue),var(--cyan));
  box-shadow: 0 30px 80px rgba(4,72,171,.22);
  overflow: hidden;
  position: relative;
}
.quote-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -165px;
  bottom: -215px;
  border: 48px solid rgba(206,20,115,.35);
  border-radius: 50%;
}
.quote-card__copy, .quote-form { position: relative; z-index: 1; }
.quote-card__copy > p { color: rgba(255,255,255,.76); }
.quote-card .eyebrow { color: var(--yellow); }
.quote-form { color: var(--navy); box-shadow: 0 20px 52px rgba(3,16,32,.2); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(27,116,192,.14); }
.quote-form .button--dark { background: var(--green); }

.site-footer { background: var(--navy); }
.footer-grid h3 { color: var(--yellow); }
.whatsapp-float { background: var(--green); }
.toast { background: var(--navy); }

@media (max-width: 1000px) {
  .hero::before { right: -260px; opacity: .75; }
}

@media (max-width: 760px) {
  .site-header { background: var(--navy); }
  .primary-nav { background: var(--navy); }
  .hero { background: linear-gradient(180deg,#fff 0%,#fff 68%,#eef5ff 100%); }
  .hero::before { width: 680px; height: 390px; right: -290px; top: auto; bottom: 15px; opacity: .88; }
  .hero__content { position: relative; z-index: 4; }
  .hero__visual { position: relative; z-index: 2; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.9rem); }
}
