:root {
  --color-background: #f8f9fa;
  --color-surface: #ffffff;
  --color-surface-muted: #f3f4f5;
  --color-border: #c5c6cf;
  --color-text: #191c1d;
  --color-muted: #44474e;
  --color-navy: #031635;
  --color-navy-soft: #1a2b4b;
  --color-green: #1b4332;
  --color-orange: #ff8c00;
  --color-orange-dark: #d86f00;
  --shadow-card: 0 22px 70px rgba(3, 22, 53, 0.11);
  --shadow-varsity: 7px 7px 0 rgba(3, 22, 53, 0.95);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --space-section: clamp(72px, 9vw, 132px);
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-slow: 560ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  background-color: var(--color-background);
  background-image:
    linear-gradient(rgba(197, 198, 207, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 198, 207, 0.32) 1px, transparent 1px);
  background-size: 32px 32px;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 140, 0, 0.45);
  outline-offset: 4px;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
  font-weight: 900;
  text-transform: uppercase;
  max-width: 780px;
}

h1 span {
  color: var(--color-orange);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  font-weight: 850;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
}

strong {
  color: inherit;
  font-weight: 800;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(197, 198, 207, 0.7);
  background: rgba(248, 249, 250, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.brand {
  color: var(--color-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: min(100%, 206px);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: contents;
}

.primary-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--color-navy);
  font-size: 0.91rem;
  font-weight: 800;
  white-space: nowrap;
}

.primary-nav a:not(.nav-cta),
.footer-links a,
.image-card a,
.gallery-card a,
.technique-card a,
.reference-card a,
.model-card a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color var(--motion-fast) ease, text-decoration-color var(--motion-fast) ease;
}

.primary-nav a:not(.nav-cta):hover,
.footer-links a:hover,
.image-card a:hover,
.gallery-card a:hover,
.technique-card a:hover,
.reference-card a:hover,
.model-card a:hover {
  color: var(--color-orange);
  text-decoration-color: currentColor;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition:
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out),
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
  min-height: 64px;
  border: 2px solid var(--color-navy);
  border-radius: 4px;
  background: var(--color-orange);
  color: #fff;
  gap: 12px;
  padding: 16px 30px;
  font-size: 14px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--color-navy);
}

.nav-cta .material-symbols-outlined {
  font-size: 22px;
}

.button {
  border: 2px solid var(--color-navy);
  padding: 15px 24px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 5px 5px 0 var(--color-navy);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--color-orange-dark);
}

.button-secondary {
  background: var(--color-surface);
  color: var(--color-navy);
}

.button > .material-symbols-outlined,
.nav-cta > .material-symbols-outlined,
.image-card a .material-symbols-outlined,
.gallery-card a .material-symbols-outlined,
.technique-card a .material-symbols-outlined {
  transition: transform var(--motion-fast) var(--ease-out);
}

.button:hover > .material-symbols-outlined,
.nav-cta:hover > .material-symbols-outlined,
.image-card a:hover .material-symbols-outlined,
.gallery-card a:hover .material-symbols-outlined,
.technique-card a:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-navy);
  border-radius: 999px;
  background: var(--color-surface);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.section {
  padding-block: var(--space-section);
}

.section-muted {
  background: rgba(243, 244, 245, 0.74);
}

.section-dark,
.section-dark-alt {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--color-navy);
  background-size: 28px 28px;
}

.section-dark-alt {
  background-color: #121d3d;
}

.section-heading {
  width: min(100%, 790px);
  margin: 0 auto clamp(34px, 6vw, 72px);
  text-align: center;
}

.section-heading p {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section-heading-invert h2,
.section-heading-invert h3 {
  color: #fff;
}

.section-heading-invert p {
  color: rgba(255, 255, 255, 0.72);
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 64px);
}

.hero {
  min-height: calc(100vh - 92px);
  overflow: hidden;
  padding-block: 48px 80px;
}

.hero-grid {
  display: grid;
  width: min(100%, 1280px);
  min-height: calc(100vh - 160px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  position: relative;
  padding-inline: 48px;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding-top: 0;
}

.hero-copy h1 {
  font-size: clamp(3rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 560px;
}

.hero-copy h1 span {
  display: inline-block;
  margin-top: 8px;
}

.hero-corner {
  position: absolute;
  top: -40px;
  left: -24px;
  width: 52px;
  height: 52px;
  border-top: 2px solid #cfd3db;
  border-left: 2px solid #cfd3db;
}

.lead {
  max-width: 576px;
  border-left: 2px solid var(--color-orange);
  padding-left: 24px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-actions .button {
  min-height: 64px;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero-actions .button-primary {
  min-width: 184px;
  justify-content: flex-start;
  box-shadow: 4px 4px 0 var(--color-navy);
}

.hero-actions .button-primary::after {
  content: "→";
  margin-left: 14px;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-actions .button-secondary {
  min-width: 220px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
  padding-top: 32px;
  border-top: 2px solid #d8dce4;
}

.hero-trust p {
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(50% - 17px);
  color: var(--color-navy-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-trust span {
  color: var(--color-orange);
  font-size: 22px;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 512px);
  border: 4px solid var(--color-navy);
  border-radius: 0;
  background: #f4f5f6;
  box-shadow: 6px 6px 0 #1a2b4b;
  padding: 8px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid rgba(3, 22, 53, 0.2);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 234px;
  border: 2px solid var(--color-navy);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 4px 4px 0 var(--color-navy);
  padding: 16px;
  color: var(--color-navy-soft);
  text-transform: uppercase;
  animation: hero-float 4s ease-in-out infinite;
}

.floating-card-icon {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(3, 22, 53, 0.2);
  background: var(--color-navy);
  color: #fff;
}

.floating-card-body {
  display: grid;
  line-height: 1.1;
  gap: 6px;
}

.floating-card-body strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-navy-soft);
}

.floating-card-body small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #4a5360;
  text-transform: uppercase;
}

.floating-card-right-mid .floating-card-icon {
  background: #beead1;
  color: #274e3d;
}

.floating-card-left-bottom .floating-card-icon {
  background: #462200;
  color: #dd7900;
}

.floating-card-right-bottom .floating-card-icon {
  background: #ffdad6;
  color: #93000a;
}

.floating-card-left-top {
  left: -72px;
  top: 8%;
}

.floating-card-right-mid {
  right: -72px;
  top: 40%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.floating-card-left-bottom {
  left: -56px;
  bottom: 15%;
  animation-duration: 4.5s;
  animation-delay: 0.5s;
}

.floating-card-right-bottom {
  right: -24px;
  bottom: 5%;
  animation-duration: 6s;
  animation-delay: 1.5s;
}

@keyframes hero-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

#surec {
  border-top: 1px solid rgba(197, 198, 207, 0.3);
  padding-block: 96px;
}

#surec .container {
  width: min(100%, 1280px);
  padding-inline: 48px;
}

#surec .section-heading {
  width: min(100%, 768px);
  margin-bottom: 80px;
}

#surec .section-heading h2 {
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

#surec .section-heading h2 span {
  color: var(--color-orange);
}

