.desktop-navigation .is-current::after {
  transform: scaleX(1);
}

.dropdown-menu .current-product {
  background: #eef5ea;
  color: var(--green-dark);
}

.page-breadcrumb {
  background: #f7f9f9;
  border-bottom: 1px solid var(--line);
}

.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #72808b;
  font-size: 13px;
  font-weight: 700;
}

.page-breadcrumb li:not(:last-child)::after {
  margin-left: 12px;
  color: #afbac1;
  content: "/";
}

.page-breadcrumb a:hover {
  color: var(--green-dark);
}

.page-eyebrow {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.8;
}

.text-link:hover {
  color: var(--green-dark);
}

.button-outline-dark {
  border: 1px solid rgba(11, 33, 50, 0.25);
  color: var(--ink);
}

.button-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* Ürün koleksiyonu */
.collection-hero {
  padding: 44px 0 88px;
  overflow: hidden;
  background: var(--white);
}

.collection-hero-frame {
  position: relative;
  overflow: hidden;
  background: #eef1ef;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(11, 33, 50, 0.1);
}

.collection-hero-frame > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.collection-hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 28%,
    rgba(255, 255, 255, 0.28) 53%,
    rgba(255, 255, 255, 0) 68%
  );
  content: "";
  pointer-events: none;
}

.collection-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(44px, 5vw, 82px);
  width: min(43%, 610px);
  transform: translateY(-53%);
}

.collection-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 5.3vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.collection-hero-copy h1 span {
  display: block;
  color: var(--green);
}

.collection-hero-copy > p:not(.page-eyebrow) {
  max-width: 540px;
  margin: 28px 0 34px;
  color: #50616d;
  font-size: 19px;
  line-height: 1.75;
}

.collection-hero-note {
  position: absolute;
  z-index: 1;
  bottom: 36px;
  left: clamp(44px, 5vw, 82px);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(208, 218, 220, 0.9);
  border-radius: 13px;
  backdrop-filter: blur(12px);
}

.collection-hero-note strong {
  color: var(--green-dark);
  font-size: 17px;
  white-space: nowrap;
}

.collection-hero-note span {
  padding-left: 18px;
  border-left: 1px solid #ccd6da;
  color: var(--text);
  font-size: 14px;
}

.collection-jump {
  padding: 34px 0;
  background: var(--navy);
  color: var(--white);
}

.collection-jump-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.collection-jump-grid > a {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  color: #d8e1e6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.collection-jump-grid > a:hover,
.collection-jump-grid > a:focus-visible {
  background: rgba(167, 216, 115, 0.1);
  border-color: rgba(167, 216, 115, 0.45);
  color: var(--white);
}

.collection-jump-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(167, 216, 115, 0.13);
  border-radius: 50%;
  color: var(--green-light);
}

.collection-jump-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.collection-section {
  padding: 120px 0 130px;
  background: #f4f7f8;
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 9vw, 140px);
  margin-bottom: 64px;
}

.collection-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.collection-heading > p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

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

.collection-card {
  min-width: 0;
  scroll-margin-top: 30px;
}

.collection-card-link {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #d8e1e4;
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(11, 33, 50, 0.06);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.collection-card-link:hover,
.collection-card-link:focus-visible {
  border-color: rgba(92, 138, 67, 0.48);
  box-shadow: 0 28px 65px rgba(11, 33, 50, 0.13);
  outline: none;
  transform: translateY(-7px);
}

.collection-card-media {
  position: relative;
  display: grid;
  height: 360px;
  padding: 20px;
  overflow: hidden;
  place-items: center;
  background: #edf1f0;
  border-bottom: 1px solid var(--line);
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  object-fit: contain;
  transition: transform 0.55s ease;
}

.collection-card-link:hover .collection-card-media img,
.collection-card-link:focus-visible .collection-card-media img {
  transform: scale(1.025);
}

.collection-card-badge {
  position: absolute;
  top: 34px;
  left: 34px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 225, 228, 0.9);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.collection-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 36px 36px;
}

.collection-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-card-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #edf5e8;
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 21px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.collection-card-link:hover .collection-card-arrow,
.collection-card-link:focus-visible .collection-card-arrow {
  background: var(--green);
  color: var(--white);
  transform: translate(3px, -3px);
}

