/* =========================================================
   KITAP SEÇ OKU
   ========================================================= */

:root {
  --bg: #FBF7EF;
  --bg-soft: #F3EBDD;
  --bg-deep: #E9DDCB;

  --gold: #A06A1C;
  --gold-dark: #75490F;
  --gold-light: #D8B779;

  --text: #221B13;
  --text-soft: #756B60;

  --white: #FFFFFF;
  --dark: #211A13;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;

  overflow-x: hidden;

  background: var(--bg);

  color: var(--text);

  font-family: var(--sans);
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}




/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: 100%;
  min-height: 730px;

  position: relative;

  overflow: hidden;

  padding: 80px 0 90px;
}

.hero-content {
  min-height: 570px;

  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2.2px;
}

.eyebrow > span {
  width: 24px;
  height: 1px;

  background: var(--gold);
}

.hero-text h1 {
  font-family: var(--serif);

  font-size: clamp(58px, 6vw, 83px);
  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -3.5px;
}

.hero-text h1 em {
  color: var(--gold);

  font-weight: 500;
}

.hero-description {
  max-width: 510px;

  margin-top: 27px;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.8;
}

.hero-buttons {
  margin-top: 33px;

  display: flex;
  align-items: center;

  gap: 24px;
}

.play-button {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 11px 19px;

  border-radius: 13px;

  background: var(--dark);

  color: white;

  transition: 0.25s;
}

.play-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(34, 27, 19, 0.18);
}

.play-icon {
  font-size: 23px;
}

.play-button > div:last-child {
  display: flex;
  flex-direction: column;
}

.play-button small {
  font-size: 7px;

  letter-spacing: 1px;

  opacity: 0.65;
}

.play-button strong {
  margin-top: 2px;

  font-size: 15px;
}

.discover-button {
  display: flex;
  align-items: center;

  gap: 9px;

  font-size: 11px;
  font-weight: 600;
}

.discover-button span {
  color: var(--gold);
}

.hero-features {
  display: flex;

  gap: 25px;

  margin-top: 43px;
}

.hero-features > div {
  min-width: 90px;

  display: flex;
  flex-direction: column;

  padding-right: 25px;

  border-right: 1px solid var(--bg-deep);
}

.hero-features > div:last-child {
  border-right: 0;
}

.hero-features .number {
  color: var(--gold);

  font-family: var(--serif);

  font-size: 15px;
}

.hero-features .label {
  margin-top: 4px;

  color: var(--text-soft);

  font-size: 9px;
}


/* HERO VISUAL */

.hero-visual {
  width: 100%;
  height: 590px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 470px;
  height: 470px;

  position: absolute;

  border-radius: 50%;

  background: #F1E5D2;
}

.hero-circle::after {
  content: "";

  position: absolute;

  inset: -35px;

  border: 1px solid var(--bg-deep);
  border-radius: 50%;
}

.background-word {
  position: absolute;

  color: rgba(160, 106, 28, 0.07);

  font-family: var(--serif);

  font-size: 250px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: -20px;
}


/* =========================================================
   PHONE - BURASI TÜM GÖRSELLERİ KONTROL EDİYOR
   ========================================================= */

.phone {
  position: relative;

  overflow: hidden;

  background: #17130F;

  border: 6px solid #17130F;

  box-shadow:
    0 35px 70px rgba(42, 29, 16, 0.20),
    0 10px 25px rgba(42, 29, 16, 0.12);
}

.phone img {
  width: 100% !important;
  height: 100% !important;

  max-width: 100% !important;
  max-height: 100% !important;

  display: block !important;

  object-fit: cover !important;

  object-position: top center !important;
}


/* HERO PHONES */

.hero-main-phone {
  width: 270px;
  height: 555px;

  z-index: 6;

  flex: 0 0 270px;

  border-radius: 42px;

  transform: rotate(1.5deg);
}

.hero-main-phone img {
  border-radius: 35px;
}

