:root {
  --dark: #15171b;
  --dark-2: #242831;
  --panel: #ffffff;
  --paper: #f5f6f8;
  --text: #15171b;
  --muted: #68717e;
  --line: #e2e6ec;
  --red: #e10035;
  --blue: #0057ad;
  --blue-dark: #003b7c;
  --shadow: 0 24px 70px rgba(12, 18, 28, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 23, 27, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1540px, calc(100% - 28px));
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 auto;
  padding: 12px 0;
}

.brand img {
  width: clamp(150px, 13vw, 210px);
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius);
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.86;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.language-switch button {
  min-width: 42px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: #fff;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 25, 0.72), rgba(14, 18, 25, 0.24)),
    url("../assets/images/faistos-hero-banner.jpg") center/cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 23, 27, 0.05), rgba(21, 23, 27, 0.62)),
    linear-gradient(90deg, rgba(0, 87, 173, 0.52), rgba(225, 0, 53, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.light .eyebrow,
.hero .eyebrow,
.logistics-content .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-subtitle {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b90025);
  box-shadow: 0 18px 36px rgba(225, 0, 53, 0.3);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.section {
  padding: 96px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro p,
.cretan-copy p,
.tech-copy p,
.contact-copy p {
  color: var(--muted);
}

.section-intro.light h2,
.section-intro.light p,
.dark-section h3,
.logistics-content h2 {
  color: #fff;
}

.dark-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 87, 173, 0.32), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(225, 0, 53, 0.22), transparent 32%),
    var(--dark);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stat-card {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.08);
}

.stat-card .icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  border-radius: 0;
}

.stat-card:nth-child(1) .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23222930' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 43v33h56V43'/%3E%3Cpath d='M27 76V52h15v24M55 55h14v12H55z'/%3E%3Cpath d='M18 32h60l-6-14H24z'/%3E%3Cpath d='M18 44c4 5 9 5 12 0 4 5 9 5 12 0 4 5 9 5 12 0 4 5 9 5 12 0 4 5 9 5 12 0'/%3E%3C/g%3E%3Cpath fill='%23e10035' d='M18 32h12v12H18zM42 32h12v12H42zM66 32h12v12H66z'/%3E%3Cpath fill='%230057ad' d='M30 32h12v12H30zM54 32h12v12H54z'/%3E%3C/svg%3E");
}

.stat-card:nth-child(2) .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230057ad' d='M48 9l8 6 10-1 5 9 9 5-1 10 6 10-6 10 1 10-9 5-5 9-10-1-8 6-8-6-10 1-5-9-9-5 1-10-6-10 6-10-1-10 9-5 5-9 10 1z'/%3E%3Ccircle fill='white' cx='48' cy='48' r='25'/%3E%3Cpath d='M36 49l8 8 18-20' fill='none' stroke='%23e10035' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill='%23e10035' d='M31 72l-8 17 14-6 8 11 6-18M65 72l8 17-14-6-8 11-6-18'/%3E%3C/svg%3E");
}

.stat-card:nth-child(3) .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23222930' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 78V34l32-18 32 18v44'/%3E%3Cpath d='M30 78V50h36v28M38 50V34h20v16M38 62h20M38 70h20'/%3E%3C/g%3E%3Cpath fill='%23e10035' d='M66 62h12v10H66z'/%3E%3Cpath d='M78 72h8v6H67' fill='none' stroke='%23e10035' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle fill='%230057ad' cx='72' cy='80' r='4'/%3E%3Ccircle fill='%230057ad' cx='86' cy='80' r='4'/%3E%3C/svg%3E");
}

.stat-card:nth-child(4) .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23222930' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 20h8l8 42h34l8-30H35M40 62h34'/%3E%3C/g%3E%3Ccircle fill='%230057ad' cx='45' cy='76' r='6'/%3E%3Ccircle fill='%230057ad' cx='70' cy='76' r='6'/%3E%3Cpath d='M30 20h14' fill='none' stroke='%23e10035' stroke-width='6' stroke-linecap='round'/%3E%3Cpath fill='%23e10035' d='M28 16h16v8H28z'/%3E%3C/svg%3E");
}