.collection-card-body h2 {
  min-height: 70px;
  margin: 0 0 17px;
  font-size: clamp(27px, 2.25vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.collection-card-body > p {
  min-height: 84px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.collection-card-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  gap: 18px;
  margin-top: 27px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-card-detail span {
  color: #7b8992;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-card-detail strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.collection-card-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.collection-card-action > span {
  color: var(--green);
  transition: transform 0.2s ease;
}

.collection-card-link:hover .collection-card-action > span,
.collection-card-link:focus-visible .collection-card-action > span {
  transform: translateX(5px);
}

.collection-cta {
  padding: 105px 0;
  background: var(--navy);
  color: var(--white);
}

.collection-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.65fr);
  align-items: center;
  gap: clamp(70px, 10vw, 170px);
}

.collection-cta .page-eyebrow {
  color: var(--green-light);
}

.collection-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.collection-cta-inner > div:last-child > p {
  margin: 0 0 30px;
  color: #c4d0d7;
  font-size: 18px;
  line-height: 1.8;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading-row h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading-row > p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

/* Hakkımızda */
.about-hero {
  overflow: hidden;
  padding-top: 95px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 7vw, 120px);
}

.about-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 5.4vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.about-hero-copy h1 span {
  display: block;
  color: var(--green);
}

.about-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--text);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.7;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.about-hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 20px;
  background: #f2f5f3;
  border-radius: 34px;
}

.about-hero-visual::before {
  position: absolute;
  top: -48px;
  right: -60px;
  z-index: -1;
  width: 250px;
  height: 250px;
  background: #e6f0df;
  border-radius: 50%;
  content: "";
}

.about-hero-visual img {
  width: 100%;
  height: auto;
  background: var(--white);
  border-radius: 22px;
  object-fit: contain;
}