.hero-side-phone {
  width: 175px;
  height: 360px;

  position: absolute;

  z-index: 3;

  border-radius: 29px;

  opacity: 0.92;
}

.hero-side-phone img {
  border-radius: 22px;
}

.hero-phone-left {
  left: 5px;

  transform: rotate(-9deg);
}

.hero-phone-right {
  right: 5px;

  transform: rotate(9deg);
}


/* FLOATING CARDS */

.floating-card {
  position: absolute;

  z-index: 20;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 11px 14px;

  border: 1px solid var(--bg-deep);
  border-radius: 13px;

  background: rgba(255, 253, 249, 0.96);

  box-shadow: 0 17px 35px rgba(52, 37, 21, 0.12);
}

.floating-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: #EFE1C9;

  color: var(--gold);

  font-size: 18px;
}

.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: #9A8E81;

  font-size: 6px;

  letter-spacing: 1px;
}

.floating-card strong {
  margin-top: 3px;

  font-size: 9px;
}

.floating-favorite {
  top: 90px;
  left: 0;
}

.floating-download {
  right: 0;
  bottom: 90px;
}

.hero-decoration {
  position: absolute;

  border: 1px solid rgba(160, 106, 28, 0.10);

  border-radius: 50%;
}

.hero-decoration-left {
  width: 500px;
  height: 500px;

  left: -400px;
  top: -300px;
}

.hero-decoration-right {
  width: 500px;
  height: 500px;

  right: -410px;
  bottom: -330px;
}


/* =========================================================
   MINI BAR
   ========================================================= */

.mini-bar {
  border-top: 1px solid var(--bg-deep);
  border-bottom: 1px solid var(--bg-deep);

  background: rgba(255, 255, 255, 0.34);
}

.mini-bar-content {
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: flex;
  align-items: center;

  gap: 9px;
}

.mini-brand img {
  width: 32px !important;
  height: 32px !important;

  max-width: 32px !important;

  object-fit: contain !important;
}

.mini-brand strong {
  font-size: 11px;
}

.mini-steps {
  display: flex;
  align-items: center;

  gap: 12px;

  color: var(--text-soft);

  font-size: 10px;
}

.mini-steps b {
  color: var(--gold);
}


/* =========================================================
   COMMON HEADINGS
   ========================================================= */

.section-label {
  display: block;

  margin-bottom: 18px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2.3px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;

  align-items: end;

  gap: 70px;

  margin-bottom: 70px;
}

.section-heading h2,
.editorial-text h2,
.library-text h2,
.about-title h2,
.download-content h2,
.features-header h2 {
  font-family: var(--serif);

  font-weight: 500;

  letter-spacing: -2.5px;
}

.section-heading h2 {
  font-size: clamp(48px, 5vw, 67px);

  line-height: 1;
}

.section-heading h2 em,
.editorial-text h2 em,
.library-text h2 em,
.about-title h2 em,
.download-content h2 em,
.features-header h2 em {
  color: var(--gold);

  font-weight: 500;
}

.section-heading > p {
  color: var(--text-soft);

  font-size: 12px;

  line-height: 1.8;
}


/* =========================================================
   SCREENSHOTS
   ========================================================= */

.screens-section {
  padding: 120px 0 130px;

  overflow: hidden;

  background: var(--bg-soft);
}

.screens-showcase {
  width: 100%;

  display: grid;
  grid-template-columns: 0.85fr 1fr 1.15fr 1fr 0.85fr;

  align-items: center;

  gap: 15px;
}

.screen-column {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 17px;
}

.screen-column > span {
  color: var(--text-soft);

  font-size: 9px;
  font-weight: 600;
}

.screenshot-phone {
  width: 100%;

  flex: none;
}

.screenshot-small {
  max-width: 175px;
  height: 360px;

  border-radius: 29px;
}

.screenshot-large {
  max-width: 205px;
  height: 425px;

  border-radius: 33px;
}

.screenshot-small img {
  border-radius: 22px;
}

