/* Noor Aldalaam Foodstuff Trading LLC — shared production stylesheet */
:root {
  --green: #005b3c;
  --green-dark: #003d29;
  --green-deep: #002b1f;
  --gold: #d5a021;
  --gold-light: #f2d27a;
  --cream: #f8f5ec;
  --cream-2: #f2eee2;
  --white: #fff;
  --ink: #1f2933;
  --muted: #64706c;
  --line: #e8e4d8;
  --shadow-sm: 0 10px 30px rgba(0, 45, 30, .08);
  --shadow: 0 22px 60px rgba(0, 45, 30, .13);
  --radius: 22px;
  --container: 1180px;
  --header-height: 116px;
  --transition: 260ms cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold-light); color: var(--green-deep); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--cream); }
.section--dark { background: var(--green-deep); color: var(--white); }
.section--compact { padding: 68px 0; }
.overflow-hidden { overflow: hidden; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.65rem); margin-bottom: 22px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
p { margin-bottom: 20px; }
.lead { color: var(--muted); font-size: 1.12rem; line-height: 1.82; }
.text-light, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead, .section--dark p { color: rgba(255,255,255,.76); }
.eyebrow {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: .18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow::before { background: var(--gold); content: ""; height: 2px; width: 32px; }
.section--dark .eyebrow { color: var(--gold-light); }
.section-heading { margin-bottom: 44px; max-width: 760px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow::before { display: none; }
.section-heading--center .eyebrow::after { background: var(--gold); content: ""; height: 2px; width: 32px; }

.topbar { background: var(--green-deep); color: rgba(255,255,255,.86); font-size: .78rem; }
.topbar__inner { align-items: center; display: flex; justify-content: space-between; min-height: 38px; }
.topbar__items { align-items: center; display: flex; gap: 22px; }
.topbar a { align-items: center; display: inline-flex; gap: 7px; transition: color var(--transition); }
.topbar a:hover { color: var(--gold-light); }
.topbar svg { height: 15px; stroke: currentColor; stroke-width: 1.8; fill: none; width: 15px; }
.topbar__note { color: var(--gold-light); font-weight: 700; letter-spacing: .04em; }

.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,61,41,.08);
  position: sticky;
  top: 0;
  transition: box-shadow var(--transition), transform var(--transition);
  z-index: 1000;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(0,45,30,.1); }