.about-hero-visual figcaption {
  position: absolute;
  right: 44px;
  bottom: 44px;
  display: grid;
  gap: 4px;
  max-width: 290px;
  padding: 22px 26px;
  background: rgba(3, 23, 39, 0.94);
  border-radius: 16px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-hero-visual figcaption strong {
  color: var(--green-light);
  font-size: 20px;
}

.about-hero-visual figcaption span {
  font-size: 14px;
  line-height: 1.55;
}

.about-statement {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

.about-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
}

.about-statement .page-eyebrow {
  color: var(--green-light);
}

.about-statement h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 4vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-statement-copy {
  display: grid;
  gap: 24px;
}

.about-statement-copy p {
  margin: 0;
  color: #c6d1d8;
  font-size: 18px;
  line-height: 1.9;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 330px;
  padding: 42px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  z-index: 1;
  background: #f3f8f0;
  transform: translateY(-6px);
}

.value-number {
  display: block;
  margin-bottom: 70px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.value-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.value-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.process-section {
  background: #f3f6f6;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(70px, 10vw, 170px);
}

.process-copy {
  position: sticky;
  top: 50px;
  align-self: start;
}

.process-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.process-copy > p:last-child {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #ccd6da;
}

.process-list li:last-child {
  border-bottom: 1px solid #ccd6da;
}

.process-list li > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.process-list p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.wide-cta {
  padding: 80px 0;
  background: #eaf4e3;
}

.wide-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.wide-cta h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

/* İletişim */
.contact-hero {
  background: #f7f9f9;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  align-items: start;
  gap: clamp(70px, 8vw, 130px);
}

.contact-intro h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 5vw, 76px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-intro h1 span {
  display: block;
  color: var(--green);
}

.contact-intro > p:not(.page-eyebrow) {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.75;
}

.contact-methods {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.contact-method {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:hover strong {
  color: var(--green-dark);
}

.contact-method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #e9f2e4;
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.contact-method-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-method small,
.contact-method strong {
  display: block;
}

.contact-method small {
  margin-bottom: 5px;
  color: #7a8790;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: clamp(17px, 1.4vw, 21px);
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.contact-form-panel {
  padding: clamp(34px, 4vw, 62px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(11, 33, 50, 0.09);
}

.contact-form-panel h2 {
  margin: 0;
  font-size: clamp(30px, 2.7vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.contact-form-panel > p:not(.page-eyebrow) {
  margin: 16px 0 0;
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d3dde1;
  background: #fbfcfc;
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(92, 138, 67, 0.12);
}

.form-submit {
  width: 100%;
  min-height: 60px;
  border: 0;
  cursor: pointer;
}

.location-section {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 30px;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 520px;
  padding: clamp(40px, 5vw, 80px);
  background: var(--navy);
  border-radius: 24px;
  color: var(--white);
}

.location-card .page-eyebrow {
  color: var(--green-light);
}

.location-card h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 3vw, 48px);
  letter-spacing: -0.04em;
}

.location-card address {
  margin-bottom: 32px;
  color: #cfdae0;
  font-size: 19px;
  font-style: normal;
  line-height: 1.8;
}

.location-card .text-link {
  color: var(--green-light);
}

.location-visual {
  min-width: 0;
  margin: 0;
  padding: 24px;
  background: #f1f4f3;
  border-radius: 24px;
}

.location-visual img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  background: var(--white);
  border-radius: 15px;
  object-fit: contain;
}

.contact-note {
  padding: 100px 0;
  background: #eaf4e3;
}

.contact-note-inner {
  max-width: 1020px;
  text-align: center;
}

.contact-note h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.contact-note p:last-child {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

/* Blog liste */
.editorial-hero {
  padding: 100px 0 110px;
  background: var(--navy);
  color: var(--white);
}

.editorial-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
}

.editorial-hero .page-eyebrow {
  color: var(--green-light);
}

.editorial-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 5.4vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.editorial-hero h1 span {
  color: var(--green-light);
}

.editorial-hero-grid > p {
  margin: 0;
  color: #c9d4da;
  font-size: 19px;
  line-height: 1.8;
}

.blog-index {
  background: #f7f9f9;
}

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

.blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(11, 33, 50, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 24px 55px rgba(11, 33, 50, 0.11);
  transform: translateY(-7px);
}

.blog-card-image {
  display: grid;
  height: 280px;
  padding: 14px;
  place-items: center;
  background: #eef2f1;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 12px;
  object-fit: contain;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.blog-card h2 a:hover {
  color: var(--green-dark);
}

.blog-card p {
  margin: 18px 0 26px;
  color: var(--text);
  line-height: 1.7;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--ink);
  font-weight: 800;
}

.blog-card-link span {
  color: var(--green);
  transition: transform 0.2s ease;
}

.blog-card-link:hover span {
  transform: translateX(5px);
}

/* Blog detay */
.article-header {
  padding: 90px 0 75px;
  background: #f5f8f7;
  text-align: center;
}

.article-header-inner {
  max-width: 1080px;
}

.article-header h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.article-deck {
  max-width: 840px;
  margin: 28px auto 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 30px;
  color: #73808a;
  font-size: 13px;
  font-weight: 700;
}

.article-meta > *:not(:last-child)::after {
  margin-left: 28px;
  color: #bbc4c9;
  content: "•";
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(50px, 6vw, 95px);
  padding-top: 70px;
  padding-bottom: 120px;
}

.article-main {
  min-width: 0;
}

.article-cover {
  display: grid;
  min-height: 460px;
  margin: 0 0 70px;
  padding: 24px;
  place-items: center;
  background: #eef2f1;
  border-radius: 24px;
}

.article-cover img {
  width: 100%;
  height: auto;
  max-height: 680px;
  background: var(--white);
  border-radius: 14px;
  object-fit: contain;
}

.article-body {
  max-width: 880px;
  margin: 0 auto;
}

.article-intro {
  margin: 0 0 58px;
  padding-left: 28px;
  border-left: 4px solid var(--green);
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.65;
}

.article-body section {
  margin-top: 54px;
}

.article-body h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 2.5vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.article-body section > p {
  margin: 0 0 18px;
  color: #445663;
  font-size: 18px;
  line-height: 1.9;
}

.article-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 25px 28px;
  background: #f2f7ef;
  border-radius: 14px;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.article-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
}

.article-faq {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.article-faq details {
  border-top: 1px solid var(--line);
}

.article-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  position: relative;
  padding: 21px 42px 21px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.article-faq summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--green);
  content: "+";
  font-size: 24px;
}

.article-faq details[open] summary::after {
  content: "−";
}

.article-faq details p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--text);
  line-height: 1.75;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 60px;
  padding: 34px;
  background: var(--navy);
  border-radius: 18px;
  color: var(--white);
}

.article-cta span,
.article-cta strong {
  display: block;
}

.article-cta span {
  margin-bottom: 8px;
  color: #aebdc6;
  font-size: 14px;
}

.article-cta strong {
  font-size: 20px;
}

.article-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.article-cta .button-outline-dark {
  border-color: #6b7e89;
  color: var(--white);
}

.article-sidebar {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 22px;
}

.sidebar-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.sidebar-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sidebar-card > strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.sidebar-card p {
  margin: 16px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.sidebar-card > a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.sidebar-links {
  display: grid;
}

.sidebar-links a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.sidebar-links a:last-child {
  border-bottom: 0;
}

@media (max-width: 1200px) {
  .about-hero-grid,
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
    gap: 55px;
  }

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

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 45px;
  }
}