#surec .section-heading p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.step-grid,
.card-grid,
.decision-grid,
.reference-grid,
.campus-grid {
  display: grid;
  gap: 24px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  position: relative;
}

.step-card,
.decision-card,
.placement-panel article,
.trust-list article,
.faq-list details,
.image-card,
.technique-card {
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.step-card {
  position: relative;
  min-height: 304px;
  border-radius: 12px;
  background: var(--color-background);
  box-shadow: 5px 5px 0 var(--color-navy);
  padding: 32px;
  overflow: hidden;
  transition:
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.step-card:hover,
.step-card:focus-within {
  border-color: var(--color-orange);
  box-shadow: 8px 8px 0 var(--color-navy);
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 24px;
  color: rgba(255, 140, 0, 0.2);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  transition: color 240ms ease;
}

.step-card:hover .step-number {
  color: rgba(255, 140, 0, 0.4);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 4px;
  border: 1px solid rgba(3, 22, 53, 0.2);
  background: var(--color-navy-soft);
  color: #8293b8;
  font-size: 24px;
}

.step-card:nth-child(2) .step-icon {
  background: #beead1;
  color: #436b58;
}

.step-card:nth-child(3) .step-icon {
  background: #462200;
  color: #dd7900;
}

.step-card:nth-child(4) .step-icon {
  background: #ffdad6;
  color: #93000a;
}

.step-card h3,
.image-card h3,
.technique-card h3,
.decision-card h3,
.placement-panel h3,
.trust-list h3 {
  margin-bottom: 12px;
}

.step-card h3 {
  max-width: 190px;
  color: var(--color-navy-soft);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step-card p,
.image-card p,
.technique-card p,
.decision-card p,
.placement-panel p,
.trust-list p {
  color: var(--color-muted);
}

.step-card p {
  font-size: 16px;
  line-height: 1.5;
}

#surec .section-action {
  margin-top: 80px;
}

#surec .section-action .button {
  min-height: 72px;
  min-width: 392px;
  border-radius: 2px;
  padding: 20px 48px;
  font-size: 18px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--color-navy);
}

#surec .section-action .button span {
  margin-left: 12px;
  font-size: 24px;
}

#kimler-icin {
  background: transparent;
  padding-block: 96px;
  border-top: 1px solid rgba(197, 198, 207, 0.3);
}

#kimler-icin .container {
  width: min(100%, 1280px);
  padding-inline: 48px;
}

#kimler-icin .section-heading {
  width: min(100%, 768px);
  margin-bottom: 80px;
}

#kimler-icin .section-heading h2 {
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

#kimler-icin .section-heading h2 span {
  color: var(--color-orange);
}

#kimler-icin .section-heading p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.audience-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.audience-grid > * {
  flex: 1 1 320px;
  max-width: 360px;
}

.image-card,
.technique-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--color-navy);
  transition:
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.image-card img,
.technique-card img {
  width: 100%;
  height: 192px;
  aspect-ratio: auto;
  object-fit: cover;
  border-bottom: 2px solid var(--color-navy);
  transition: transform 500ms ease;
}

.image-card:hover,
.image-card:focus-within,
.technique-card:hover,
.technique-card:focus-within {
  border-color: var(--color-orange);
  box-shadow: 8px 8px 0 var(--color-navy);
  transform: translateY(-5px);
}

.image-card:hover img,
.image-card:focus-within img,
.technique-card:hover img,
.technique-card:focus-within img {
  transform: scale(1.05);
}

.image-card div,
.technique-card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 32px;
}

.image-card h3 {
  color: var(--color-navy-soft);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.image-card p {
  flex-grow: 1;
  margin-top: 18px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.image-card a,
.technique-card a,
.reference-card a,
.model-card a,
.gallery-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: gap 200ms ease;
}

.image-card a {
  margin-top: auto;
}

.image-card a span {
  margin-left: 4px;
  font-size: 18px;
}

#modeller {
  padding-block: 96px;
  background: linear-gradient(180deg, #0a1128 0%, #0d1733 52%, #121d3d 100%);
}

#modeller .container,
#tasarim-galerisi .container {
  width: min(100%, 1280px);
  padding-inline: 24px;
}

#modeller .section-heading,
#tasarim-galerisi .section-heading {
  width: min(100%, 768px);
  margin-bottom: 64px;
}

#modeller .section-heading h2,
#tasarim-galerisi .section-heading h2 {
  color: #fff;
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

#modeller .section-heading p,
#tasarim-galerisi .section-heading p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.model-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.model-grid > * {
  flex: 1 1 320px;
  max-width: 360px;
  width: 100%;
}

.model-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition:
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.model-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 700ms ease;
}

.model-card:hover,
.model-card:focus-within {
  border-color: rgba(255, 140, 0, 0.65);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.model-card:hover img,
.model-card:focus-within img {
  transform: scale(1.05);
}

.model-card div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(0deg, rgba(26, 43, 75, 0.98) 0%, rgba(26, 43, 75, 0.42) 44%, rgba(26, 43, 75, 0) 100%);
}

.model-card h3,
.gallery-card h3,
.reference-card h3 {
  color: #fff;
}

.model-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.model-card p {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.model-tags {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0 !important;
  background: transparent !important;
}

.model-tags span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.model-card a,
.gallery-card a,
.reference-card a {
  color: var(--color-orange);
}

.model-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 220ms ease, border-color 220ms ease;
}

.model-card a:hover {
  border-color: rgba(255, 140, 0, 0.5);
  background: rgba(255, 140, 0, 0.38);
}

.color-note {
  width: min(100%, 768px);
  margin: 64px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

#tasarim-galerisi {
  padding-block: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #121d3d;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.gallery-card:hover,
.gallery-card:focus-within {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  height: 256px;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.05);
}

.gallery-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-tags span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(26, 43, 75, 0.8);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card h3,
.gallery-card p,
.gallery-card a {
  margin-inline: 32px;
}

.gallery-card h3 {
  margin-top: 32px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-card p {
  flex: 1;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.gallery-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.gallery-card a span {
  margin-left: 8px;
  font-size: 20px;
}

#baski-nakis {
  padding-block: 96px;
  border-top: 1px solid rgba(197, 198, 207, 0.3);
  background: transparent;
}

#baski-nakis .container {
  width: min(100%, 1280px);
  padding-inline: 48px;
}

#baski-nakis .section-heading {
  width: min(100%, 768px);
  margin-bottom: 64px;
}