.screenshot-large img {
  border-radius: 26px;
}

.screen-column:nth-child(1) {
  transform: rotate(-5deg);
}

.screen-column:nth-child(2) {
  transform: rotate(-2deg);
}

.screen-column:nth-child(4) {
  transform: rotate(2deg);
}

.screen-column:nth-child(5) {
  transform: rotate(5deg);
}

.screen-middle-card {
  min-height: 450px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 30px 24px;

  border-radius: 27px;

  background: var(--dark);

  color: white;

  text-align: center;

  box-shadow: 0 30px 60px rgba(42, 30, 18, 0.16);
}

.screen-middle-card > img {
  width: 68px !important;
  height: 68px !important;

  max-width: 68px !important;

  margin-bottom: 22px;

  object-fit: contain !important;
}

.screen-middle-card > span {
  color: var(--gold-light);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 2px;
}

.screen-middle-card h3 {
  margin-top: 17px;

  font-family: var(--serif);

  font-size: 28px;
  font-weight: 500;

  line-height: 1.08;
}

.screen-middle-card p {
  max-width: 190px;

  margin-top: 14px;

  color: #B9B0A7;

  font-size: 9px;

  line-height: 1.6;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features-section {
  padding: 110px 0;

  background: var(--dark);

  color: white;
}

.features-header {
  max-width: 750px;

  margin-bottom: 65px;
}

.light-label {
  color: var(--gold-light);
}

.features-header h2 {
  font-size: clamp(45px, 5vw, 65px);

  line-height: 1;
}

.features-header h2 em {
  color: var(--gold-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.feature-item {
  min-height: 330px;

  position: relative;

  padding: 38px 35px;

  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-number {
  color: var(--gold-light);

  font-family: var(--serif);

  font-size: 13px;
}

.feature-symbol {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-top: 65px;

  border-radius: 50%;

  background: rgba(160, 106, 28, 0.17);

  color: var(--gold-light);

  font-size: 23px;
}

.feature-item h3 {
  margin-top: 22px;

  font-family: var(--serif);

  font-size: 22px;
  font-weight: 500;
}

.feature-item p {
  max-width: 270px;

  margin-top: 11px;

  color: #ACA39A;

  font-size: 10px;

  line-height: 1.7;
}


/* =========================================================
   EDITORIAL SECTION
   ========================================================= */

.editorial-section {
  padding: 130px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;

  align-items: center;

  gap: 100px;
}

.editorial-visual {
  height: 590px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-shape {
  width: 470px;
  height: 470px;

  position: absolute;

  border-radius: 50%;

  background: var(--bg-soft);
}

.editorial-shape::after {
  content: "";

  position: absolute;

  inset: -35px;

  border: 1px solid var(--bg-deep);

  border-radius: 50%;
}

.editorial-phone-back {
  width: 205px;
  height: 425px;

  position: absolute;

  left: 75px;

  z-index: 2;

  border-radius: 32px;

  transform: rotate(-8deg);
}

.editorial-phone-back img {
  border-radius: 25px;
}

.editorial-phone-front {
  width: 250px;
  height: 520px;

  position: absolute;

  right: 65px;

  z-index: 4;

  border-radius: 38px;

  transform: rotate(6deg);
}

.editorial-phone-front img {
  border-radius: 31px;
}

.editorial-text h2 {
  font-size: clamp(47px, 5vw, 65px);

  line-height: 1;
}

.editorial-text > p {
  max-width: 470px;

  margin-top: 24px;

  color: var(--text-soft);

  font-size: 13px;

  line-height: 1.85;
}

.check-list {
  display: flex;
  flex-direction: column;

  gap: 13px;

  margin-top: 30px;
}

.check-list > div {
  display: flex;
  align-items: center;

  gap: 11px;

  color: #443A30;

  font-size: 11px;
}

.check-list span {
  width: 23px;
  height: 23px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #EFE1C9;

  color: var(--gold);

  font-size: 10px;
}


/* =========================================================
   LIBRARY
   ========================================================= */

.library-section {
  padding: 10px 0 130px;
}

.library-card {
  min-height: 570px;

  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  border-radius: 30px;

  background: var(--dark);

  color: white;
}

.library-text {
  padding: 70px;
}

.library-label {
  color: var(--gold-light);
}

.library-text h2 {
  font-size: clamp(47px, 5vw, 65px);

  line-height: 1;
}

.library-text h2 em {
  color: var(--gold-light);
}

.library-text p {
  max-width: 440px;

  margin-top: 23px;

  color: #B5ACA3;

  font-size: 12px;

  line-height: 1.8;
}

.library-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 28px;

  color: var(--gold-light);

  font-size: 11px;
  font-weight: 700;
}

.library-visual {
  height: 570px;

  position: relative;

  overflow: hidden;
}

.library-glow {
  width: 430px;
  height: 430px;

  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: rgba(160, 106, 28, 0.20);

  filter: blur(10px);
}

.library-phone-one {
  width: 210px;
  height: 440px;

  position: absolute;

  left: 65px;
  bottom: -45px;

  z-index: 2;

  border-radius: 33px;

  transform: rotate(-8deg);
}

.library-phone-one img {
  border-radius: 26px;
}

.library-phone-two {
  width: 250px;
  height: 520px;

  position: absolute;

  right: 65px;
  bottom: -65px;

  z-index: 4;

  border-radius: 39px;

  transform: rotate(7deg);
}

.library-phone-two img {
  border-radius: 32px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  padding: 20px 0 125px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr;

  align-items: center;

  gap: 100px;
}

.about-title h2 {
  font-size: clamp(45px, 5vw, 63px);

  line-height: 1.03;
}

.about-copy {
  padding-left: 40px;

  border-left: 1px solid var(--bg-deep);
}

.about-logo img {
  width: 55px !important;
  height: 55px !important;

  max-width: 55px !important;

  object-fit: contain !important;
}

.about-copy p {
  margin-top: 24px;

  color: var(--text-soft);

  font-size: 13px;

  line-height: 1.9;
}


/* =========================================================
   DOWNLOAD
   ========================================================= */

.download-section {
  padding-bottom: 110px;
}

.download-card {
  min-height: 520px;

  position: relative;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 50% 115%,
      rgba(160, 106, 28, 0.30),
      transparent 45%
    ),
    var(--dark);

  color: white;
}

.download-content {
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 60px 25px;

  text-align: center;
}

.download-content > img {
  width: 70px !important;
  height: 70px !important;

  max-width: 70px !important;

  margin-bottom: 19px;

  object-fit: contain !important;
}

.download-content > span {
  color: var(--gold-light);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
}

.download-content h2 {
  margin-top: 14px;

  font-size: clamp(48px, 5vw, 66px);

  line-height: 1;
}

.download-content h2 em {
  color: var(--gold-light);
}

.download-content > p {
  max-width: 430px;

  margin-top: 20px;

  color: #B8AFA6;

  font-size: 12px;

  line-height: 1.7;
}

.download-play-button {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 25px;

  padding: 11px 20px;

  border-radius: 13px;

  background: white;

  color: var(--dark);

  transition: 0.25s;
}

.download-play-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.download-play-icon {
  font-size: 22px;
}

.download-play-button > div:last-child {
  display: flex;
  flex-direction: column;

  text-align: left;
}

.download-play-button small {
  font-size: 7px;

  letter-spacing: 1px;

  opacity: 0.65;
}

.download-play-button strong {
  margin-top: 2px;

  font-size: 15px;
}

.download-decoration {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;
}

.download-decoration-one {
  width: 500px;
  height: 500px;

  left: -300px;
  top: -300px;
}

.download-decoration-two {
  width: 600px;
  height: 600px;

  right: -350px;
  bottom: -400px;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .desktop-nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow,
  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 20px;

    text-align: center;
  }

  .section-heading > p {
    max-width: 500px;

    margin: auto;
  }

  .screens-showcase {
    grid-template-columns: repeat(4, 1fr);
  }

  .screen-middle-card {
    grid-column: 1 / -1;
    grid-row: 2;

    min-height: 280px;

    margin-top: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 250px;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .feature-symbol {
    margin-top: 35px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .editorial-text {
    text-align: center;
  }

  .editorial-text > p {
    margin-left: auto;
    margin-right: auto;
  }

  .check-list {
    max-width: 300px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }

  .library-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .library-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;
  }

  .about-copy {
    max-width: 600px;

    margin: auto;

    padding-left: 0;

    border-left: 0;
  }

  .about-logo img {
    margin: auto;
  }

}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(160, 106, 28, 0.12);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: 0 6px 30px rgba(34, 27, 19, 0.035);
}

.header-content {
  height: 82px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;
  gap: 35px;
}


/* LOGO */

.brand {
  display: inline-flex;
  align-items: center;

  gap: 12px;
  justify-self: start;
}

.brand-logo-wrap {
  width: 46px;
  height: 46px;

  min-width: 46px;
  min-height: 46px;

  max-width: 46px;
  max-height: 46px;

  display: grid;
  place-items: center;

  flex: 0 0 46px;

  overflow: hidden;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(160, 106, 28, 0.10);

  box-shadow: 0 7px 20px rgba(34, 27, 19, 0.055);
}

.brand-logo-wrap img {
  width: 38px !important;
  height: 38px !important;

  min-width: 0 !important;
  min-height: 0 !important;

  max-width: 38px !important;
  max-height: 38px !important;

  display: block !important;

  object-fit: contain !important;

  transition: transform 0.25s ease;
}

.brand:hover .brand-logo-wrap img {
  transform: rotate(-4deg) scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.1;
}

.brand-text strong {
  color: var(--text);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: -0.2px;
}

.brand-text span {
  margin-top: 5px;

  color: var(--text-soft);

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}


/* NAV */

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 5px;

  justify-self: center;

  padding: 5px;

  border: 1px solid rgba(160, 106, 28, 0.10);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.40);

  box-shadow: 0 6px 18px rgba(34, 27, 19, 0.025);
}