@media (max-width: 980px) {
  .section-heading-row,
  .about-hero-grid,
  .about-statement-grid,
  .process-grid,
  .contact-hero-grid,
  .location-grid,
  .editorial-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .about-statement-grid,
  .process-grid,
  .contact-hero-grid,
  .editorial-hero-grid,
  .article-layout {
    gap: 50px;
  }

  .about-hero {
    padding-top: 75px;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero-visual {
    max-width: 820px;
  }

  .process-copy,
  .article-sidebar {
    position: static;
  }

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

  .location-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .page-breadcrumb ol {
    min-height: 48px;
  }

  .about-hero,
  .about-statement,
  .values-section,
  .process-section,
  .contact-hero,
  .location-section,
  .blog-index {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-hero-copy h1,
  .contact-intro h1,
  .editorial-hero h1,
  .article-header h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .about-hero-visual {
    padding: 10px;
    border-radius: 20px;
  }

  .about-hero-visual figcaption {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .values-grid,
  .blog-grid,
  .form-row,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 270px;
  }

  .value-number {
    margin-bottom: 48px;
  }

  .wide-cta-inner,
  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .wide-cta {
    padding: 62px 0;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .location-visual {
    padding: 10px;
  }

  .editorial-hero,
  .article-header {
    padding: 70px 0;
  }

  .blog-card-image {
    height: 240px;
  }

  .article-layout {
    padding-top: 45px;
    padding-bottom: 80px;
  }

  .article-cover {
    min-height: auto;
    margin-bottom: 45px;
    padding: 10px;
  }

  .article-intro {
    font-size: 20px;
  }

  .article-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .article-cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .about-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-hero-actions .button,
  .about-hero-actions .text-link {
    justify-content: center;
    width: 100%;
  }

  .contact-method {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .article-meta > *:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 1200px) {
  .collection-hero-copy {
    width: 46%;
  }

  .collection-hero-copy h1 {
    font-size: clamp(50px, 5.6vw, 70px);
  }

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

  .collection-card-media {
    height: 320px;
  }

  .collection-card-body {
    padding: 30px;
  }
}

@media (max-width: 980px) {
  .collection-hero {
    padding: 30px 0 70px;
  }

  .collection-hero-frame {
    display: flex;
    min-height: 0;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
  }

  .collection-hero-frame::after {
    display: none;
  }

  .collection-hero-frame > img {
    order: 2;
    min-height: 0;
    border-top: 1px solid var(--line);
    object-fit: contain;
  }

  .collection-hero-copy {
    position: static;
    order: 1;
    width: auto;
    padding: 55px 50px 36px;
    transform: none;
  }

  .collection-hero-copy h1 {
    max-width: 700px;
  }

  .collection-hero-copy > p:not(.page-eyebrow) {
    max-width: 680px;
  }

  .collection-hero-note {
    position: static;
    order: 1;
    align-self: flex-start;
    margin: 0 50px 44px;
  }

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

  .collection-heading,
  .collection-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card-body h2,
  .collection-card-body > p {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .collection-hero {
    padding: 20px 0 58px;
  }

  .collection-hero-frame {
    border-radius: 18px;
  }

  .collection-hero-copy {
    padding: 38px 24px 28px;
  }

  .collection-hero-copy h1 {
    font-size: clamp(41px, 12vw, 55px);
  }

  .collection-hero-copy > p:not(.page-eyebrow) {
    margin: 23px 0 28px;
    font-size: 17px;
  }

  .collection-hero-note {
    align-items: flex-start;
    margin: 0 24px 30px;
    flex-direction: column;
    gap: 7px;
  }

  .collection-hero-note span {
    padding-left: 0;
    border-left: 0;
  }

  .collection-jump {
    padding: 24px 0;
  }

  .collection-section {
    padding: 75px 0 82px;
  }

  .collection-heading {
    margin-bottom: 42px;
  }

  .collection-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .collection-heading > p {
    font-size: 16px;
  }

  .collection-grid {
    gap: 24px;
  }

  .collection-card-link {
    border-radius: 18px;
  }

  .collection-card-media {
    height: 270px;
    padding: 10px;
  }

  .collection-card-badge {
    top: 20px;
    left: 20px;
  }

  .collection-card-body {
    padding: 26px 24px 28px;
  }

  .collection-card-body h2 {
    font-size: 27px;
  }

  .collection-card-detail {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .collection-cta {
    padding: 75px 0;
  }

  .collection-cta h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .collection-cta-inner > div:last-child > p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .collection-jump-grid {
    grid-template-columns: 1fr;
  }
}

/* Sıkça Sorulan Sorular */
.faq-page-hero {
  padding: 62px 0 74px;
  background:
    radial-gradient(circle at 12% 20%, rgba(102, 158, 75, 0.12), transparent 31%),
    #f3f6f2;
}

.faq-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}

.faq-page-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 5.5vw, 84px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.faq-page-hero-copy h1 span {
  display: block;
  color: var(--green);
}

.faq-page-hero-copy > p:not(.page-eyebrow) {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
}

.faq-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin-top: 45px;
  overflow: hidden;
  background: rgba(11, 33, 50, 0.12);
  border: 1px solid rgba(11, 33, 50, 0.1);
  border-radius: 14px;
}

.faq-page-stats > div {
  display: flex;
  min-height: 96px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.faq-page-stats strong,
.faq-page-stats span {
  display: block;
}

.faq-page-stats strong {
  color: var(--ink);
  font-size: 29px;
  line-height: 1;
}

.faq-page-stats span {
  margin-top: 8px;
  color: #6f7c84;
  font-size: 13px;
  font-weight: 700;
}

.faq-page-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 33, 50, 0.09);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(11, 33, 50, 0.12);
}

.faq-page-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  background: #eef2ef;
  border-radius: 17px;
  object-fit: contain;
}

.faq-page-hero-media figcaption {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  padding: 21px 24px;
  background: rgba(2, 17, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  color: var(--white);
}

.faq-page-hero-media figcaption span,
.faq-page-hero-media figcaption strong {
  display: block;
}

.faq-page-hero-media figcaption span {
  margin-bottom: 7px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-page-hero-media figcaption strong {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.45;
}

.faq-product-links {
  position: relative;
  z-index: 2;
  padding: 27px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(11, 33, 50, 0.04);
}

.faq-product-links .container {
  display: flex;
  align-items: center;
  gap: 28px;
}

.faq-product-links p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-product-links-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.faq-product-links-list a {
  display: inline-flex;
  min-height: 38px;
  padding: 0 15px;
  align-items: center;
  background: #f3f6f3;
  border: 1px solid #e3e9e1;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-product-links-list a:hover,
.faq-product-links-list a:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.faq-page-content {
  padding: 105px 0 125px;
  background: var(--white);
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(270px, 340px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 8vw, 125px);
}

.faq-page-index {
  position: sticky;
  top: 145px;
}

.faq-page-index h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 2.6vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.faq-page-index > nav {
  display: grid;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.faq-page-index > nav a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.faq-page-index > nav a span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-page-index > nav a:hover,
.faq-page-index > nav a:focus-visible {
  padding-left: 6px;
  color: var(--green-dark);
}

.faq-page-index-note {
  margin-top: 34px;
  padding: 25px;
  background: #eef4eb;
  border-radius: 14px;
}

.faq-page-index-note strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.faq-page-index-note p {
  margin: 10px 0 17px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.faq-page-index-note a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.faq-page-groups {
  min-width: 0;
}

.faq-page-group {
  scroll-margin-top: 160px;
}

.faq-page-group + .faq-page-group {
  margin-top: 85px;
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

.faq-page-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
  align-items: end;
  gap: 45px;
  margin-bottom: 30px;
}

.faq-page-group-heading h2 {
  order: -1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 50px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.faq-page-group-heading p {
  margin: 0;
  color: #748189;
  font-size: 15px;
  line-height: 1.65;
}

.faq-page-list {
  border-top: 1px solid var(--ink);
}

.faq-directory-item {
  border-bottom: 1px solid var(--line);
}

.faq-directory-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-directory-number {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-directory-question {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-directory-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  background: #f1f5ef;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.25s ease;
}

.faq-directory-icon::before,
.faq-directory-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-directory-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-directory-item summary:hover .faq-directory-question,
.faq-directory-item summary:focus-visible .faq-directory-question {
  color: var(--green-dark);
}

.faq-directory-item[open] .faq-directory-icon {
  background: var(--green-dark);
  transform: rotate(180deg);
}

.faq-directory-item[open] .faq-directory-icon::before,
.faq-directory-item[open] .faq-directory-icon::after {
  background: var(--white);
}

.faq-directory-item[open] .faq-directory-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-directory-answer {
  max-width: 860px;
  padding: 0 62px 29px;
}

.faq-directory-answer p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.faq-directory-answer a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(69, 123, 47, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-directory-answer a:hover,
.faq-directory-answer a:focus-visible {
  text-decoration-color: currentColor;
}

.faq-page-cta {
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(102, 158, 75, 0.11), transparent 42%),
    #02111c;
  color: var(--white);
}

.faq-page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
}

.faq-page-cta .page-eyebrow {
  color: var(--green-light);
}

.faq-page-cta h2 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4.5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.faq-page-cta-inner > div:first-child > p:last-child {
  max-width: 760px;
  margin: 25px 0 0;
  color: #aab8c1;
  font-size: 17px;
  line-height: 1.7;
}

.faq-page-cta-actions {
  display: flex;
  min-width: 220px;
  align-items: center;
  flex-direction: column;
  gap: 19px;
}

.faq-page-cta-link {
  color: #dce5e9;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 1100px) {
  .faq-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .faq-page-hero-copy h1,
  .faq-page-hero-copy > p:not(.page-eyebrow),
  .faq-page-stats {
    max-width: 820px;
  }

  .faq-page-hero-media img {
    max-height: 620px;
  }

  .faq-product-links .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .faq-page-layout {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .faq-page-index {
    position: static;
  }

  .faq-page-index > nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
  }

  .faq-page-index-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
  }

  .faq-page-index-note p {
    margin: 0;
  }

  .faq-page-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .faq-page-cta-actions {
    min-width: 0;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .faq-page-hero {
    padding: 45px 0 58px;
  }

  .faq-page-hero-grid {
    gap: 45px;
  }

  .faq-page-hero-copy h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .faq-page-hero-copy > p:not(.page-eyebrow) {
    margin-top: 25px;
    font-size: 17px;
  }

  .faq-page-stats {
    margin-top: 34px;
  }

  .faq-page-stats > div {
    min-height: 86px;
    padding: 15px 8px;
  }

  .faq-page-stats strong {
    font-size: 25px;
  }

  .faq-page-stats span {
    font-size: 12px;
  }

  .faq-page-hero-media {
    padding: 10px;
    border-radius: 18px;
  }

  .faq-page-hero-media img {
    border-radius: 12px;
  }

  .faq-page-hero-media figcaption {
    position: static;
    margin-top: 10px;
    padding: 18px;
  }

  .faq-product-links {
    padding: 23px 0;
  }

  .faq-product-links-list {
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .faq-product-links-list a {
    flex: 0 0 auto;
  }

  .faq-page-content {
    padding: 75px 0 90px;
  }

  .faq-page-layout {
    gap: 60px;
  }

  .faq-page-index > nav {
    grid-template-columns: 1fr;
  }

  .faq-page-index-note {
    display: block;
  }

  .faq-page-index-note p {
    margin: 10px 0 17px;
  }

  .faq-page-group + .faq-page-group {
    margin-top: 65px;
    padding-top: 62px;
  }

  .faq-page-group-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-page-group-heading h2 {
    font-size: clamp(32px, 9.5vw, 43px);
  }

  .faq-directory-item summary {
    grid-template-columns: 28px minmax(0, 1fr) 36px;
    gap: 12px;
    min-height: 84px;
  }

  .faq-directory-question {
    font-size: 17px;
  }

  .faq-directory-icon {
    width: 34px;
    height: 34px;
  }

  .faq-directory-answer {
    padding: 0 0 25px 40px;
  }

  .faq-directory-answer p {
    font-size: 16px;
  }

  .faq-page-cta {
    padding: 78px 0;
  }

  .faq-page-cta h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .faq-page-cta-actions,
  .faq-page-cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .faq-page-stats {
    grid-template-columns: 1fr;
  }

  .faq-page-stats > div {
    min-height: 74px;
  }

  .faq-directory-item summary {
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .faq-directory-number {
    display: none;
  }

  .faq-directory-answer {
    padding-left: 0;
  }
}