#baski-nakis .section-heading h2 {
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

#baski-nakis .section-heading p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.technique-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.technique-card {
  align-items: flex-start;
  border-radius: 0;
  padding: 32px;
}

.technique-card img {
  width: calc(100% + 64px);
  height: auto;
  aspect-ratio: 3 / 2;
  margin: -32px -32px 24px;
  object-fit: cover;
  border-bottom: 2px solid var(--color-navy);
}

.technique-card h3 {
  margin-bottom: 16px;
  color: var(--color-navy-soft);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.technique-card p {
  flex-grow: 1;
  margin-bottom: 32px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.technique-card a {
  display: inline-flex;
  align-items: center;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.technique-card a span {
  margin-left: 8px;
  font-size: 20px;
}

.technique-card-featured {
  border-color: var(--color-navy);
  background: var(--color-navy-soft);
  color: #fff;
}

.technique-card-featured h3,
.technique-card-featured p {
  color: #fff;
}

.technique-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.decision-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.decision-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  padding: 9px 24px;
  color: var(--color-navy-soft);
  box-shadow: none;
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.decision-card:hover {
  border-color: rgba(255, 140, 0, 0.65);
  box-shadow: 0 10px 24px rgba(3, 22, 53, 0.1);
  transform: translateY(-3px);
}

.decision-card span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-navy);
}

.decision-card-orange span {
  background: var(--color-orange);
}

.decision-card-navy span {
  background: var(--color-navy-soft);
}

.decision-card p {
  color: var(--color-navy-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.decision-card-cta {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 140, 0, 0.22);
}

.decision-card-cta p {
  color: #fff;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

#uygulama-alanlari {
  padding-block: 96px;
  border-top: 1px solid rgba(197, 198, 207, 0.3);
  background: transparent;
}

#uygulama-alanlari .container {
  width: min(100%, 1280px);
  padding-inline: 48px;
}

#uygulama-alanlari .section-heading {
  width: min(100%, 768px);
  margin-bottom: 64px;
}

.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

#uygulama-alanlari .section-heading h2 {
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

#uygulama-alanlari .section-heading p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.placement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.placement-visual {
  position: relative;
  border: 2px solid var(--color-navy);
  background: var(--color-surface);
  box-shadow: 5px 5px 0 var(--color-navy);
  padding: 16px;
}

.placement-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 860;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
  background-color: var(--color-surface-container);
}

.pin {
  position: absolute;
  border-radius: 4px;
  background: var(--color-navy);
  color: #fff;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.pin-left {
  left: 10%;
  top: 35%;
}

.pin-right {
  right: 7%;
  top: 35%;
}

.pin-sleeve {
  right: 3%;
  top: 59%;
}

.pin-dot {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-orange);
}

.pin-dot-left {
  left: 31%;
  top: 38%;
}

.pin-dot-right {
  right: 34%;
  top: 38%;
}

.pin-dot-sleeve {
  right: 12%;
  top: 58%;
}

.pin-line {
  position: absolute;
  height: 1px;
  width: 48px;
  background: rgba(26, 43, 75, 0.3);
}

.pin-line-left {
  left: 23%;
  top: 41%;
  transform: rotate(-45deg);
}

.pin-line-right {
  right: 27%;
  top: 41%;
  transform: rotate(45deg);
}

.placement-panel,
.trust-list {
  display: grid;
  gap: 16px;
}

.placement-panel article,
.trust-list article {
  padding: 24px;
}

.placement-panel article {
  border: 0;
  border-left: 4px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 18px rgba(3, 22, 53, 0.05);
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.placement-panel article:hover,
.placement-panel article:focus-within {
  border-left-color: var(--color-orange);
  box-shadow: 0 12px 24px rgba(3, 22, 53, 0.08);
  transform: translateX(4px);
}

.placement-panel .placement-card-active {
  border-left-color: var(--color-navy);
}

.placement-panel h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--color-navy-soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.placement-panel h3 span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(26, 43, 75, 0.18);
}

.placement-panel .placement-card-active h3 span {
  background: var(--color-orange);
}

.placement-panel p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.placement-action {
  margin-top: 80px;
}

.placement-action .button {
  min-height: 72px;
  min-width: 600px;
  border-radius: 2px;
  padding: 20px 48px;
  font-size: 18px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--color-navy);
}

.placement-action .button span {
  margin-left: 12px;
  font-size: 24px;
}

.align-left .button {
  margin-top: 28px;
}

#referanslar {
  padding-block: 96px;
  overflow: hidden;
  background: var(--color-navy-soft);
}

#referanslar .reference-container {
  width: 100%;
  max-width: none;
  padding-inline: 48px;
}

.reference-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.reference-heading > div:first-child {
  max-width: 680px;
}

.reference-heading h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reference-heading p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.reference-controls {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
}

.reference-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition:
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    opacity var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
}

.reference-control:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.reference-control:disabled {
  cursor: default;
  opacity: 0.35;
}

.reference-slider {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reference-slider::-webkit-scrollbar {
  display: none;
}

.reference-grid {
  display: flex;
  width: max-content;
  gap: 0;
}

.reference-card {
  position: relative;
  flex: 0 0 min(600px, 82vw);
  min-height: 375px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  scroll-snap-align: start;
  transition: background var(--motion-base) ease;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 43, 75, 0.92) 0%, rgba(26, 43, 75, 0.24) 52%, transparent 100%);
  pointer-events: none;
}

.reference-card img {
  width: 100%;
  height: 100%;
  min-height: 375px;
  object-fit: cover;
  transition: transform 1000ms ease;
}

.reference-card:hover,
.reference-card:focus-within {
  background: rgba(255, 255, 255, 0.1);
}

.reference-card:hover img,
.reference-card:focus-within img {
  transform: scale(1.05);
}

.reference-tags {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reference-tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
}

.reference-card > div:not(.reference-tags) {
  position: absolute;
  z-index: 2;
  left: 40px;
  right: 40px;
  bottom: 36px;
  padding: 0;
  background: transparent;
}

.reference-card h3 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reference-card p {
  max-width: 440px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.reference-card p:first-of-type,
.reference-card a {
  display: none;
}

#kampusten-kareler,
#kampusgiyim {
  position: relative;
  overflow: hidden;
  background-color: var(--color-navy-soft);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px, 32px 32px;
}

#kampusten-kareler {
  padding-block: 96px;
}

#kampusten-kareler .container,
#kampusgiyim .container {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  padding-inline: 48px;
}

#kampusten-kareler .section-heading {
  width: min(100%, 780px);
  margin-bottom: 64px;
}

#kampusten-kareler .section-heading h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

#kampusgiyim .section-heading h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

#kampusten-kareler .section-heading p,
#kampusgiyim .section-heading p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.campus-grid {
  display: block;
  column-count: 3;
  column-gap: 32px;
  margin-bottom: 72px;
}

