:root {
  --page-bg: #efedeb;
  --shell-bg: rgba(255, 255, 255, 0.92);
  --shell-border: rgba(227, 227, 227, 0.95);
  --text: #434141;
  --muted: #242424;
  --nav: #1f6fff;
  --primary: #2f7cff;
  --primary-dark: #003da5;
  --accent: #d04d54;
  --glass: rgba(255, 255, 255, 0.56);
  --glass-border: rgba(239, 239, 239, 0.8);
  --shadow-soft: 0 30px 80px rgba(32, 36, 48, 0.08);
  --shadow-card: 0 22px 40px rgba(31, 38, 65, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(232, 235, 247, 0.75), transparent 36%),
    radial-gradient(circle at bottom right, rgba(244, 216, 218, 0.45), transparent 32%),
    var(--page-bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.page-shell {
  position: relative;
  width: min(1280px, calc(100vw - 32px));
  min-height: min(832px, calc(100vh - 32px));
  margin: 16px auto;
  padding: 32px 56px 72px;
  overflow: hidden;
  border: 1px solid var(--shell-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 252, 252, 0.92));
  box-shadow: var(--shadow-soft);
}

.page-shell__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.page-shell__glow--left {
  display: none;
}

.page-shell__glow--right {
  display: none;
}

.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 54px;
  font-family: "Inter", sans-serif;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.brand--mobile {
  display: none;
}

.topbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
  cursor: pointer;
}

.topbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #202020;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar__toggle span + span {
  margin-top: 5px;
}

.brand__mark {
  margin-top: -18px;
  margin-bottom: 28px;
  margin-left: 8px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__mark-red {
  color: #f53f47;
}

.brand__mark-blue {
  color: #334f9d;
}

.brand__name {
  margin: 0 0 22px;
  font-family: "Brittany Signature", "Allura", cursive;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
  color: #070707;
}

.brand__role {
  margin: 26px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #161616;
  letter-spacing: 0.02em;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  padding-top: 4px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  color: var(--nav);
  font-size: 18px;
  font-weight: 400;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: currentColor;
  transition: transform 180ms ease;
}

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

.pill-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid rgba(174, 204, 255, 0.9);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pill-link:hover,
.pill-link:focus-visible,
.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.nav-drawer {
  display: contents;
}

.nav-overlay {
  display: none;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 72px;
  padding: 34px 26px 0;
  font-family: "Inter", sans-serif;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}

.hero-copy h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #434141;
}

.hero-copy h2 span {
  font-weight: 700;
  background: linear-gradient(90deg, #5e5d5d 2%, #181717 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 455px;
  margin: 0;
  color: #242424;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: 0.06em;
  text-align: justify;
}

.hero-copy__emphasis {
  font-weight: 500;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(174, 204, 255, 0.9);
  border-radius: 999px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cta svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta--primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta--secondary {
  background: var(--accent);
}

.hero__visual {
  position: relative;
  min-height: 530px;
}

.hero-photo {
  position: absolute;
  top: 110px;
  left: 76px;
  width: min(100%, 374px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(18, 31, 59, 0.95), rgba(59, 77, 106, 0.88)),
    linear-gradient(180deg, #dad7d1, #ffffff);
  box-shadow: 0 28px 36px rgba(20, 28, 43, 0.14);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo__fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18));
}

.hero-photo--fallback .hero-photo__fallback {
  display: flex;
}

.glass-card {
  position: absolute;
  width: 244px;
  padding: 18px 18px 16px;
  border: 2px solid rgba(239, 239, 239, 0.7);
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(239, 239, 239, 0.18));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(27px);
}

.glass-card strong {
  display: block;
  margin-bottom: 2px;
  color: #111111;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.glass-card span {
  display: block;
  margin-bottom: 12px;
  color: #202020;
  font-size: 16px;
  font-weight: 400;
}

.glass-card p {
  margin: 0;
  color: rgba(20, 20, 20, 0.92);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.05em;
}

.glass-card__emphasis {
  font-weight: 500;
}

.glass-card--experience {
  top: 8px;
  right: -28px;
}

.glass-card--satisfaction {
  bottom: -24px;
  left: -34px;
  width: 244px;
}

.testimonials {
  position: relative;
  z-index: 2;
  padding: 126px 0 22px;
}