.stat-card:nth-child(5) .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23222930' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='48' cy='27' r='11'/%3E%3Ccircle cx='25' cy='35' r='9'/%3E%3Ccircle cx='71' cy='35' r='9'/%3E%3Cpath d='M30 76V62c0-10 8-18 18-18s18 8 18 18v14M10 76V64c0-9 7-16 16-16h6M86 76V64c0-9-7-16-16-16h-6'/%3E%3C/g%3E%3Cpath fill='%23e10035' d='M44 50h8l-2 24h-4z'/%3E%3Cpath d='M18 80c20 7 40 7 60 0' fill='none' stroke='%230057ad' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.stat-card:nth-child(6) .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23222930' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 32h44v34H14zM58 44h16l10 12v10H58z'/%3E%3C/g%3E%3Cpath d='M22 42h20M18 52h24M26 62h16' fill='none' stroke='%23e10035' stroke-width='5' stroke-linecap='round'/%3E%3Ccircle fill='%230057ad' cx='32' cy='72' r='6'/%3E%3Ccircle fill='%230057ad' cx='72' cy='72' r='6'/%3E%3C/svg%3E");
}

.stat-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.service-image {
  height: 132px;
  background-size: cover;
  background-position: center;
}

.service-card span {
  display: inline-flex;
  margin: 18px 18px 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.service-card p {
  padding: 0 18px;
}

.service-card p {
  min-height: 88px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.img-commercial { background-image: url("../assets/images/faistos-commercial-support.jpg"); }
.img-it { background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=700&q=80"); }
.img-erp { background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=700&q=80"); }
.img-marketing { background-image: url("../assets/images/faistos-offline-marketing.jpg"); }
.img-social { background-image: url("https://images.unsplash.com/photo-1611162616305-c69b3fa7fbe0?auto=format&fit=crop&w=700&q=80"); }
.img-consulting { background-image: url("../assets/images/faistos-store-consulting.jpg"); }
.img-merch { background-image: url("../assets/images/faistos-super.jpg"); }
.img-training { background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=700&q=80"); }
.img-logistics { background-image: url("../assets/images/faistos-distribution.jpg"); }
.img-ordering { background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=80"); }

.cretan-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 23, 27, 0.78), rgba(21, 23, 27, 0.2)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=86") center/cover;
}

.cretan-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.cretan-copy h2,
.cretan-copy p {
  color: #fff;
}

.image-mosaic {
  position: relative;
  min-height: 560px;
}

.mosaic-img {
  position: absolute;
  width: 34%;
  min-height: 145px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.mosaic-img:nth-child(1) { left: 2%; top: 4%; transform: rotate(-5deg); }
.mosaic-img:nth-child(2) { left: 34%; top: 0; width: 28%; transform: rotate(4deg); }
.mosaic-img:nth-child(3) { right: 4%; top: 7%; width: 30%; transform: rotate(-3deg); }
.mosaic-img:nth-child(4) { left: 10%; top: 32%; width: 29%; transform: rotate(3deg); }
.mosaic-img:nth-child(5) { left: 43%; top: 27%; width: 24%; min-height: 128px; transform: rotate(-6deg); }
.mosaic-img:nth-child(6) { right: 1%; top: 35%; width: 31%; transform: rotate(5deg); }
.mosaic-img:nth-child(7) { left: 1%; bottom: 4%; width: 27%; transform: rotate(4deg); }
.mosaic-img:nth-child(8) { left: 30%; bottom: 0; width: 31%; transform: rotate(-3deg); }
.mosaic-img:nth-child(9) { right: 5%; bottom: 7%; width: 29%; transform: rotate(3deg); }
.mosaic-img:nth-child(10) { left: 60%; top: 57%; width: 22%; min-height: 116px; transform: rotate(-7deg); }

.img-oil { background-image: url("https://images.unsplash.com/photo-1474979266404-7eaacbcd87c5?auto=format&fit=crop&w=700&q=82"); }
.img-olives { background-image: url("https://images.unsplash.com/photo-1602431924373-972fc6000138?auto=format&fit=crop&w=700&q=82"); }
.img-cheese { background-image: url("https://images.unsplash.com/photo-1486297678162-eb2a19b0a32d?auto=format&fit=crop&w=700&q=82"); }
.img-grapes { background-image: url("https://images.unsplash.com/photo-1537640538966-79f369143f8f?auto=format&fit=crop&w=700&q=82"); }
.img-oregano { background-image: url("https://images.unsplash.com/photo-1515586000433-45406d8e6662?auto=format&fit=crop&w=700&q=82"); }
.img-yogurt { background-image: url("https://images.unsplash.com/photo-1488477181946-6428a0291777?auto=format&fit=crop&w=700&q=82"); }
.img-milk { background-image: url("../assets/images/cretan-bulk-goat-milk.jpg"); }
.img-oil-bottle { background-image: url("https://images.unsplash.com/photo-1474979266404-7eaacbcd87c5?auto=format&fit=crop&w=700&q=82"); }
.img-cheese-board { background-image: url("https://images.unsplash.com/photo-1452195100486-9cc805987862?auto=format&fit=crop&w=700&q=82"); }
.img-grape-close { background-image: url("https://images.unsplash.com/photo-1506806732259-39c2d0268443?auto=format&fit=crop&w=700&q=82"); }

.product-grid,
.product-showcase {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.product-showcase {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 87, 173, 0.12), rgba(21, 23, 27, 0.9)),
    linear-gradient(135deg, var(--blue), var(--red));
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.1);
}

.product-card span {
  margin-bottom: auto;
  font-weight: 900;
  font-size: 1.12rem;
}

.product-card h3 {
  margin-bottom: 8px;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.product-feature {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(12, 18, 28, 0.11);
}

.product-logo {
  height: 180px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #fff, #f1f5fa);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-logo img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.brand-logo-card img {
  width: 92%;
  max-height: 150px;
}

.product-feature strong {
  display: block;
  min-height: 1em;
  color: var(--blue-dark);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.product-feature h3 {
  min-height: 3.4em;
  margin: 18px 0 10px;
  color: var(--dark);
  font-size: 1.5rem;
}

.product-feature p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.tech-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 87, 173, 0.12), transparent 34%),
    #fff;
}

.tech-grid,
.tech-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.tech-detail-grid {
  align-items: start;
}

.tech-copy p + p {
  margin-top: 18px;
}

.tech-benefits {
  margin-top: 52px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.08);
}

.tech-benefits h3 {
  color: var(--blue-dark);
  font-size: 1.7rem;
}

.tech-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 26px;
}

