:root {
  --yellow: #ffcf22;
  --ink: #212121;
  --muted: #727272;
  --soft: #faf8f4;
  --green: #4f6f28;
  --blue: #188dc2;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
.header {
  height: 112px;
  padding: 0 max(calc((100vw - var(--max)) / 2), 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.035);
}
.brand {
  display: flex;
  align-items: center;
  width: 190px;
}
.logo-word {
  font:
    900 italic 43px/1 Arial,
    sans-serif;
  letter-spacing: -5px;
  color: #d8d8d8;
  text-shadow:
    1px 1px #fff,
    -1px -1px #999;
}
.logo-mark {
  width: 48px;
  height: 45px;
  position: relative;
  margin-left: 5px;
}
.logo-mark i {
  position: absolute;
  display: block;
}
.logo-mark i:first-child {
  left: 2px;
  top: 0;
  width: 19px;
  height: 45px;
  background: #e7ad18;
  clip-path: polygon(42% 0, 100% 100%, 57% 80%, 38% 47%, 18% 100%, 0 100%);
}
.logo-mark i:nth-child(2) {
  right: 0;
  top: 3px;
  width: 34px;
  height: 34px;
  background: #3990b4;
  clip-path: polygon(
    0 0,
    47% 22%,
    100% 0,
    70% 55%,
    91% 100%,
    36% 72%,
    0 100%,
    18% 45%
  );
}
.logo-mark i:last-child {
  left: 14px;
  top: 21px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > a,
.dropdown > button {
  border: 0;
  background: transparent;
  padding: 14px 17px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.nav > a:hover,
.dropdown > button:hover,
.nav .active,
.nav .contact-pill {
  background: var(--yellow);
}
.nav .contact-pill {
  margin-left: 8px;
  padding-left: 21px;
  padding-right: 21px;
}
.dropdown {
  position: relative;
}
.dropdown button span {
  padding-left: 5px;
}
.dropdown-menu {
  position: absolute;
  top: 47px;
  left: 0;
  display: none;
  width: 200px;
  background: #fff;
  padding: 9px;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}
.dropdown:hover .dropdown-menu {
  display: grid;
}
.dropdown-menu a {
  padding: 10px;
  border-radius: 6px;
  font-size: 12px;
}
.dropdown-menu a:hover {
  background: #f6f4ee;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #222;
  margin: 5px;
}
.hero {
  height: min(60vw, 690px);
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.8s ease,
    transform 6s ease;
  display: flex;
  align-items: center;
  padding: 55px max(calc((100vw - var(--max)) / 2), 8vw);
  color: #fff;
}
.hero-slide.visible {
  opacity: 1;
  transform: scale(1);
}
.hero-copy {
  max-width: 610px;
  transform: translateY(-2px);
}
.hero-copy h1 {
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
  font-weight: 700;
}
.hero-copy p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 26px;
  color: #fff;
}
.hero-copy > a,
.yellow-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--yellow);
  color: #252525;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 207, 34, 0.22);
}
.hero-copy > a span,
.yellow-button span {
  font-size: 17px;
  line-height: 1;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
}
.hero-dots .selected {
  background: var(--yellow);
  border-color: var(--yellow);
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 90px 32px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 90px;
  align-items: center;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  font-weight: 800;
  color: #c69c00;
  margin-bottom: 14px;
}
.about h2,
.products-section h2,
.story h2,
.gallery h2,
.contact h2 {
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  font-weight: 500;
}
.about-copy > p,
.story p,
.gallery-copy > p,
.contact-intro p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 26px;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 55px rgba(44, 32, 14, 0.13);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
}
.benefits article {
  display: flex;
  flex-direction: column;
}
.benefits svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  margin-bottom: 13px;
}
.benefits b {
  font-size: 12px;
  margin-bottom: 5px;
}
.benefits small {
  font-size: 9px;
  color: #8a8a8a;
  line-height: 1.5;
}
.products-section {
  background: linear-gradient(180deg, #fbfaf7, #fff);
}
.products-section .inner {
  padding-top: 70px;
  padding-bottom: 90px;
}
.products-section h2 {
  font-size: 34px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 38px rgba(50, 40, 20, 0.07);
  transition: 0.25s;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 46px rgba(50, 40, 20, 0.12);
}
.product-image {
  height: 220px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-body {
  padding: 16px 15px 18px;
  position: relative;
  min-height: 112px;
}
.product-body h3 {
  font-size: 13px;
  margin: 0 0 7px;
}
.product-body p {
  font-size: 9px;
  line-height: 1.55;
  color: #858585;
  margin: 0;
  padding-right: 25px;
}
.product-body a {
  position: absolute;
  right: 13px;
  bottom: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 14px;
}
.story {
  min-height: 510px;
  background:
    linear-gradient(90deg, rgba(32, 28, 15, 0.18), rgba(32, 28, 15, 0.04)),
    url("https://images.unsplash.com/photo-1473448912268-2022ce9509d8?auto=format&fit=crop&w=2200&q=90")
      center/cover;
  display: flex;
  align-items: center;
  padding: 75px max(calc((100vw - var(--max)) / 2), 32px);
}
.story-card {
  width: 440px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 38px 42px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(20, 30, 10, 0.15);
}
.story h2 {
  font-size: 41px;
}
.gallery {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: center;
}
.gallery-copy p {
  max-width: 270px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.contact {
  padding: 70px max(calc((100vw - var(--max)) / 2), 32px);
  background: #fbf8f4;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
}
.contact h2 {
  font-size: 31px;
  margin-bottom: 10px;
}
.contact-intro p {
  font-size: 11px;
  margin: 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.contact-cards a {
  background: #fff;
  border-radius: 8px;
  min-height: 105px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 32px rgba(36, 28, 14, 0.05);
}
.contact-cards svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #333;
  stroke-width: 1.6;
  flex: none;
}
.contact-cards span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.contact-cards small {
  font-size: 10px;
}
.contact-cards b {
  font-size: 9px;
  line-height: 1.5;
  font-weight: 500;
  color: #555;
  overflow-wrap: anywhere;
}
footer {
  background: #202020;
  color: #fff;
  padding: 54px max(calc((100vw - var(--max)) / 2), 32px) 20px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.85fr 1.25fr;
  gap: 45px;
}
.footer-brand .brand {
  transform: scale(0.76);
  transform-origin: left center;
}
.footer-brand p,
.newsletter p {
  font-size: 9px;
  line-height: 1.8;
  color: #aaa;
  max-width: 210px;
}
.socials {
  display: flex;
  gap: 9px;
  margin-top: 17px;
}
.socials a {
  width: 27px;
  height: 27px;
  border: 1px solid #666;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  color: #bbb;
}
.footer-main h3 {
  font-size: 11px;
  margin: 0 0 17px;
}
.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
}
.footer-main > div > a {
  font-size: 9px;
  color: #aaa;
  margin-bottom: 9px;
}
.newsletter form {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}
.newsletter input {
  border: 0;
  outline: 0;
  padding: 12px;
  width: 100%;
  font-size: 9px;
}
.newsletter button {
  width: 42px;
  border: 0;
  background: var(--yellow);
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid #3a3a3a;
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 8px;
}
.footer-bottom div {
  display: flex;
  gap: 28px;
}
.whatsapp-float,
.phone-float {
  position: fixed;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.whatsapp-float {
  left: 20px;
  background: #27bd59;
}
.phone-float {
  right: 20px;
  background: var(--blue);
}
.whatsapp-float svg,
.phone-float svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}
@media (max-width: 1050px) {
  .nav > a,
  .dropdown > button {
    padding: 12px 10px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .about {
    gap: 55px;
  }
}
@media (max-width: 820px) {
  .header {
    height: 88px;
    padding: 0 22px;
  }
  .brand {
    transform: scale(0.78);
    transform-origin: left center;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    align-items: stretch;
  }
  .nav.open {
    display: grid;
  }
  .nav > a,
  .dropdown > button {
    text-align: left;
    width: 100%;
  }
  .nav .contact-pill {
    margin: 0;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }
  .dropdown:hover .dropdown-menu {
    display: grid;
  }
  .hero {
    height: 690px;
    min-height: 0;
  }
  .hero-slide {
    padding-left: 35px;
    background-position: center;
  }
  .hero-copy h1 {
    font-size: 64px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .about-image img {
    height: 420px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-copy p {
    max-width: 500px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 65px 20px;
  }
  .hero {
    height: 570px;
  }
  .hero-slide {
    padding: 35px 24px;
    background-position: 58% center;
  }
  .hero-copy h1 {
    font-size: 48px;
  }
  .hero-copy p {
    font-size: 12px;
  }
  .about-image img {
    height: 330px;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-image {
    height: 170px;
  }
  .product-body {
    min-height: 120px;
  }
  .story {
    min-height: 500px;
    padding: 55px 20px;
  }
  .story-card {
    width: 100%;
    padding: 30px 25px;
  }
  .story h2 {
    font-size: 35px;
  }
  .gallery-grid {
    grid-template-rows: 150px 150px;
  }
  .contact {
    padding: 60px 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .whatsapp-float,
  .phone-float {
    width: 48px;
    height: 48px;
  }
}

/* DO20 referansına uygun daha okunaklı yazı ölçüleri */
.nav > a,
.dropdown > button {
  font-size: 15px;
}
.dropdown-menu a {
  font-size: 14px;
}
.hero-copy p {
  font-size: 18px;
  line-height: 1.72;
}
.hero-copy > a,
.yellow-button {
  font-size: 13px;
  padding: 14px 20px;
}
.eyebrow {
  font-size: 11px;
}
.about h2,
.products-section h2,
.story h2,
.gallery h2,
.contact h2 {
  font-size: clamp(39px, 4.2vw, 54px);
}
.about-copy > p,
.story p,
.gallery-copy > p,
.contact-intro p {
  font-size: 16px;
  line-height: 1.85;
}
.benefits b {
  font-size: 15px;
}
.benefits small {
  font-size: 12px;
  line-height: 1.55;
}
.products-section h2 {
  font-size: 40px;
}
.product-body {
  min-height: 135px;
  padding: 18px 17px 20px;
}
.product-body h3 {
  font-size: 16px;
}
.product-body p {
  font-size: 12px;
  line-height: 1.6;
}
.story h2 {
  font-size: 46px;
}
.contact h2 {
  font-size: 37px;
}
.contact-intro p {
  font-size: 14px;
}
.contact-cards small {
  font-size: 12px;
}
.contact-cards b {
  font-size: 12px;
  line-height: 1.55;
}
.footer-brand p,
.newsletter p {
  font-size: 12px;
}
.footer-main h3 {
  font-size: 14px;
}
.footer-main > div > a {
  font-size: 12px;
}
.newsletter input {
  font-size: 12px;
}
.footer-bottom {
  font-size: 10px;
}
@media (max-width: 820px) {
  .nav > a,
  .dropdown > button {
    font-size: 16px;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .about-copy > p,
  .story p,
  .gallery-copy > p,
  .contact-intro p {
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .hero-copy p {
    font-size: 15px;
  }
  .product-body h3 {
    font-size: 15px;
  }
  .product-body p {
    font-size: 11px;
  }
  .contact h2 {
    font-size: 34px;
  }
}

/* V4: belirgin biçimde büyük ve rahat okunan punto sistemi */
body {
  font-size: 17px;
}
.nav > a,
.dropdown > button {
  font-size: 17px;
  font-weight: 600;
  padding: 15px 18px;
}
.dropdown-menu a {
  font-size: 16px;
  padding: 12px;
}
.hero-copy p {
  font-size: 21px;
  font-weight: 500;
}
.hero-copy > a,
.yellow-button {
  font-size: 15px;
  padding: 15px 22px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
}
.about h2,
.products-section h2,
.story h2,
.gallery h2,
.contact h2 {
  font-size: clamp(43px, 4.5vw, 58px);
}
.about-copy > p,
.story p,
.gallery-copy > p,
.contact-intro p {
  font-size: 18px;
  line-height: 1.8;
}
.benefits b {
  font-size: 17px;
}
.benefits small {
  font-size: 14px;
}
.product-grid {
  grid-template-columns: repeat(4, 1fr);
}
.product-body {
  min-height: 155px;
  padding: 20px;
}
.product-body h3 {
  font-size: 19px;
}
.product-body p {
  font-size: 14px;
  line-height: 1.65;
}
.product-body a {
  width: 34px;
  height: 34px;
  font-size: 17px;
}
.story h2 {
  font-size: 50px;
}
.contact h2 {
  font-size: 42px;
}
.contact-intro p {
  font-size: 17px;
}
.contact-cards small {
  font-size: 14px;
}
.contact-cards b {
  font-size: 14px;
}
.footer-brand p,
.newsletter p {
  font-size: 14px;
}
.footer-main h3 {
  font-size: 16px;
}
.footer-main > div > a {
  font-size: 14px;
  margin-bottom: 11px;
}
.newsletter input {
  font-size: 14px;
}
.footer-bottom {
  font-size: 12px;
}
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .nav > a,
  .dropdown > button {
    font-size: 18px;
  }
  .hero-copy p {
    font-size: 19px;
  }
  .about-copy > p,
  .story p,
  .gallery-copy > p,
  .contact-intro p {
    font-size: 17px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .hero-copy p {
    font-size: 17px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .about-copy > p,
  .story p,
  .gallery-copy > p,
  .contact-intro p {
    font-size: 16px;
  }
  .product-body h3 {
    font-size: 18px;
  }
  .product-body p {
    font-size: 14px;
  }
  .contact h2 {
    font-size: 38px;
  }
  .footer-main > div > a,
  .footer-brand p,
  .newsletter p {
    font-size: 13px;
  }
}

/* Mar Teknik müşteri uyarlaması — şablonun özgün iskeleti korunmuştur */
:root {
  --yellow: #12bfd0;
  --green: #0b5870;
  --blue: #0d8faa;
  --ink: #10233a;
  --soft: #f5f9fa;
}
.brand {
  height: 84px;
}
.real-logo {
  width: 175px;
  height: 78px;
  object-fit: contain;
  background: #fff;
}
.footer-brand .real-logo {
  width: 190px;
  height: 84px;
}
.hero-copy h1 {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.22);
}
.story {
  background:
    linear-gradient(90deg, rgba(4, 28, 52, 0.25), rgba(4, 28, 52, 0.04)),
    url("assets/hero-corporate-2.png") center/cover;
}
.products-section {
  background: linear-gradient(180deg, #f4f9fa, #fff);
}
.product-grid {
  grid-template-columns: repeat(3, 1fr);
}
.product-image {
  height: 250px;
}
.address-card {
  background: #fff;
  border-radius: 8px;
  min-height: 105px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 32px rgba(36, 28, 14, 0.05);
}
.address-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #333;
  stroke-width: 1.6;
  flex: none;
}
.address-card span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.address-card small {
  font-size: 14px;
}
.address-card b {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: #555;
  overflow-wrap: anywhere;
}
.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #10233a !important;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
  margin-top: 9px;
}
.socials a {
  width: 38px;
  height: 38px;
  font-size: 11px;
}
.footer-brand .brand {
  transform: none;
}
.footer-brand .real-logo {
  border-radius: 6px;
}
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .brand {
    height: 70px;
  }
  .real-logo {
    width: 145px;
    height: 66px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-image {
    height: 260px;
  }
}
.product-card {
  color: inherit;
}
.product-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 17px;
  font-weight: 800;
}
.top-contact-bar {
  height: 44px;
  background: linear-gradient(90deg, #06182f, #0b3152);
  color: #dbe8f1;
  font-size: 13px;
}
.top-contact-inner {
  width: min(1180px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-message {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px #12bfd025;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 21px;
}
.top-actions > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-actions svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
}
.social-label {
  padding-left: 20px;
  border-left: 1px solid #ffffff25;
  color: #9eb1c2;
}
.top-socials {
  display: flex;
  gap: 6px;
}
.top-socials a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff30;
  font-size: 10px;
  font-weight: 800;
  transition: 0.25s;
}
.top-socials a:hover,
.top-socials .social-wa {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #071a32;
}
.header {
  height: 104px;
}
.dropdown-menu {
  top: 44px;
}
@media (max-width: 820px) {
  .top-contact-inner {
    width: calc(100% - 30px);
  }
  .top-message,
  .social-label,
  .top-actions > a:first-child {
    display: none;
  }
  .top-actions {
    margin-left: auto;
  }
  .top-contact-bar {
    height: 40px;
  }
  .header {
    height: 86px;
  }
  .nav {
    top: 86px;
  }
}
@media (max-width: 560px) {
  .top-actions > a:nth-child(2) {
    font-size: 12px;
  }
  .top-socials a {
    width: 25px;
    height: 25px;
  }
}
.top-socials img {
  width: 13px;
  height: 13px;
  filter: invert(1);
}
.top-socials .social-wa img,
.top-socials a:hover img {
  filter: none;
}
.whatsapp-float img {
  width: 27px;
  height: 27px;
  filter: invert(1);
}
.socials img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}
.catalog-section {
  max-width: 1180px;
  margin: auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}
.catalog-visual {
  min-height: 520px;
  background: linear-gradient(145deg, #061a31, #0d4569);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.catalog-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.catalog-visual:before,
.catalog-visual:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid #ffffff18;
  width: 420px;
  height: 420px;
}
.catalog-visual:after {
  width: 620px;
  height: 620px;
}
.catalog-book {
  width: 300px;
  height: 390px;
  background: linear-gradient(145deg, #fff, #edf6f7);
  box-shadow: 25px 30px 55px #0006;
  transform: perspective(900px) rotateY(-12deg) rotateZ(-2deg);
  padding: 55px 35px;
  position: relative;
  z-index: 2;
  color: #09213d;
  border-left: 12px solid var(--yellow);
}
.catalog-book:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 105px;
  background: linear-gradient(135deg, #0a3659, var(--yellow));
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}
.catalog-book span {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.25em;
}
.catalog-book b {
  display: block;
  font-size: 52px;
  line-height: 1;
  margin-top: 3px;
}
.catalog-book small {
  display: block;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.catalog-copy h2 {
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin: 0 0 24px;
}
.catalog-copy p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.catalog-button {
  margin-top: 20px;
  border: 0;
  background: #e9f2f3;
  color: #71818e;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 7px;
  text-align: left;
  cursor: not-allowed;
}
.catalog-button span {
  display: flex;
  flex-direction: column;
}
.catalog-button b {
  font-size: 15px;
}
.catalog-button small {
  font-size: 11px;
  margin-top: 2px;
}
@media (max-width: 820px) {
  .catalog-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 75px 22px;
  }
  .catalog-visual {
    min-height: 450px;
  }
}
@media (max-width: 560px) {
  .catalog-visual {
    min-height: 390px;
  }
  .catalog-book {
    width: 230px;
    height: 310px;
    padding: 45px 25px;
  }
  .catalog-book b {
    font-size: 40px;
  }
  .catalog-copy h2 {
    font-size: 40px;
  }
}