.testimonials__label {
  width: fit-content;
  margin: 0 auto 74px;
  background: linear-gradient(90deg, #2f7cff 0%, #003da5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.testimonials__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
}

.testimonials__heading p {
  margin: 0;
  color: #434141;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.testimonials__heading h2 {
  margin: 0;
  background: linear-gradient(180deg, #5e5d5d 8%, #181717 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.testimonials__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 402px;
  margin-top: 52px;
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(145, 145, 145, 0.95);
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonials__arrow--left {
  left: -12px;
}

.testimonials__arrow--right {
  right: -12px;
}

.testimonials__arrow svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-card {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
}

.testimonial-card h3 {
  margin: 0 0 12px;
  color: #202020;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.testimonial-card p {
  margin: 0;
  color: #202020;
}

.testimonial-card__stars {
  margin-bottom: 18px;
  color: #ffb733;
  font-size: 20px;
  letter-spacing: 0.14em;
}

.testimonial-card--featured {
  position: relative;
  z-index: 2;
  width: 442px;
  height: 319px;
  padding: 28px 35px 34px;
  opacity: 1;
  background: #ffffff;
  overflow: hidden;
}

.testimonial-card--featured h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.testimonial-card--featured p {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.26;
}

.testimonial-card__stars--featured {
  margin-bottom: 18px;
  font-size: 28px;
}

.testimonial-card--compact .testimonial-card__stars--featured {
  margin-bottom: 10px;
}

.testimonial-card--side {
  position: absolute;
  top: 41px;
  height: 243px;
  width: 345px;
  padding: 20px 28px 24px;
  filter: blur(2.8px);
  opacity: 0.52;
  z-index: 1;
  overflow: hidden;
}

.testimonial-card--side p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.58;
}

.testimonial-card--side:first-of-type {
  left: 36px;
}

.testimonial-card--side:last-of-type {
  right: 36px;
}

.portfolio-showcase {
  position: relative;
  z-index: 2;
  min-height: 600px;
  padding: 0 0 8px;
}

.portfolio-showcase__label {
  position: absolute;
  top: 50px;
  left: 50%;
  width: fit-content;
  margin: 0;
  background: linear-gradient(90deg, #2f7cff 0%, #003da5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transform: translateX(-50%);
}

.portfolio-showcase__grid {
  position: relative;
  width: min(100%, 1168px);
  min-height: 600px;
  margin: 0 auto;
  padding: 0;
}

.portfolio-showcase__copy {
  position: absolute;
  top: 169px;
  left: 48px;
  width: 441px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.portfolio-showcase__heading {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.portfolio-showcase__heading h2 {
  margin: 0;
  color: #434141;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.portfolio-showcase__heading h2 span {
  font-weight: 500;
}

.portfolio-showcase__heading p {
  margin: 0;
  max-width: 437px;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.portfolio-showcase__cta {
  width: fit-content;
}

.portfolio-stack {
  position: absolute;
  top: 160px;
  left: 585px;
  width: 526px;
  height: 330.32px;
  min-height: 330.32px;
  margin: 0;
}

.portfolio-stack__card {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.portfolio-stack__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.portfolio-stack__card--left,
.portfolio-stack__card--right {
  width: 210px;
  height: 210px;
  filter: blur(2px);
}

.portfolio-stack__card--left {
  top: 60px;
  left: 0;
  z-index: 1;
}

.portfolio-stack__card--right {
  top: 60px;
  left: 316px;
  z-index: 1;
}

.portfolio-stack__card--main {
  top: 0;
  left: 91px;
  width: 329.9px;
  height: 329.9px;
  z-index: 2;
  overflow: hidden;
}

.portfolio-stack__card--fallback-main {
  background:
    linear-gradient(145deg, rgba(20, 20, 20, 0.84), rgba(4, 4, 4, 0.94)),
    linear-gradient(135deg, #6aa2ff, #0a0a0a);
}

.portfolio-stack__card--fallback-main::before {
  content: "SATILDI";
  position: absolute;
  top: 14px;
  left: 0;
  padding: 5px 10px 6px;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.portfolio-stack__card--fallback-main::after {
  content: "MEBUSKENT\A KARACAKAYA MAHALLESI\A 12 KAT 1+1\A\A Rabia Ünal";
  position: absolute;
  right: 18px;
  bottom: 22px;
  white-space: pre-wrap;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
}

.portfolio-stack__card--fallback-left,
.portfolio-stack__card--fallback-right {
  background:
    linear-gradient(145deg, rgba(10, 10, 10, 0.84), rgba(20, 20, 20, 0.6)),
    linear-gradient(135deg, #80a6ff, #171717);
}

.faq-section {
  position: relative;
  z-index: 2;
  min-height: 705px;
  padding: 72px 24px 48px;
}

.faq-section__intro {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: min(100%, 852px);
  margin-left: 24px;
}

.faq-section__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section__copy h2 {
  margin: 0;
  background: linear-gradient(90deg, #5e5e5e 12.54%, #2a2a2a 99.95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.12;
  padding-bottom: 4px;
}

.faq-section__copy p {
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

.faq-section__cta {
  width: fit-content;
}

.faq-section__cta span {
  font-size: 18px;
}

.faq-section__cta svg {
  width: 26px;
  height: 26px;
}

.faq-list {
  margin-top: 128px;
  margin-left: 28px;
  width: min(100%, 1072px);
  border-top: 1px solid rgba(32, 32, 32, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(32, 32, 32, 0.16);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 53px;
}

.faq-item__summary > span {
  background: linear-gradient(90deg, #5e5d5d 2%, #181717 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.98;
  letter-spacing: 0.02em;
}

.faq-item button {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  margin-right: 40px;
}

.faq-item button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #2f7cff;
  transform: translate(-50%, -50%);
}

.faq-item button span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  display: none;
  padding: 0 72px 22px 0;
}

.faq-item__answer p {
  margin: 0;
  color: #434141;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.faq-item.is-open button span:last-child {
  display: none;
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(1280px, calc(100vw - 20px));
    min-height: auto;
    padding: 24px 24px 36px;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: 0;
  }

  .brand--mobile {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .topbar__toggle {
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    right: 0;
  }

  .topbar.is-open .topbar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-open .topbar__toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-open .topbar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    padding: 72px 32px 48px;
    background: #ffffff;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 200;
    transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .topbar.is-open .nav-drawer {
    right: 0;
  }

  .nav {
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 0;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 199;
    pointer-events: none;
    transition: background 300ms ease;
  }

  .topbar.is-open .nav-overlay {
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
  }

  .topbar > .pill-link {
    display: none;
  }

  .nav-drawer .pill-link {
    display: inline-flex;
    margin-top: auto;
    width: fit-content;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0 0;
  }

  .hero__content > .brand {
    display: none;
  }

  .hero-copy {
    align-items: center;
    max-width: 100%;
  }

  .hero-copy h2 {
    text-align: center;
  }

  .hero-copy p {
    text-align: center;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero__visual {
    min-height: 500px;
    width: min(540px, 100%);
    margin: 0 auto;
  }

  .testimonials {
    padding-top: 92px;
  }

  .testimonials__carousel {
    min-height: auto;
  }

  .testimonial-card--featured {
    height: auto;
    min-height: 260px;
  }

  .testimonial-card--side {
    display: none;
  }

  .testimonials__arrow--left {
    left: 0;
  }

  .testimonials__arrow--right {
    right: 0;
  }

  .portfolio-showcase {
    min-height: auto;
    padding-top: 96px;
  }

  .portfolio-showcase__label {
    position: static;
    margin: 0 auto 72px;
    transform: none;
  }

  .portfolio-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding: 0;
  }

  .portfolio-showcase__copy {
    position: static;
    max-width: 100%;
    width: auto;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .portfolio-showcase__heading {
    align-items: center;
  }

  .portfolio-showcase__heading h2 {
    text-align: center;
  }

  .portfolio-showcase__heading p {
    max-width: 100%;
    text-align: center;
  }

  .portfolio-showcase__cta {
    margin: 0 auto;
  }

  .portfolio-stack {
    position: relative;
    top: auto;
    left: auto;
    width: min(640px, 100%);
    height: 330.32px;
    margin: 0 auto;
  }

  .faq-section {
    min-height: auto;
    padding: 72px 0 24px;
  }

  .faq-section__intro {
    width: 100%;
    margin-left: 0;
  }

  .faq-section__copy h2 {
    font-size: 44px;
  }

  .faq-list {
    width: 100%;
    margin-left: 0;
    margin-top: 64px;
  }

  .faq-item button {
    margin-right: 16px;
  }

}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, #f4f1ef 0%, #ece9e6 100%);
  }

  .page-shell {
    width: 100%;
    margin: 0;
    padding: 20px 18px 28px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .topbar {
    align-items: flex-start;
    gap: 0 14px;
    padding-top: 2px;
  }

  .brand--mobile {
    max-width: 100%;
    align-items: center;
  }

  .brand--mobile .brand__mark {
    margin: 0 0 10px;
  }

  .brand--mobile .brand__name {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 48px;
  }

  .brand--mobile .brand__role {
    margin-top: 10px;
  }

  .topbar__toggle {
    position: absolute;
    top: 0;
    right: 0;
  }

  .nav-drawer {
    width: min(280px, 85vw);
    right: min(-280px, -85vw);
  }

  .topbar.is-open .nav-drawer {
    right: 0;
  }

  .brand__mark {
    font-size: 18px;
  }

  .brand__name {
    font-size: 56px;
  }

  .hero__content {
    gap: 34px;
  }

  .hero-copy h2 {
    font-size: 34px;
    letter-spacing: 0.02em;
  }

  .hero-copy p {
    max-width: none;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    justify-content: space-between;
  }

  .hero__visual {
    min-height: auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-photo,
  .glass-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .hero-photo {
    aspect-ratio: 0.98 / 1;
  }

  .glass-card--satisfaction {
    width: 100%;
  }

  .testimonials {
    padding-top: 74px;
  }

  .testimonials__label {
    margin-bottom: 44px;
  }

  .testimonials__heading p {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .testimonials__heading h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .testimonials__carousel {
    min-height: auto;
    margin-top: 34px;
  }

  .testimonials__arrow {
    width: 38px;
    height: 38px;
    color: rgba(100, 100, 100, 0.7);
  }

  .testimonials__arrow svg {
    width: 38px;
    height: 38px;
  }

  .testimonials__arrow--left {
    left: -4px;
  }

  .testimonials__arrow--right {
    right: -4px;
  }

  .testimonials__carousel {
    padding: 0 34px;
  }

  .testimonial-card--featured {
    width: 100%;
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .testimonial-card--featured h3 {
    font-size: 24px;
  }

  .testimonial-card--featured p {
    font-size: 18px;
  }

  .portfolio-showcase {
    padding-top: 78px;
  }

  .portfolio-showcase__label {
    margin-bottom: 44px;
  }

  .portfolio-showcase__heading {
    gap: 22px;
  }

  .portfolio-showcase__heading h2 {
    font-size: 34px;
    letter-spacing: 0.03em;
  }

  .portfolio-showcase__heading p {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .portfolio-stack {
    min-height: 300px;
  }

  .portfolio-stack__card--left,
  .portfolio-stack__card--right {
    top: 44px;
    width: 126px;
    height: 126px;
  }

  .portfolio-stack__card--left {
    left: 28px;
  }

  .portfolio-stack__card--right {
    left: auto;
    right: 28px;
  }

  .portfolio-stack__card--main {
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translateX(-50%);
  }

  .faq-section {
    padding-top: 64px;
  }

  .faq-section__copy h2 {
    font-size: 40px;
    line-height: 1.05;
  }

  .faq-section__copy p {
    font-size: 17px;
  }

  .faq-section__cta span {
    font-size: 17px;
  }

  .faq-list {
    margin-top: 48px;
  }

  .faq-item {
    padding: 10px 0;
  }

  .faq-item__summary > span {
    font-size: 17px;
    line-height: 1.45;
  }

  .faq-item button {
    margin-right: 8px;
  }

  .faq-item__answer {
    padding-right: 12px;
  }

  .faq-item__answer p {
    font-size: 15px;
  }

}

@media (max-width: 480px) {
  .page-shell {
    padding: 16px 14px 24px;
  }

  .brand--mobile .brand__name {
    font-size: 40px;
  }

  .brand--mobile .brand__mark {
    font-size: 16px;
  }

  .hero__content {
    gap: 28px;
  }

  .hero-copy h2 {
    font-size: 26px;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cta {
    font-size: 15px;
    gap: 8px;
    padding: 10px 14px 10px 16px;
  }

  .cta svg {
    width: 22px;
    height: 22px;
  }

  .testimonials {
    padding-top: 56px;
  }

  .testimonials__label {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .testimonials__heading p {
    font-size: 17px;
  }

  .testimonials__heading h2 {
    font-size: 26px;
  }

  .testimonials__carousel {
    margin-top: 24px;
    padding: 0 30px;
  }

  .testimonial-card--featured {
    padding: 20px 18px 22px;
  }

  .testimonial-card--featured h3 {
    font-size: 20px;
  }

  .testimonial-card--featured p {
    font-size: 16px;
  }

  .portfolio-showcase {
    padding-top: 56px;
  }

  .portfolio-showcase__label {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .portfolio-showcase__heading {
    gap: 16px;
  }

  .portfolio-showcase__heading h2 {
    font-size: 26px;
  }

  .portfolio-showcase__heading p {
    font-size: 15px;
  }

  .portfolio-stack {
    min-height: 240px;
  }

  .portfolio-stack__card--main {
    width: 190px;
    height: 190px;
  }

  .portfolio-stack__card--left,
  .portfolio-stack__card--right {
    width: 100px;
    height: 100px;
    top: 50px;
  }

  .portfolio-stack__card--left {
    left: 16px;
  }

  .portfolio-stack__card--right {
    right: 16px;
  }

  .faq-section {
    padding-top: 56px;
  }

  .faq-section__copy h2 {
    font-size: 32px;
  }

  .faq-section__copy p {
    font-size: 15px;
  }

  .faq-item__summary > span {
    font-size: 15px;
  }

  .faq-item__answer p {
    font-size: 14px;
  }

}