.desktop-nav a {
  position: relative;

  padding: 10px 15px;

  border-radius: 10px;

  color: var(--text-soft);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.1px;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold);

  background: rgba(160, 106, 28, 0.08);

  transform: translateY(-1px);
}


/* GOOGLE PLAY BUTTON */

.header-button {
  min-width: 158px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  gap: 10px;

  justify-self: end;

  padding: 0 13px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;

  background: var(--dark);

  color: white;

  box-shadow: 0 10px 24px rgba(34, 27, 19, 0.13);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-play-icon {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  flex: 0 0 30px;

  border-radius: 9px;

  background: rgba(255, 255, 255, 0.10);

  font-size: 11px;
}

.header-button-text {
  display: flex;
  flex-direction: column;

  flex: 1;
}

.header-button-text small {
  font-size: 6px;

  letter-spacing: 1px;

  opacity: 0.55;
}

.header-button-text strong {
  margin-top: 2px;

  font-size: 11px;
  font-weight: 700;
}

.header-arrow {
  display: inline-flex;

  font-size: 13px;

  opacity: 0.65;

  transition: transform 0.25s ease;
}

.header-button:hover {
  background: var(--gold);

  transform: translateY(-2px);

  box-shadow: 0 14px 30px rgba(160, 106, 28, 0.24);
}

.header-button:hover .header-arrow {
  transform: translate(2px, -2px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 115%,
      rgba(160, 106, 28, 0.14),
      transparent 34%
    ),
    #EDE3D4;

  border-top: 1px solid rgba(160, 106, 28, 0.12);
}

.footer::before {
  content: "OKU";

  position: absolute;

  right: 25px;
  bottom: -72px;

  color: rgba(160, 106, 28, 0.045);

  font-family: var(--serif);

  font-size: 210px;
  font-weight: 600;

  line-height: 1;

  pointer-events: none;
}


/* ANA FOOTER */

.footer-main {
  min-height: 245px;

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 100px;

  padding: 48px 0;
}


/* FOOTER MARKA */

.footer-brand-area {
  max-width: 390px;
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 14px;
}

.footer-logo-wrap {
  width: 54px;
  height: 54px;

  min-width: 54px;
  min-height: 54px;

  max-width: 54px;
  max-height: 54px;

  display: grid;
  place-items: center;

  flex: 0 0 54px;

  overflow: hidden;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid rgba(160, 106, 28, 0.11);

  box-shadow: 0 10px 25px rgba(34, 27, 19, 0.06);
}

.footer-logo-wrap img {
  width: 44px !important;
  height: 44px !important;

  min-width: 0 !important;
  min-height: 0 !important;

  max-width: 44px !important;
  max-height: 44px !important;

  display: block !important;

  object-fit: contain !important;
}

.footer-brand > div:last-child {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--text);

  font-family: var(--serif);

  font-size: 18px;
  font-weight: 600;

  letter-spacing: -0.4px;
}