.navbar { align-items: center; display: flex; min-height: var(--header-height); }
.brand { align-items: center; display: flex; flex: 0 0 auto; margin-right: 24px; }
.brand__logo { height: 108px; object-fit: contain; width: 108px; transition: transform var(--transition); }
.brand:hover .brand__logo { transform: scale(1.03); }
.nav { align-items: center; display: flex; gap: 3px; margin-left: auto; }
.nav__list { align-items: center; display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link, .dropdown-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #244137;
  cursor: pointer;
  display: flex;
  font-size: .83rem;
  font-weight: 700;
  gap: 6px;
  padding: 14px 10px;
  position: relative;
  white-space: nowrap;
}
.nav__link::after, .dropdown-toggle::after {
  background: var(--gold);
  bottom: 7px;
  content: "";
  height: 2px;
  left: 10px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  width: calc(100% - 20px);
}
.nav__link:hover::after, .nav__link.active::after, .dropdown-toggle:hover::after, .dropdown-toggle.active::after { transform: scaleX(1); }
.nav__link.active, .dropdown-toggle.active { color: var(--green); }
.dropdown-toggle svg { fill: none; height: 12px; stroke: currentColor; stroke-width: 2; transition: transform var(--transition); width: 12px; }
.nav__item.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 280px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav__item.open .dropdown, .nav__item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { border-radius: 10px; color: #365148; display: block; font-size: .83rem; font-weight: 650; padding: 10px 12px; transition: background var(--transition), color var(--transition), transform var(--transition); }
.dropdown a:hover, .dropdown a.active { background: var(--cream); color: var(--green); transform: translateX(3px); }
.nav__cta { margin-left: 12px; }
.menu-toggle { align-items: center; background: var(--green); border: 0; border-radius: 12px; cursor: pointer; display: none; height: 46px; justify-content: center; margin-left: auto; width: 46px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { background: var(--white); content: ""; display: block; height: 2px; position: absolute; transition: var(--transition); width: 22px; }
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.menu-toggle.active span { opacity: 0; }
.menu-toggle.active::before { transform: rotate(45deg); }
.menu-toggle.active::after { transform: rotate(-45deg); }

.btn {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--green-deep);
  cursor: pointer;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: .02em;
  min-height: 50px;
  overflow: hidden;
  padding: 13px 24px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn::before { background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%); content: ""; height: 100%; left: -120%; position: absolute; top: 0; transition: left .55s ease; width: 80%; }
.btn:hover::before { left: 140%; }
.btn:hover { box-shadow: 0 13px 28px rgba(213,160,33,.28); transform: translateY(-2px); }
.btn svg { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 18px; }
.btn--green { background: var(--green); border-color: var(--green); color: var(--white); }
.btn--green:hover { box-shadow: 0 13px 28px rgba(0,91,60,.24); }
.btn--outline { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); color: var(--white); backdrop-filter: blur(8px); }
.btn--outline:hover { background: var(--white); color: var(--green-deep); }
.btn--small { min-height: 43px; padding: 10px 18px; }
.btn-row { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  align-items: center;
  background-color: var(--green-deep);
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}
.hero::before { background: linear-gradient(90deg, rgba(0,28,19,.93) 0%, rgba(0,45,30,.75) 46%, rgba(0,45,30,.25) 100%); content: ""; inset: 0; position: absolute; }
.hero::after { background: radial-gradient(circle, rgba(242,210,122,.22) 0, transparent 65%); content: ""; height: 620px; position: absolute; right: -180px; top: -260px; width: 620px; }
.hero--home { background-image: url("../images/frozen-products.webp"); }
.hero--about { background-image: url("../images/frozen-procurement.webp"); }
.hero--services { background-image: url("../images/frozen-wholesale.webp"); }
.hero--import { background-image: url("../images/logistics-truck.webp"); }
.hero--wholesale { background-image: url("../images/frozen-wholesale.webp"); }
.hero--cold { background-image: url("../images/frozen-logistics.webp"); }
.hero--label { background-image: url("../images/frozen-packaging.webp"); }
.hero--industries { background-image: url("../images/frozen-hospitality.webp"); }
.hero--quality { background-image: url("../images/frozen-quality.webp"); }
.hero--contact { background-image: url("../images/frozen-procurement.webp"); }
.hero__content { max-width: 810px; padding: 90px 0; position: relative; z-index: 2; }
.hero__kicker { align-items: center; color: var(--gold-light); display: flex; font-size: .8rem; font-weight: 800; gap: 12px; letter-spacing: .17em; margin-bottom: 20px; text-transform: uppercase; }
.hero__kicker::before { background: var(--gold); content: ""; height: 2px; width: 42px; }
.hero h1 { color: var(--white); margin-bottom: 24px; text-shadow: 0 3px 28px rgba(0,0,0,.2); }
.hero p { color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.8; max-width: 720px; }
.hero__tag { border-left: 3px solid var(--gold); color: var(--gold-light); font-family: Georgia, serif; font-size: 1.08rem; font-style: italic; margin: 24px 0 30px; padding-left: 16px; }
.hero--inner { min-height: 500px; }
.hero--inner .hero__content { max-width: 760px; padding: 74px 0; }
.hero--inner h1 { font-size: clamp(2.65rem, 5vw, 4.7rem); }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; z-index: 4; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { align-items: center; border-right: 1px solid var(--line); display: flex; gap: 13px; min-height: 104px; padding: 20px 24px; }
.trust-item:last-child { border-right: 0; }
.icon-box { align-items: center; background: var(--cream); border-radius: 13px; color: var(--green); display: inline-flex; flex: 0 0 auto; height: 48px; justify-content: center; transition: var(--transition); width: 48px; }
.icon-box svg { fill: none; height: 25px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 25px; }
.trust-item:hover .icon-box, .feature-card:hover .icon-box { background: var(--green); color: var(--gold-light); transform: rotate(-4deg) scale(1.05); }
.trust-item strong { color: var(--green-deep); display: block; font-family: Georgia, serif; font-size: 1rem; line-height: 1.2; }
.trust-item span { color: var(--muted); display: block; font-size: .76rem; margin-top: 5px; }