.campus-grid article {
  display: flex;
  width: 100%;
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 32px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 12px 12px 24px;
  backdrop-filter: blur(8px);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background 260ms ease;
}

.campus-grid article:hover,
.campus-grid article:focus-within {
  border-color: rgba(255, 140, 0, 0.76);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px);
}

.campus-image {
  overflow: hidden;
  border-radius: 4px;
}

.campus-carousel-wrapper {
  position: relative;
  width: 100%;
}
.campus-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}
.campus-carousel-wrapper:hover .campus-carousel-btn {
  opacity: 1;
}
.campus-carousel-btn:disabled {
  display: none;
}
.campus-carousel-btn.prev-btn { left: 8px; }
.campus-carousel-btn.next-btn { right: 8px; }

.campus-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 560ms ease;
}

.campus-grid article:hover img,
.campus-grid article:focus-within img {
  transform: scale(1.055);
}

.campus-grid p {
  margin: 4px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.campus-grid .campus-handle {
  margin-top: 14px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

#kampusten-kareler .section-action .button {
  min-width: min(100%, 840px);
  min-height: 68px;
  border-radius: 0;
  font-size: 18px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

#kampusten-kareler .section-action .button span,
.trust-footer .button span {
  margin-left: 12px;
  font-size: 22px;
}

#kampusgiyim {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 64px;
}

.trust-container {
  display: block;
}

.trust-heading {
  width: min(100%, 900px);
  margin: 0 0 48px;
  text-align: left;
}

.trust-heading .section-kicker {
  margin-bottom: 20px;
}

.trust-heading h2 {
  max-width: 920px;
}

.trust-heading p {
  max-width: 680px;
  margin-top: 24px;
}

.trust-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.trust-list article {
  min-height: 196px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background 260ms ease;
}

.trust-list article:hover,
.trust-list article:focus-within {
  border-color: rgba(255, 140, 0, 0.76);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px);
}

.trust-list .material-symbols-outlined {
  margin-bottom: 20px;
  color: var(--color-orange);
  font-size: 30px;
  line-height: 1;
}

.trust-list h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-list p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.trust-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}

.trust-footer p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2.4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.trust-footer .button {
  min-width: 320px;
  min-height: 58px;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.quote-section {
  padding-block: 96px;
  background-color: var(--color-background);
  background-image:
    linear-gradient(rgba(197, 198, 207, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 198, 207, 0.32) 1px, transparent 1px);
  background-size: 32px 32px;
}

.quote-section .container {
  width: min(100%, 1280px);
  padding-inline: 48px;
}

.quote-section .section-heading {
  width: min(100%, 780px);
  margin-bottom: 64px;
}

.quote-section .section-heading h2,
#sss .section-heading h2 {
  color: var(--color-navy-soft);
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-section .section-heading p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.quote-form {
  border: 2px solid var(--color-navy);
  background: #fff;
  box-shadow: 5px 5px 0 var(--color-navy);
  padding: clamp(28px, 4vw, 48px);
}

.quote-form fieldset {
  margin: 0 0 42px;
  border: 0;
  padding: 0;
}

.quote-form legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-bottom: 2px solid var(--color-navy);
  padding-bottom: 10px;
  color: var(--color-navy-soft);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-form legend span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid #c5c6cf;
  border-radius: 2px;
  background: #fff;
  padding: 13px 14px;
  color: var(--color-text);
  font: inherit;
}

.quote-form input,
.quote-form select {
  min-height: 46px;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--color-orange);
  outline: 2px solid rgba(255, 140, 0, 0.16);
  outline-offset: 0;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
  font-size: 14px;
  line-height: 1.5;
  text-transform: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.choice-group > span,