.tech-benefit-grid span {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--dark);
  font-weight: 800;
}

.tech-benefit-grid span::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: var(--red);
  font-weight: 900;
}

.tech-benefits p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.tech-text-only {
  max-width: 980px;
}

.tech-text-only p {
  color: var(--muted);
}

.tech-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.tech-platform-card {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.08);
}

.tech-platform-card img {
  width: 100%;
  max-width: 260px;
  max-height: 130px;
  object-fit: contain;
}

.tech-benefit-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tech-benefit-list li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--dark);
  font-weight: 800;
}

.tech-benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: var(--red);
  font-weight: 900;
}

.network-intro {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.network-showcase {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.network-showcase img {
  width: 100%;
  object-fit: contain;
}

.logistics-section {
  position: relative;
  min-height: clamp(700px, 52vw, 940px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #f7f7f7;
}

.logistics-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 27, 0.76), rgba(21, 23, 27, 0.18), rgba(21, 23, 27, 0.02)),
    url("../assets/images/faistos-trucks.jpg") center/contain no-repeat;
}

.logistics-content {
  position: relative;
  z-index: 1;
}

.logistics-content h2 {
  max-width: 850px;
}

.logistics-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.logistics-statement {
  max-width: 900px !important;
  margin-top: 22px;
  padding: 24px 28px;
  color: #fff !important;
  background: rgba(0, 87, 173, 0.58);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  font-size: clamp(1.35rem, 2vw, 2rem) !important;
  font-weight: 900;
  line-height: 1.32;
}

.partner-section {
  background: var(--paper);
}

.partner-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.partner-login,
.contact-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner-login form,
.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--dark);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 87, 173, 0.16);
  border-color: var(--blue);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hub-grid span {
  min-height: 110px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-section {
  background: #fff;
}

.contact-form {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-details strong {
  color: var(--dark);
}

.contact-details a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
  font-weight: 900;
}

.contact-details a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.footer {
  padding: 44px 0;
  color: #fff;
  background: #0e1014;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer img {
  width: 210px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

.footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.footer-contact {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact strong {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 8px;
    font-size: 0.72rem;
  }

  .stat-grid,
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-shell {
    min-height: 74px;
  }

  .language-switch {
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 104px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .section {
    padding: 72px 0;
  }

  .stat-grid,
  .service-grid,
  .product-grid,
  .product-showcase,
  .tech-benefit-grid,
  .tech-platforms,
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cretan-grid,
  .tech-grid,
  .tech-detail-grid,
  .partner-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: start;
  }

  .image-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    min-height: auto;
  }

  .mosaic-img {
    position: relative;
    inset: auto !important;
    width: auto !important;
    min-height: 150px;
    transform: none !important;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 3rem;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .stat-grid,
  .service-grid,
  .product-grid,
  .product-showcase,
  .tech-benefit-grid,
  .tech-platforms,
  .hub-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .image-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic-img {
    min-height: 118px;
  }

  .contact-form .full {
    grid-column: auto;
  }
}