.split { align-items: center; display: grid; gap: clamp(42px, 7vw, 88px); grid-template-columns: 1.02fr .98fr; }
.split--reverse > :first-child { order: 2; }
.media-frame { border-radius: var(--radius); box-shadow: var(--shadow); min-height: 510px; overflow: hidden; position: relative; }
.media-frame::before { border: 1px solid rgba(255,255,255,.5); border-radius: calc(var(--radius) - 7px); content: ""; inset: 12px; pointer-events: none; position: absolute; z-index: 2; }
.media-frame img { height: 100%; inset: 0; object-fit: cover; position: absolute; transition: transform .8s ease; width: 100%; }
.media-frame--product { background: #12365a; }
.media-frame--product img { object-fit: contain; }
.media-frame:hover img { transform: scale(1.045); }
.media-badge { background: rgba(0,61,41,.95); border-left: 4px solid var(--gold); bottom: 24px; color: var(--white); left: 24px; max-width: calc(100% - 48px); padding: 16px 20px; position: absolute; z-index: 3; }
.media-badge strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; }
.media-badge span { color: rgba(255,255,255,.7); font-size: .75rem; }
.gold-corner::after { border: 3px solid var(--gold); border-left: 0; border-top: 0; bottom: -15px; content: ""; height: 100px; position: absolute; right: -15px; width: 100px; z-index: -1; }

.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(0,45,30,.06); overflow: hidden; position: relative; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { border-color: rgba(213,160,33,.7); box-shadow: var(--shadow); transform: translateY(-8px); }
.service-card__media { height: 220px; overflow: hidden; position: relative; }
.service-card__media::after { background: linear-gradient(0deg, rgba(0,45,30,.38), transparent 60%); content: ""; inset: 0; position: absolute; }
.service-card__media img { height: 100%; object-fit: cover; transition: transform .7s ease; width: 100%; }
.service-card__media--product { background: #12365a; }
.service-card__media--product img { object-fit: contain; }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__number { background: var(--gold); border-radius: 999px; bottom: 14px; color: var(--green-deep); font-size: .72rem; font-weight: 900; height: 38px; left: 16px; line-height: 38px; position: absolute; text-align: center; width: 38px; z-index: 2; }
.service-card__body { padding: 25px; }
.service-card__body p { color: var(--muted); font-size: .88rem; }
.text-link { align-items: center; color: var(--green); display: inline-flex; font-size: .8rem; font-weight: 850; gap: 7px; text-transform: uppercase; }
.text-link svg { fill: none; height: 17px; stroke: currentColor; stroke-width: 2; transition: transform var(--transition); width: 17px; }
.text-link:hover svg { transform: translateX(5px); }

.feature-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: transform var(--transition), box-shadow var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.feature-card .icon-box { margin-bottom: 20px; }
.feature-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.section--dark .feature-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.13); }
.section--dark .feature-card p { color: rgba(255,255,255,.7); }
.section--dark .feature-card .icon-box { background: rgba(255,255,255,.1); color: var(--gold-light); }

.process-grid { counter-reset: steps; display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.process-step { background: var(--white); border: 1px solid var(--line); border-radius: 18px; counter-increment: steps; padding: 30px 24px; position: relative; }
.process-step::before { color: rgba(213,160,33,.2); content: "0" counter(steps); font-family: Georgia, serif; font-size: 3.5rem; font-weight: 800; line-height: 1; position: absolute; right: 18px; top: 14px; }
.process-step__dot { align-items: center; background: var(--green); border: 6px solid var(--cream); border-radius: 50%; color: var(--gold-light); display: flex; height: 52px; justify-content: center; margin-bottom: 22px; position: relative; width: 52px; z-index: 2; }
.process-step__dot svg { fill: none; height: 22px; stroke: currentColor; stroke-width: 1.8; width: 22px; }
.process-step p { color: var(--muted); font-size: .87rem; margin: 0; }

.industry-grid { display: grid; gap: 18px; grid-template-columns: repeat(5, 1fr); }
.industry-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px 17px; text-align: center; transition: var(--transition); }
.industry-card:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-6px); }
.industry-card .icon-box { margin: 0 auto 15px; }
.industry-card h3 { font-size: 1.04rem; margin: 0; transition: color var(--transition); }
.industry-card:hover h3 { color: var(--white); }