.choice-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #c5c6cf;
  border-radius: 999px;
  background: #fff;
  padding: 6px 13px;
  color: var(--color-navy-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.form-choice-block {
  margin-top: 24px;
}

.form-grid-spaced {
  gap: 0 28px;
}

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

.form-label,
.fieldset-note {
  color: var(--color-muted);
}

.form-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.fieldset-note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.choice-chip {
  display: inline-flex;
  cursor: pointer;
}

.choice-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.choice-chip span {
  transition:
    border-color var(--motion-fast) ease,
    background var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
}

.choice-chip:hover span,
.choice-chip input:focus-visible + span {
  border-color: var(--color-orange);
  transform: translateY(-1px);
}

.choice-chip input:checked + span {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: #fff;
}

.upload-note {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 24px;
  border: 2px dashed var(--color-border);
  border-radius: 2px;
  background: #fff;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.upload-note:hover,
.upload-note:focus-within {
  border-color: var(--color-orange);
  background: rgba(255, 140, 0, 0.04);
}

.upload-note input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-note .material-symbols-outlined {
  color: var(--color-orange);
  font-size: 32px;
}

.upload-note strong,
.upload-note small {
  color: var(--color-muted);
  line-height: 1.5;
}

.upload-note strong {
  color: var(--color-navy);
  font-size: 13px;
}

.upload-note small {
  font-size: 12px;
}

.upload-action {
  margin-top: 4px;
  border-bottom: 1px solid var(--color-navy);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 900;
}

.quote-form .button {
  display: flex;
  width: min(100%, 420px);
  min-height: 64px;
  margin: 30px auto 0;
  border-radius: 2px;
  font-size: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--color-navy);
}

.quote-form .button .material-symbols-outlined {
  margin-left: 12px;
  font-size: 20px;
}

.form-trust {
  margin-top: 18px;
  color: var(--color-muted);
  text-align: center;
  font-size: 11px;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.form-status.is-error {
  color: #9c1c26;
}

.form-status.is-pending {
  color: var(--color-navy-soft);
}

.form-status.is-success {
  color: #166b3b;
}

.quote-aside {
  display: grid;
  gap: 32px;
}

.quote-aside article {
  border: 2px solid var(--color-navy);
  background: #fff;
  padding: 32px;
  transition:
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.quote-aside article:hover,
.quote-aside article:focus-within {
  border-color: var(--color-orange);
  box-shadow: 5px 5px 0 var(--color-navy);
  transform: translateY(-4px);
}

.quote-aside article:first-child {
  border-color: var(--color-navy-soft);
  background: var(--color-navy-soft);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 5px 5px 0 var(--color-navy);
}

.quote-aside article:first-child > .material-symbols-outlined {
  margin-bottom: 28px;
  color: var(--color-orange);
  font-size: 28px;
}

.quote-aside h3 {
  margin-bottom: 18px;
  color: var(--color-navy-soft);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.45;
  text-transform: uppercase;
}

.quote-aside article:first-child h3 {
  color: #fff;
}

.quote-aside article:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-aside p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.quote-aside ul {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.quote-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-aside li .material-symbols-outlined {
  color: var(--color-orange);
  font-size: 16px;
}

.quote-aside h4 {
  margin-top: 18px;
  margin-bottom: 4px;
  color: var(--color-navy-soft);
  font-size: 13px;
  font-weight: 900;
}

#sss {
  padding-block: 96px;
  border-top: 1px solid rgba(197, 198, 207, 0.3);
  background: var(--color-surface-muted);
}

#sss .narrow {
  width: min(100% - 48px, 820px);
}

#sss .section-heading {
  margin-bottom: 54px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
  transition: border-color var(--motion-fast) ease;
}

.faq-list details:hover {
  border-color: var(--color-orange);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 26px 0;
  color: var(--color-navy-soft);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.4;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--color-orange);
  font-size: 24px;
  font-weight: 500;
  transition: transform var(--motion-fast) var(--ease-out);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 720px;
  padding: 0 0 26px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.faq-list details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero {
  min-height: calc(100vh - 96px);
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 104px);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.contact-hero-grid > * {
  min-width: 0;
}

.breadcrumb,
.contact-pill,
.contact-hero-actions,
.contact-trust-grid article,
.contact-float {
  display: flex;
  align-items: center;
}

.breadcrumb {
  gap: 8px;
  margin-bottom: 22px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  transition: color var(--motion-fast) ease;
}

.breadcrumb a:hover {
  color: var(--color-orange);
}

.breadcrumb .material-symbols-outlined {
  font-size: 17px;
}

.breadcrumb span:last-child {
  color: var(--color-navy);
}

.contact-pill {
  width: fit-content;
  gap: 8px;
  margin-bottom: 22px;
  border: 2px solid var(--color-navy);
  background: #fff;
  box-shadow: 4px 4px 0 var(--color-navy);
  padding: 8px 15px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-pill .material-symbols-outlined {
  color: var(--color-orange);
  font-size: 20px;
}

.contact-hero h1 {
  max-width: 720px;
  color: var(--color-navy);
  font-size: clamp(2.55rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-hero h1 span {
  color: var(--color-orange);
}

.contact-hero-copy > p:not(.contact-pill) {
  max-width: 620px;
  margin-top: 26px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  line-height: 1.7;
}

.contact-hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.contact-hero-actions .button {
  min-width: 208px;
  min-height: 64px;
  border-radius: 2px;
  box-shadow: 5px 5px 0 var(--color-navy);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.whatsapp-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-whatsapp,
.whatsapp-icon {
  color: #25d366;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.contact-trust-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 16px;
  border: 2px solid var(--color-navy);
  background: #fff;
  box-shadow: 4px 4px 0 var(--color-navy);
  padding: 16px;
  transition:
    border-color var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out);
}

.contact-trust-grid article:hover {
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

.contact-trust-grid .material-symbols-outlined {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  color: var(--color-orange);
}

.contact-trust-grid h2 {
  align-self: end;
  color: var(--color-navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-trust-grid p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-visual {
  position: relative;
  min-height: 660px;
}

.contact-visual::before {
  position: absolute;
  inset: 24px 14px;
  border-radius: 40px;
  background: rgba(25, 48, 86, 0.08);
  content: "";
  transform: rotate(-3deg) scale(1.035);
}

.contact-visual-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: 660px;
  margin-inline: auto;
  border: 2px solid var(--color-navy);
  border-radius: 34px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--color-navy);
  overflow: hidden;
}

.contact-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.contact-visual:hover img {
  transform: scale(1.045);
}

.contact-float {
  position: absolute;
  z-index: 2;
  gap: 12px;
  border: 2px solid var(--color-navy);
  background: #fff;
  box-shadow: 4px 4px 0 var(--color-navy);
  padding: 13px 16px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
  animation: contact-float 4.6s ease-in-out infinite;
}

.contact-float .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  font-size: 18px;
}

.float-upload {
  top: 54px;
  left: -22px;
}

.float-quantity {
  top: 150px;
  right: -16px;
  animation-delay: -1.6s;
}

.float-date {
  bottom: 190px;
  left: -40px;
  animation-delay: -2.5s;
}

.contact-float-strong {
  right: -20px;
  bottom: 54px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 14px;
  min-width: 216px;
  padding: 17px;
  animation-delay: -0.8s;
}

.contact-float-strong .material-symbols-outlined {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border: 0;
  background: var(--color-orange);
  color: #fff;
  font-size: 28px;
}

.contact-float-strong strong,
.contact-float-strong small {
  align-self: end;
}

.contact-float-strong small {
  align-self: start;
  color: var(--color-muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes contact-float {
  50% {
    transform: translateY(-9px);
  }
}

.contact-quote .section-heading {
  margin-bottom: 48px;
}

.contact-help article:first-child {
  background: rgba(255, 255, 255, 0.64);
  color: var(--color-muted);
}

.contact-help article:first-child h3,
.contact-help article:first-child p {
  color: var(--color-navy-soft);
}

.contact-help-notes {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-help-notes section {
  border: 2px solid var(--color-navy);
  background: #fff;
  box-shadow: 4px 4px 0 var(--color-navy);
  padding: 18px;
}

.contact-help-notes h4 {
  margin: 0 0 5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-help .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: #207a43;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.contact-process {
  border-top: 1px solid rgba(197, 198, 207, 0.45);
}

.contact-process .section-heading h2,
.contact-channels .section-heading h2,
.contact-faq .section-heading h2 {
  color: var(--color-navy);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-channel-grid {
  display: grid;
  gap: 28px;
}

.contact-process-grid {
  margin-top: 48px;
}

.contact-channel-grid article:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
}

.contact-channel-grid p {
  position: relative;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-channels {
  border-top: 1px solid rgba(197, 198, 207, 0.45);
  background: var(--color-surface-muted);
}

.contact-channels .section-heading p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.contact-channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 334px;
  border: 2px solid var(--color-navy);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 140, 0, 0.08), transparent 38%),
    #fff;
  box-shadow: 6px 6px 0 var(--color-navy);
  padding: 42px 30px 30px;
  text-align: center;
  overflow: hidden;
  transition:
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.contact-channel-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--color-orange);
  content: "";
}

.contact-channel-grid article:hover {
  box-shadow: 9px 9px 0 var(--color-navy);
}

.contact-channel-grid article > .material-symbols-outlined,
.contact-channel-grid .channel-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(25, 48, 86, 0.09);
  color: var(--color-navy);
  font-size: 34px;
}

.contact-channel-grid .channel-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.contact-channel-grid .channel-whatsapp .whatsapp-icon {
  width: 38px;
  height: 38px;
}

.contact-channel-grid .channel-camera {
  background: rgba(214, 57, 130, 0.12);
  color: #d63982;
}

.contact-channel-grid .button {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--color-navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-channel-grid .button .whatsapp-icon {
  color: currentColor;
  margin-right: 9px;
}

.contact-faq {
  border-top: 1px solid rgba(197, 198, 207, 0.45);
}

.contact-faq .narrow {
  width: min(100% - 48px, 820px);
}

.detail-page .section-heading {
  margin-bottom: clamp(34px, 5vw, 68px);
}

.detail-page .section-heading p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--color-muted);
}

.detail-hero {
  border-bottom: 4px solid var(--color-orange);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #061126, var(--color-navy-soft));
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: min(74vh, 880px);
  padding-block: clamp(54px, 8vw, 108px);
}

.detail-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.34);
}