.footer-brand span {
  margin-top: 5px;

  color: var(--text-soft);

  font-size: 9px;
}

.footer-description {
  max-width: 340px;

  margin-top: 22px;

  color: var(--text-soft);

  font-size: 10px;

  line-height: 1.8;
}


/* FOOTER NAV */

.footer-navigation {
  display: flex;

  gap: 75px;
}

.footer-column {
  min-width: 105px;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}

.footer-column-title {
  margin-bottom: 5px;

  color: var(--gold);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 1.8px;
}

.footer-column a {
  position: relative;

  color: var(--text-soft);

  font-size: 9.5px;
  font-weight: 500;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a::after {
  content: "";

  width: 0;
  height: 1px;

  position: absolute;

  left: 0;
  bottom: -4px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.footer-column a:hover {
  color: var(--gold);

  transform: translateX(2px);
}

.footer-column a:hover::after {
  width: 100%;
}


/* FOOTER ALT */

.footer-bottom {
  min-height: 64px;

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  border-top: 1px solid rgba(160, 106, 28, 0.13);

  color: #827568;

  font-size: 8px;

  letter-spacing: 0.25px;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-bottom-center {
  color: var(--gold-dark);

  font-weight: 600;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .desktop-nav {
    display: none;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
  }


}

@media (max-width: 700px) {

  .footer-brand-area {
    width: 100%;
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .footer-brand > div:last-child {
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand strong,
  .footer-brand span,
  .footer-description {
    text-align: left;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  /* HEADER */

  .header-content {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo-wrap {
    width: 40px;
    height: 40px;

    min-width: 40px;
    min-height: 40px;

    max-width: 40px;
    max-height: 40px;

    flex: 0 0 40px;

    border-radius: 12px;
  }

  .brand-logo-wrap img {
    width: 34px !important;
    height: 34px !important;

    max-width: 34px !important;
    max-height: 34px !important;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text span {
    display: none;
  }

  .header-button {
    min-width: auto;
    height: 40px;

    gap: 7px;

    padding: 0 10px;
  }

  .header-play-icon {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    font-size: 9px;
  }

  .header-button-text small {
    display: none;
  }

  .header-button-text strong {
    margin: 0;

    font-size: 9px;
  }

  .header-arrow {
    font-size: 11px;
  }


  /* FOOTER */

  .footer::before {
    right: -55px;
    bottom: -20px;

    font-size: 130px;
  }

  .footer-main {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 38px;

    padding: 45px 0 38px;
  }

  .footer-brand-area {
    max-width: 100%;

    margin: 0 auto;

    text-align: center;
  }

  .footer-brand {
    justify-content: center;

    text-align: left;
  }

  .footer-logo-wrap {
    width: 48px;
    height: 48px;

    min-width: 48px;
    min-height: 48px;

    max-width: 48px;
    max-height: 48px;

    flex: 0 0 48px;
  }

  .footer-logo-wrap img {
    width: 40px !important;
    height: 40px !important;

    max-width: 40px !important;
    max-height: 40px !important;
  }

  .footer-description {
    max-width: 310px;

    margin-left: auto;
    margin-right: auto;
  }

  .footer-navigation {
    justify-content: center;

    gap: 55px;
  }

  .footer-column {
    min-width: 95px;
  }

  .footer-bottom {
    padding: 18px 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 7px;

    text-align: center;
  }

  .footer-bottom > span:last-child {
    justify-self: auto;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  

  /* HERO */

  .hero {
    min-height: auto;

    padding: 60px 0 45px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 49px;

    letter-spacing: -2.3px;
  }

  .hero-description {
    font-size: 12.5px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-features {
    gap: 13px;
  }

  .hero-features > div {
    min-width: 0;

    padding-right: 13px;
  }

  .hero-visual {
    height: 490px;

    margin-top: 20px;
  }

  .hero-circle {
    width: 340px;
    height: 340px;
  }

  .background-word {
    font-size: 170px;
  }

  .hero-main-phone {
    width: 210px;
    height: 435px;

    flex-basis: 210px;

    border-radius: 34px;
  }

  .hero-main-phone img {
    border-radius: 27px;
  }

  .hero-side-phone {
    width: 125px;
    height: 265px;

    border-radius: 23px;
  }

  .hero-side-phone img {
    border-radius: 16px;
  }

  .hero-phone-left {
    left: -35px;
  }

  .hero-phone-right {
    right: -35px;
  }

  .floating-card {
    display: none;
  }


  /* MINI BAR */

  .mini-bar-content {
    min-height: 110px;

    flex-direction: column;
    justify-content: center;

    gap: 15px;
  }


  /* SCREENS */

  .screens-section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .screens-showcase {
    grid-template-columns: 1fr 1fr;

    gap: 20px 12px;
  }

  .screen-column {
    transform: none !important;
  }

  .screenshot-small,
  .screenshot-large {
    width: 100%;
    max-width: 180px;

    height: auto;

    aspect-ratio: 9 / 19;

    border-radius: 27px;
  }

  .screen-middle-card {
    grid-column: 1 / -1;
    grid-row: 3;

    min-height: 290px;

    border-radius: 24px;
  }


  /* FEATURES */

  .features-section {
    padding: 80px 0;
  }

  .features-header h2 {
    font-size: 42px;
  }


  /* EDITORIAL */

  .editorial-section {
    padding: 80px 0;
  }

  .editorial-visual {
    height: 480px;
  }

  .editorial-shape {
    width: 330px;
    height: 330px;
  }

  .editorial-phone-back {
    width: 155px;
    height: 325px;

    left: 15px;
  }

  .editorial-phone-front {
    width: 190px;
    height: 400px;

    right: 10px;
  }

  .editorial-text h2 {
    font-size: 42px;
  }


  /* LIBRARY */

  .library-section {
    padding-bottom: 80px;
  }

  .library-card {
    border-radius: 24px;
  }

  .library-text {
    padding: 55px 25px 20px;
  }

  .library-text h2 {
    font-size: 42px;
  }

  .library-visual {
    height: 470px;
  }

  .library-phone-one {
    width: 155px;
    height: 330px;

    left: 20px;
  }

  .library-phone-two {
    width: 190px;
    height: 400px;

    right: 15px;
  }


  /* ABOUT */

  .about-section {
    padding-bottom: 80px;
  }

  .about-title h2 {
    font-size: 40px;
  }


  /* DOWNLOAD */

  .download-section {
    padding-bottom: 80px;
  }

  .download-card {
    min-height: 480px;

    border-radius: 24px;
  }

  .download-content h2 {
    font-size: 43px;
  }


}