.list-check { display: grid; gap: 12px; list-style: none; margin: 28px 0; padding: 0; }
.list-check--two { grid-template-columns: repeat(2, 1fr); }
.list-check li { align-items: flex-start; color: #3f554d; display: flex; font-size: .92rem; gap: 11px; }
.list-check svg { background: var(--cream); border-radius: 50%; color: var(--green); fill: none; flex: 0 0 auto; height: 24px; padding: 5px; stroke: currentColor; stroke-width: 2.4; width: 24px; }
.section--dark .list-check li { color: rgba(255,255,255,.82); }

.cta-band { background: linear-gradient(115deg, var(--green-deep), var(--green)); border-radius: 30px; color: var(--white); overflow: hidden; padding: 60px clamp(30px, 6vw, 76px); position: relative; }
.cta-band::before, .cta-band::after { border: 1px solid rgba(242,210,122,.22); border-radius: 50%; content: ""; position: absolute; }
.cta-band::before { height: 310px; right: -100px; top: -160px; width: 310px; }
.cta-band::after { height: 210px; right: -20px; top: -90px; width: 210px; }
.cta-band__inner { align-items: center; display: flex; gap: 32px; justify-content: space-between; position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; max-width: 690px; }

.faq { display: grid; gap: 13px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item.open { border-color: rgba(213,160,33,.65); box-shadow: var(--shadow-sm); }
.faq-question { align-items: center; background: transparent; border: 0; color: var(--green-deep); cursor: pointer; display: flex; font-family: Georgia, serif; font-size: 1.08rem; font-weight: 750; justify-content: space-between; min-height: 68px; padding: 17px 21px; text-align: left; width: 100%; }
.faq-question span:last-child { align-items: center; background: var(--cream); border-radius: 50%; display: flex; flex: 0 0 auto; height: 30px; justify-content: center; margin-left: 18px; transition: transform var(--transition), background var(--transition); width: 30px; }
.faq-item.open .faq-question span:last-child { background: var(--gold); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { color: var(--muted); font-size: .9rem; margin: 0; padding: 0 21px 21px; }

.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--line); }
.breadcrumb__inner { align-items: center; color: var(--muted); display: flex; flex-wrap: wrap; font-size: .78rem; gap: 8px; min-height: 48px; }
.breadcrumb a { color: var(--green); font-weight: 750; }
.breadcrumb span { color: #9a9f9b; }

.contact-grid { display: grid; gap: 30px; grid-template-columns: .78fr 1.22fr; }
.contact-panel { background: var(--green-deep); border-radius: var(--radius); color: var(--white); overflow: hidden; padding: 38px; position: relative; }
.contact-panel::after { background: radial-gradient(circle, rgba(213,160,33,.22), transparent 68%); bottom: -140px; content: ""; height: 360px; position: absolute; right: -140px; width: 360px; }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-list { display: grid; gap: 20px; margin-top: 28px; position: relative; z-index: 2; }
.contact-item { align-items: flex-start; display: flex; gap: 14px; }
.contact-item .icon-box { background: rgba(255,255,255,.1); color: var(--gold-light); height: 44px; width: 44px; }
.contact-item strong { display: block; font-size: .83rem; }
.contact-item span, .contact-item a { color: rgba(255,255,255,.72); display: block; font-size: .82rem; line-height: 1.6; }
.contact-item a:hover { color: var(--gold-light); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: clamp(28px, 5vw, 46px); }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--green-deep); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { background: #fbfaf6; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); min-height: 52px; padding: 12px 14px; transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(213,160,33,.13); outline: 0; }
.form-note { color: var(--muted); font-size: .76rem; margin: 14px 0 0; }
.form-status { color: var(--green); font-size: .82rem; font-weight: 700; margin-top: 13px; min-height: 22px; }
.map-card { align-items: center; background: linear-gradient(135deg, var(--cream), #e8eee9); border: 1px solid var(--line); border-radius: var(--radius); display: flex; justify-content: center; min-height: 320px; overflow: hidden; padding: 40px; position: relative; text-align: center; }
.map-card::before { background-image: linear-gradient(rgba(0,91,60,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,91,60,.06) 1px, transparent 1px); background-size: 28px 28px; content: ""; inset: 0; position: absolute; }
.map-card__pin { position: relative; z-index: 2; }
.map-card__pin .icon-box { background: var(--green); color: var(--gold-light); height: 64px; margin: 0 auto 18px; width: 64px; }
.map-card__pin h3 { margin-bottom: 6px; }
.map-card__pin p { color: var(--muted); font-size: .86rem; }

.site-footer { background: #00261b; color: rgba(255,255,255,.7); padding-top: 72px; }
.footer-grid { display: grid; gap: 42px; grid-template-columns: 1.35fr .75fr .9fr 1.15fr; padding-bottom: 54px; }
.footer-brand { align-items: center; display: flex; margin-bottom: 18px; }
.footer-brand--text { border-left: 4px solid var(--gold); padding: 8px 0 8px 18px; }
.footer-brand strong { color: var(--white); display: block; font-family: Georgia, serif; font-size: 1.72rem; line-height: 1.08; }
.footer-brand span { color: var(--gold-light); display: block; font-size: .72rem; font-weight: 800; letter-spacing: .13em; margin-top: 7px; text-transform: uppercase; }
.footer-brand em { color: rgba(255,255,255,.64); display: block; font-family: Georgia, serif; font-size: .78rem; margin-top: 9px; }
.footer-about { font-size: .83rem; max-width: 310px; }
.site-footer h3 { color: var(--white); font-size: 1.06rem; margin-bottom: 20px; }
.footer-links { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }
.footer-links a { font-size: .8rem; transition: color var(--transition), transform var(--transition); }
.footer-links a:hover { color: var(--gold-light); transform: translateX(3px); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a, .footer-contact span { align-items: flex-start; display: flex; font-size: .78rem; gap: 9px; }
.footer-contact svg { color: var(--gold-light); fill: none; flex: 0 0 auto; height: 17px; margin-top: 3px; stroke: currentColor; stroke-width: 1.8; width: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; padding: 19px 0; }
.footer-bottom__inner { align-items: center; display: flex; gap: 20px; justify-content: space-between; }

.whatsapp-float { align-items: center; background: #25d366; border: 4px solid var(--white); border-radius: 50%; bottom: 24px; box-shadow: 0 13px 34px rgba(0,0,0,.23); color: var(--white); display: flex; height: 62px; justify-content: center; position: fixed; right: 24px; transition: transform var(--transition), box-shadow var(--transition); width: 62px; z-index: 1100; }
.whatsapp-float::before { border: 2px solid rgba(37,211,102,.55); border-radius: 50%; content: ""; inset: -9px; position: absolute; animation: waPulse 2.1s infinite; }
.whatsapp-float svg { fill: currentColor; height: 31px; width: 31px; }
.whatsapp-float:hover { box-shadow: 0 16px 40px rgba(37,211,102,.35); transform: translateY(-4px) scale(1.04); }
.whatsapp-float__label { background: var(--green-deep); border-radius: 8px; color: var(--white); font-size: .72rem; font-weight: 700; opacity: 0; padding: 7px 10px; pointer-events: none; position: absolute; right: 72px; transform: translateX(7px); transition: var(--transition); white-space: nowrap; }
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; transform: translateX(0); }
@keyframes waPulse { 0% { opacity: .8; transform: scale(.92); } 75%,100% { opacity: 0; transform: scale(1.34); } }
.back-top { align-items: center; background: var(--gold); border: 0; border-radius: 50%; bottom: 98px; color: var(--green-deep); cursor: pointer; display: flex; height: 42px; justify-content: center; opacity: 0; pointer-events: none; position: fixed; right: 34px; transform: translateY(10px); transition: var(--transition); width: 42px; z-index: 1000; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top svg { fill: none; height: 18px; stroke: currentColor; stroke-width: 2; transform: rotate(-90deg); width: 18px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.from-left { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1120px) {
  :root { --header-height: 96px; }
  .brand__logo { height: 90px; width: 90px; }
  .nav__link, .dropdown-toggle { font-size: .77rem; padding-inline: 8px; }
  .nav__cta { margin-left: 8px; }
  .nav__cta .btn { padding-inline: 16px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-height: 90px; }
  .topbar__items a:nth-child(2) { display: none; }
  .topbar__note { display: none; }
  .brand { margin-right: 0; }
  .brand__logo { height: 84px; width: 84px; }
  .menu-toggle { display: flex; position: relative; }
  .nav { align-items: stretch; background: var(--white); box-shadow: var(--shadow); flex-direction: column; height: calc(100dvh - var(--header-height) - 38px); left: 0; margin: 0; opacity: 0; overflow-y: auto; padding: 19px 20px 32px; pointer-events: none; position: fixed; top: calc(var(--header-height) + 38px); transform: translateX(100%); transition: var(--transition); width: 100%; }
  .nav.open { opacity: 1; pointer-events: auto; transform: translateX(0); }
  .nav__list { align-items: stretch; flex-direction: column; }
  .nav__link, .dropdown-toggle { border-bottom: 1px solid var(--line); font-size: .92rem; justify-content: space-between; padding: 15px 4px; width: 100%; }
  .nav__link::after, .dropdown-toggle::after { display: none; }
  .dropdown { border: 0; border-radius: 0; box-shadow: none; display: none; min-width: 0; opacity: 1; padding: 6px 0 8px 12px; pointer-events: auto; position: static; transform: none; }
  .nav__item.open .dropdown { display: grid; }
  .nav__item:hover .dropdown:not(.mobile-open) { display: none; }
  .nav__item.open:hover .dropdown { display: grid; }
  .dropdown a { font-size: .82rem; padding: 10px; }
  .nav__cta { margin: 18px 0 0; }
  .nav__cta .btn { width: 100%; }
  .hero { min-height: 610px; }
  .hero--inner { min-height: 450px; }
  .hero::before { background: linear-gradient(90deg, rgba(0,28,19,.94), rgba(0,45,30,.6)); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .media-frame { min-height: 430px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section--compact { padding: 52px 0; }
  .topbar__inner { justify-content: center; }
  .topbar__items { gap: 13px; }
  .topbar__items a { font-size: .7rem; }
  .topbar__items a:first-child { display: none; }
  .brand__logo { height: 82px; width: 82px; }
  .menu-toggle { height: 44px; width: 44px; }
  .hero { min-height: 590px; }
  .hero--inner { min-height: 430px; }
  .hero__content { padding: 70px 0; }
  .hero__kicker { font-size: .67rem; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.55rem); }
  .hero--inner h1 { font-size: clamp(2.35rem, 10.8vw, 3.25rem); }
  .hero p { font-size: 1rem; }
  .btn-row { align-items: stretch; flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { border-bottom: 1px solid var(--line); border-right: 0; min-height: 90px; }
  .trust-item:last-child { border-bottom: 0; }
  .card-grid, .feature-grid, .process-grid, .industry-grid { grid-template-columns: 1fr; }
  .service-card__media { height: 235px; }
  .media-frame { min-height: 360px; }
  .list-check--two { grid-template-columns: 1fr; }
  .cta-band { border-radius: 22px; padding: 42px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-panel { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom__inner { align-items: flex-start; flex-direction: column; gap: 5px; }
  .whatsapp-float { bottom: 18px; height: 56px; right: 17px; width: 56px; }
  .whatsapp-float__label { display: none; }
  .back-top { bottom: 84px; right: 24px; }
}

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