.detail-hero-media img {
  width: 100%;
  min-height: clamp(430px, 50vw, 700px);
  object-fit: cover;
}

.detail-hero-content {
  display: grid;
  justify-items: start;
  gap: 24px;
  color: #fff;
}

.detail-hero h1,
.detail-hero h1 span {
  color: #fff;
}

.detail-hero h1 span {
  color: var(--color-orange);
}

.detail-hero-content > p:not(.detail-pill) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.detail-breadcrumb a:hover {
  color: var(--color-orange);
}

.detail-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.detail-pill {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: var(--color-orange);
  padding: 8px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.detail-hero .button-secondary,
.detail-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.detail-summary {
  padding-block: clamp(34px, 5vw, 62px);
}

.detail-summary-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-varsity);
  padding: clamp(24px, 4vw, 48px);
}

.detail-summary-card > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.12);
  color: var(--color-orange);
  font-size: 38px;
}

.detail-summary-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.detail-summary-card p {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.detail-card-grid {
  display: grid;
  gap: 28px;
}

.detail-decision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-decision-grid article,
.related-pages-grid a {
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-varsity);
  transition:
    border-color var(--motion-fast) ease,
    transform var(--motion-base) var(--ease-out),
    box-shadow var(--motion-base) var(--ease-out);
}

.detail-decision-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 306px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
}

.detail-decision-grid article:hover,
.detail-scenario-grid article:hover,
.detail-gallery-grid article:hover,
.related-pages-grid a:hover {
  border-color: var(--color-orange);
  box-shadow: 10px 10px 0 var(--color-navy);
  transform: translateY(-5px);
}

.detail-decision-grid .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  border: 2px solid rgba(255, 140, 0, 0.2);
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.08);
  color: var(--color-orange);
  font-size: 36px;
}

.detail-decision-grid h3,
.detail-scenario-grid h3,
.detail-model-grid h3,
.detail-gallery-grid h3,
.related-pages-grid a {
  text-transform: uppercase;
}

.detail-decision-grid p,
.detail-scenario-grid p,
.detail-gallery-grid p {
  margin-top: 14px;
  color: var(--color-muted);
}

.detail-scenario-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.detail-scenario-grid article {
  grid-column: span 2;
  overflow: hidden;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-varsity);
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.detail-scenario-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.detail-scenario-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 2px solid var(--color-navy);
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-out);
}

.detail-scenario-grid article:hover img,
.detail-gallery-grid article:hover img,
.detail-model-grid article:hover img,
.detail-reference-track article:hover img {
  transform: scale(1.045);
}

.detail-scenario-grid div {
  min-height: 156px; /* Optimized from 218px to prevent visual empty padding gaps */
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center align text inside cards */
}

.detail-models,
.detail-references {
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 84, 139, 0.38), transparent 40%),
    linear-gradient(180deg, #08152f, #172746);
}

.section-heading-on-dark h2 {
  color: #fff;
}

.detail-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.detail-model-grid article {
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  transition:
    background var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out);
}

.detail-model-grid article:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.detail-model-grid img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-out);
}

.detail-model-grid div {
  position: relative;
  z-index: 1;
  margin-top: -74px;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(8, 21, 47, 0.95) 32%);
  text-align: center;
}

.detail-model-grid h3 {
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.detail-model-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.65;
  text-transform: uppercase;
}

.detail-application-layout,
.detail-checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.detail-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-varsity);
}

.detail-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table-wrap th,
.detail-table-wrap td {
  padding: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--color-border); /* Matches SSS and general borders */
  text-align: left;
  line-height: 1.5; /* Premium line height for typography tables */
  vertical-align: middle; /* Middle align text */
}

.detail-table-wrap th {
  color: var(--color-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.detail-table-wrap td:first-child {
  color: var(--color-navy);
  font-weight: 700;
}

.detail-table-wrap td:last-child {
  width: 200px;
  color: var(--color-orange-dark);
  font-weight: 900;
}

.detail-table-wrap tr:last-child td {
  border-bottom: 0;
}

.detail-application-photo {
  position: relative;
  margin: 0;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-varsity);
  overflow: hidden;
}

.detail-application-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.detail-reference-track {
  display: flex;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  scroll-snap-type: x mandatory;
}

.detail-reference-track article {
  position: relative;
  flex: 0 0 min(600px, 86vw);
  min-height: 430px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  scroll-snap-align: start;
}

.detail-reference-track article:last-child {
  border-right: 0;
}

.detail-reference-track img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.detail-reference-track article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 22, 53, 0), rgba(3, 22, 53, 0.96));
  content: "";
}

.detail-reference-track article > div {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  left: clamp(20px, 3vw, 40px);
  z-index: 1;
}

.detail-reference-track h3 {
  color: #fff;
}

.detail-reference-track strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.detail-reference-track p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px);
}

.detail-gallery-grid article {
  border-radius: var(--radius-md);
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-base) var(--ease-out),
    transform var(--motion-base) var(--ease-out);
}

.detail-gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 22px;
  border: 2px solid var(--color-navy); /* Bold outline aligned with homepage style guidelines */
  border-radius: var(--radius-md);
  object-fit: cover;
  transition:
    border-color var(--motion-base) ease,
    transform var(--motion-slow) var(--ease-out);
}

.detail-gallery-grid article:hover img {
  border-color: var(--color-orange);
}

.detail-checklist {
  background: rgba(255, 255, 255, 0.64);
}

.detail-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-checklist li {
  position: relative;
  min-height: 32px;
  padding-left: 40px;
  color: var(--color-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1.5px solid var(--color-navy);
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  content: "✓";
  box-shadow: 2px 2px 0 var(--color-navy); /* Varsity shadow style */
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.detail-checklist aside {
  display: grid;
  justify-items: start;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-varsity);
  padding: clamp(24px, 3vw, 40px);
}

.detail-checklist aside > .material-symbols-outlined {
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: 40px;
}

.detail-checklist aside p {
  color: var(--color-navy);
  font-weight: 700;
}

.detail-checklist aside .button {
  margin-top: 26px;
}

.detail-cta {
  background: var(--color-navy-soft);
}

.detail-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.28);
  padding: clamp(28px, 5vw, 68px);
}

.detail-cta h2,
.detail-cta p {
  color: #fff;
}

.detail-cta p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.detail-faq {
  background: #fff;
}

.detail-faq .narrow {
  margin-inline: auto;
}

.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.related-pages-grid a {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  min-height: 180px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--color-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.65vw, 1.38rem);
  font-weight: 800;
}

.related-pages-grid .material-symbols-outlined {
  color: var(--color-orange);
}

.site-footer {
  padding-block: 64px 36px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--color-navy);
}

.site-footer .container {
  width: min(100%, 1280px);
  padding-inline: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 1fr;
  gap: 72px;
  margin-bottom: 64px;
}

.footer-brand,
.site-footer h3 {
  color: #fff;
}

.footer-brand {
  display: inline-block;
  width: min(100%, 220px);
}

.site-footer p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
}

.footer-links h3 {
  margin-bottom: 10px;
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-cta {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 24px;
}

.footer-cta p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-cta .button {
  width: 100%;
  min-height: 58px;
  border: 2px solid #fff;
  border-radius: 3px;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.28);
  font-size: 14px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-cta .button span {
  margin-left: 10px;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}

.footer-bottom-left,
.footer-meta,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom p,
.footer-meta span {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-socials {
  gap: 14px;
}

.footer-socials a,
.footer-meta .material-symbols-outlined {
  color: rgba(255, 255, 255, 0.56);
}

.footer-socials a {
  transition: color 180ms ease;
}

.footer-socials a:hover {
  color: var(--color-orange);
}

.footer-socials .material-symbols-outlined {
  font-size: 20px;
}

.footer-meta {
  gap: 28px;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-meta .material-symbols-outlined {
  font-size: 16px;
}

/* ==========================================================================
   DETAIL PAGE SYNCHRONIZATION & REFIT (AUDIT REFIT)
   ========================================================================== */

/* 1. Button & CTA Synchronization (100% synced with homepage primary orange CTA) */
.detail-actions .button,
.detail-cta .button,
.detail-checklist aside .button {
  min-height: 64px;
  border-radius: 4px !important; /* Sharp corners to match homepage primary orange CTA */
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 900;
  box-sizing: border-box;
}

/* Primary orange CTA Button */
.detail-actions .button-primary,
.detail-cta .button-primary,
.detail-checklist aside .button-primary {
  background: var(--color-orange) !important;
  color: #fff !important;
  border: 2px solid var(--color-navy) !important;
  box-shadow: 4px 4px 0 var(--color-navy) !important;
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), background var(--motion-fast) ease !important;
}

.detail-actions .button-primary:hover,
.detail-cta .button-primary:hover,
.detail-checklist aside .button-primary:hover {
  background: var(--color-orange-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 4px 4px 0 var(--color-navy) !important;
}

/* Dark theme secondary buttons */
.detail-hero .button-secondary,
.detail-cta .button-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  box-shadow: none !important;
  transition: transform var(--motion-fast) var(--ease-out), background var(--motion-fast) ease !important;
}

.detail-hero .button-secondary:hover,
.detail-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* 2. Model Cards Standardization (border-radius: 0 to match homepage) */
.detail-model-grid article {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 !important; /* Sharp corners matching homepage .model-card */
  transition:
    background var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out),
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) var(--ease-out);
}

.detail-model-grid article:hover {
  border-color: rgba(255, 140, 0, 0.65) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24) !important;
  transform: translateY(-5px) !important;
}

/* 3. Reference Track Borders Standardization */
.detail-reference-track {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-reference-track article {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

/* 4. Standardize FAQ Details Borders and Active States for Detail Pages */
.detail-page .faq-list details {
  border: 0 !important;
  border-bottom: 1px solid var(--color-border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  transition: border-color var(--motion-fast) ease !important;
}

.detail-page .faq-list details:hover {
  border-bottom-color: var(--color-orange) !important;
}

/* 5. Standardize Tables on Detail Pages */
.detail-page .detail-table-wrap {
  border: 2px solid var(--color-navy) !important;
  border-radius: 4px !important; /* Sharp varsity look */
  background: #fff !important;
  box-shadow: 4px 4px 0 var(--color-navy) !important;
  overflow-x: auto !important;
  margin-bottom: 24px !important;
}

.detail-page .detail-table-wrap table {
  border-collapse: collapse !important;
  width: 100% !important;
}

.detail-page .detail-table-wrap th,
.detail-page .detail-table-wrap td {
  border-bottom: 1px solid var(--color-border) !important;
  padding: 18px 24px !important;
  vertical-align: middle !important;
  line-height: 1.6 !important;
}

.detail-page .detail-table-wrap tr:last-child td {
  border-bottom: 0 !important;
}

/* 6. Prevent Layout/Padding Shifts in Scenario Description Cards */
.detail-scenario-grid article {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.detail-scenario-grid article > div {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* 7. Premium Bullet Point Checklist Badges */
.detail-checklist-list li {
  position: relative !important;
  min-height: 32px !important;
  padding-left: 40px !important;
  color: var(--color-navy) !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.detail-checklist-list li::before {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
  width: 25px !important;
  height: 25px !important;
  border: 1.5px solid var(--color-navy) !important;
  border-radius: 50% !important;
  background: var(--color-orange) !important;
  color: #fff !important;
  content: "✓" !important;
  box-shadow: 2px 2px 0 var(--color-navy) !important; /* Varsity shadow style */
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* 8. Fix Detail Gallery Grid Hover Layout Jump & Border */
.detail-gallery-grid article {
  border: 2px solid transparent !important;
  border-radius: var(--radius-md) !important;
  padding: 12px !important;
  background: transparent !important;
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out) !important;
}

.detail-gallery-grid article:hover {
  border-color: var(--color-navy) !important;
  background: #fff !important;
  box-shadow: 6px 6px 0 var(--color-navy) !important;
  transform: translateY(-4px) !important;
}

.detail-gallery-grid img {
  border: 0 !important;
  border-radius: 4px !important;
  margin-bottom: 12px !important;
}

/* 9. Robust Responsive Grids (No overflows or column spans breaking layout) */
@media (max-width: 1024px) {
  .detail-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .detail-scenario-grid article,
  .detail-scenario-grid article:nth-child(4) {
    grid-column: span 1 !important;
  }
  .detail-decision-grid,
  .detail-model-grid,
  .detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .detail-scenario-grid,
  .detail-decision-grid,
  .detail-model-grid,
  .detail-gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .detail-scenario-grid article,
  .detail-scenario-grid article:nth-child(4) {
    grid-column: auto !important;
  }
}


@media (max-width: 1080px) {
  .step-grid,
  .decision-grid,
  .gallery-grid,
  .audience-grid,
  .technique-grid,
  .campus-grid,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .campus-grid {
    column-count: 2;
  }

  .hero-grid,
  .contact-hero-grid,
  .detail-hero-grid,
  .split-layout,
  .placement-layout,
  .quote-layout,
  .detail-application-layout,
  .detail-checklist-layout {
    grid-template-columns: 1fr;
  }

  .detail-decision-grid,
  .detail-model-grid,
  .detail-gallery-grid,
  .related-pages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
    min-width: 0;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .contact-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .image-card:nth-child(4),
  .image-card:nth-child(5) {
    grid-column-start: auto;
    margin-left: 0;
  }

  .campus-grid article:nth-child(even) {
    margin-top: 0;
  }

  .footer-bottom,
  .footer-bottom-left,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 82px;
  }

  .brand-logo {
    width: min(100%, 184px);
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 2px solid var(--color-navy);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-varsity);
    padding: 10px;
  }

  .primary-links {
    display: grid;
    gap: 0;
    width: 100%;
    white-space: normal;
  }

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

  .primary-nav a:not(.nav-cta) {
    padding: 14px;
  }

  .nav-cta {
    width: 100%;
    min-height: 58px;
    margin-top: 8px;
    padding: 14px 18px;
  }

  .model-grid,
  .contact-channel-grid,
  .reference-grid,
  .cta-inner,
  .footer-grid,
  .form-grid,
  .detail-cta-card {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    justify-items: start;
  }

  .reference-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .detail-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-scenario-grid article,
  .detail-scenario-grid article:nth-child(4) {
    grid-column: auto;
  }

  .campus-carousel-btn {
    opacity: 0.85; /* Always visible on mobile */
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

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

  #surec {
    padding-block: 72px;
  }

  #surec .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  #surec .section-action .button {
    min-width: 0;
    width: 100%;
  }

  #kimler-icin {
    padding-block: 72px;
  }

  #kimler-icin .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  #baski-nakis {
    padding-block: 72px;
  }

  #baski-nakis .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  #uygulama-alanlari {
    padding-block: 72px;
  }

  #uygulama-alanlari .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  .quote-section .container,
  .site-footer .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  .quote-section,
  .contact-hero,
  #sss {
    padding-block: 72px;
  }

  #sss .narrow {
    width: min(100% - 24px, 820px);
  }

  .quote-form,
  .quote-aside article {
    padding: 24px;
  }

  .quote-form legend {
    font-size: 15px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .placement-action .button {
    min-width: 0;
    width: 100%;
  }

  #referanslar .reference-container {
    padding-inline: 24px;
  }

  #kampusten-kareler,
  #kampusgiyim {
    padding-block: 72px;
  }

  #kampusten-kareler .container,
  #kampusgiyim .container {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  .reference-card {
    flex-basis: min(400px, 86vw);
    min-height: 300px;
  }

  .reference-card img {
    min-height: 300px;
  }

  .reference-card > div:not(.reference-tags) {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .hero-grid {
    width: min(100% - 24px, 1280px);
    padding-inline: 0;
  }

  .section {
    padding-block: 64px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-corner {
    display: none;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-hero-actions,
  .hero-actions .button,
  .contact-hero-actions .button,
  .section-action .button,
  .align-left .button,
  .cta-inner .button {
    width: 100%;
  }

  .floating-card {
    min-width: 100%;
  }

  .contact-visual {
    min-height: auto;
    padding-bottom: 18px;
  }

  .contact-visual-frame {
    height: min(136vw, 620px);
  }

  .contact-float {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .contact-float-strong {
    min-width: 0;
  }

  .step-grid,
  .decision-grid,
  .gallery-grid,
  .audience-grid,
  .technique-grid,
  .campus-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }
  .campus-grid {
    column-count: 1;
  }

  .contact-process-grid,
  .contact-channel-grid,
  .detail-decision-grid,
  .detail-model-grid,
  .detail-gallery-grid,
  .detail-scenario-grid,
  .related-pages-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-content {
    justify-items: start;
    text-align: left;
  }

  .detail-summary-card {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .detail-actions .button {
    width: 100%;
  }

  .detail-model-grid article {
    min-height: 0;
  }

  .detail-checklist ul {
    grid-template-columns: 1fr;
  }

  .detail-table-wrap td:last-child {
    width: auto;
  }

  .campus-grid {
    gap: 24px;
  }



  .trust-footer .button {
    width: 100%;
    min-width: 0;
  }

  .model-card,
  .model-card img {
    min-height: 560px;
  }

  .model-card div {
    padding: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Premium Table Status Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.pill-navy {
  background: var(--color-navy) !important;
  color: #fff !important;
}
.pill-orange {
  background: var(--color-orange) !important;
  color: #fff !important;
}
.pill-border-navy {
  border: 2px solid var(--color-navy) !important;
  color: var(--color-navy) !important;
  background: transparent !important;
}
.pill-border-muted {
  border: 2px solid var(--color-border) !important;
  color: var(--color-muted) !important;
  background: transparent !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.pin-back {
  left: 42%;
  bottom: 12%;
}

.pin-hood {
  left: 40%;
  top: 8%;
}

.pin-dot-back {
  left: 50%;
  bottom: 22%;
}

.pin-dot-hood {
  left: 50%;
  top: 15%;
}

.pin-line-back {
  left: 48%;
  bottom: 17%;
  transform: rotate(90deg);
}

.pin-line-hood {
  left: 48%;
  top: 11%;
  transform: rotate(90deg);
}

.quote-faq-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 16px;
  margin-right: -8px;
}

.quote-faq-scroll::-webkit-scrollbar {
  width: 6px;
}
.quote-faq-scroll::-webkit-scrollbar-track {
  background: rgba(3, 22, 53, 0.05);
  border-radius: 4px;
}
.quote-faq-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 0, 0.5);
  border-radius: 4px;
}

/* Placement Pin Visibility */
.hide-pins .pin,
.hide-pins .pin-dot,
.hide-pins .pin-line {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pin, .pin-dot, .pin-line {
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   INTERACTIVE CARDS (SYNC WITH QUOTE FORM)
   ========================================================================== */
.selectable-card {
  cursor: pointer;
  position: relative;
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.selectable-card.card-selected {
  border-color: var(--color-orange) !important;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2) !important;
  transform: translateY(-5px);
}

.selectable-card.card-selected::after {
  content: "check_circle";
  font-family: 'Material Symbols Outlined';
  font-size: 28px;
  color: var(--color-orange);
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-surface);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* For dark cards like #modeller, adjust tick background */
.section-dark .selectable-card.card-selected::after,
.section-dark-alt .selectable-card.card-selected::after,
.model-card.selectable-card.card-selected::after {
  background: var(--color-navy);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
