:root {
  --black: #050505;
  --black-soft: #08111f;
  --graphite: #1c1c1c;
  --gray: #3a3a3a;
  --gray-light: #e8e8e8;
  --white: #ffffff;
  --blue: #3a3a3a;
  --blue-dark: #082c6c;
  --blue-hover: #1565d8;
  --gray-logo:#999999
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.ph {
  display: inline-block;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr 166px;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 0px 57px 5px;
  background: var(--white);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.09);
}

/* .brand {
  width: 116px;
  min-height: 82px;
} */

.brand img {
  height: 82px; 
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 4.6vw, 66px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 13px 0;
}

.main-nav a.is-active {
  color: var(--blue);
}

.main-nav a.is-active::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 47px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 166px;
  min-height: 52px;
  border-radius: 7px;
  background: var(--gray-logo) ;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.18);
}

.whatsapp-button-mobile {
  display: none;
}

.whatsapp-button i {
  font-size: 24px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  /* filter: grayscale(100%); */
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.86) 31%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.07) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(600px, calc(100% - 40px));
  padding: 66px 0 40px 61px;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 15px;
  color: #00a9ff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(38px, 5vw, 57px);
  line-height: 1.12;
  font-weight: 800;
}

.hero-copy {
  max-width: 590px;
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 29px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
}

.button-primary,
.payment-button {
  background: var(--gray-logo);
  color: var(--black);
}

.button-primary:hover,
.payment-button:hover {
  background: linear-gradient(135deg, var(--blue-hover), var(--blue));
}

.button-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.button-black {
  min-width: 212px;
  min-height: 34px;
  margin-top: 14px;
  border-radius: 5px;
  background: var(--gray-logo);
  color: var(--black);
  
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1125px;
  margin: 0 auto;
  padding: 48px 40px 54px;
}

.feature-item {
  min-height: 173px;
  padding: 0 36px;
  text-align: center;
}

.feature-item + .feature-item {
  border-left: 1px solid #d9dfe6;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--gray-logo);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

.feature-icon i {
  color:var(--black);
  font-size: 43px;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.55;
}

.feature-item strong {
  color: var(--blue);
}

.payment {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
  gap: clamp(40px, 4.6vw, 86px);
  align-items: stretch;
  width: min(1400px, calc(100% - 96px));
  margin: 0 auto 80px;
  padding: clamp(38px, 5vw, 72px) clamp(28px, 4vw, 60px);
  border: 1px solid rgba(207, 219, 236, 0.8);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(11, 77, 184, 0.04), transparent 20%),
    radial-gradient(circle at 20% 100%, rgba(11, 77, 184, 0.03), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: #0c1630;
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.payment-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding-right: clamp(0px, 1vw, 6px);
}

.payment-content .eyebrow {
  margin-bottom: 26px;
  color: var(--gray-logo);
  font-size: 15px;
  letter-spacing: 0.2em;
}

#footer-email,
#footer-payment-email {
  white-space: nowrap;
}

.payment-content h2 {
  max-width: 700px;
  color: #10224f;
  font-size: clamp(2.45rem, 2.8vw, 4.25rem);
  line-height: 1.08;
  font-weight: 700;
  text-wrap: balance;
}

.payment-rule {
  display: block;
  width: 84px;
  height: 4px;
  margin: 34px 0 36px;
  border-radius: 999px;
  background: var(--blue-hover);
}

.payment-description {
  max-width: 760px;
  color: #4d5970;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.8;
}

.payment-mail-card {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  width: min(100%, 640px);
  margin-top: 44px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.payment-mail-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(72px, 6vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gray-logo);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 16px 30px rgba(11, 77, 184, 0.18);
}

.payment-mail-icon i {
  color: var(--black);
  font-size: clamp(2rem, 2.4vw, 2.8rem);
}

.payment-mail-text {
  min-width: 0;
}

.payment-mail-text small {
  display: block;
  margin-bottom: 10px;
  color: #11224b;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.payment-mail-text strong {
  display: block;
  color: var(--gray);
  font-size: clamp(1.18rem, 1.8vw, 1.78rem);
  line-height: 1.32;
  overflow-wrap: break-word;
  word-break: break-word;
}

.payment-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(28px, 3vw, 54px);
  border-left: 1px solid rgba(217, 226, 239, 0.95);
}

.payment-side-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 290px);
  aspect-ratio: 1;
  margin: 0 auto 42px;
}

.payment-orbit {
  position: absolute;
  border-radius: 50%;
}

.orbit-outer {
  inset: 4%;
  background: rgba(11, 77, 184, 0.04);
}

.orbit-mid {
  inset: 14%;
  background: rgba(11, 77, 184, 0.06);
  box-shadow: 0 0 0 30px rgba(11, 77, 184, 0.045);
}

.orbit-inner {
  inset: 28%;
  background: var(--gray);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 18px 36px rgba(11, 77, 184, 0.2);
}

.payment-orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1f6af0;
}

.dot-top {
  top: 20%;
  right: 2%;
}

.dot-bottom {
  bottom: 18%;
  left: 8%;
}

.payment-icon-right {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(42%, 140px);
  aspect-ratio: 1;
}

.payment-icon-right i {
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 4.7rem);
}

.payment-rule-side {
  width: 74px;
  margin: 0 0 28px;
}

.payment-side h3 {
  color: #10224f;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.14;
  font-weight: 700;
}

.payment-side-copy {
  margin-top: 20px;
  color: #4d5970;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.78;
}

.payment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 366px);
  min-height: 78px;
  margin-top: 34px;
  padding: 18px 26px;
  border-radius: 18px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 32px rgba(11, 77, 184, 0.22);
}

.payment-button i {
  font-size: 1.5rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 593px;
  gap: 56px;
  width: min(1125px, calc(100% - 100px));
  margin: 0 auto 72px;
  padding-top: 8px;
}

.about-copy {
  padding: 9px 0 0 22px;
}

.eyebrow-dark {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
}

.about-copy h2 {
  max-width: 480px;
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 32px);
  line-height: 1.06;
    color: var(--graphite);

}

.about-copy p {
  max-width: 540px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
}

.about-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 13px;
}

.about-media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  /* filter: grayscale(100%); */
}

.experience-card {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 18px;
  border-bottom: 5px solid var(--blue);
  background: rgba(5, 5, 5, 0.94);
  color: var(--white);
}

.experience-card i {
  color: #0098ff;
  font-size: 73px;
}

.experience-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.15;
  text-transform: uppercase;
}

.experience-card p {
  font-size: 14px;
  line-height: 1.45;
}

.director-about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  width: min(1125px, calc(100% - 100px));
  margin: 0 auto 72px;
  padding: 8px 0 0;
}

.director-about-copy {
  min-width: 0;
  padding-top: 4px;
}

.director-about-eyebrow {
  margin: 0 0 28px;
  color: #50545a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.director-about h2 {
  max-width: 560px;
  margin: 0;
  color: var(--graphite);
  line-height: 1.12;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.director-about-rule {
  display: block;
  width: 70px;
  height: 3px;
  margin: 32px 0 34px;
  border-radius: 999px;
  background: #0b0b0b;
}

.director-about-text {
  max-width: 575px;
  margin: 0;
  color: #171717;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.director-about-quote {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 500px;
  margin: 44px 0 0;
  padding: 26px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  background: #f6f6f6;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.director-about-quote span {
  color: #8c8c8c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  line-height: 0.85;
}

.director-about-quote blockquote {
  margin: 8px 0 0;
  color: #111111;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-style: italic;
  line-height: 1.55;
}

.director-about-profile {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.director-about-profile img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.director-about-profile figcaption {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: #161616;
}

.director-about-profile strong {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.director-about-profile span {
  color: #404040;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.35;
}

.services {
  width: min(1125px, calc(100% - 100px));
  margin: 0 auto 62px;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.18fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  margin-bottom: 42px;
}

.services-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.services .eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-align: left;
}

.services h2 {
  max-width: 680px;
  margin: 0;
  color: #0c1630;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}

.services h2 span {
  display: block;
  color: var(--gray);
}

.services-rule {
  display: block;
  width: 66px;
  height: 5px;
  margin: 30px 0 28px;
  border-radius: 999px;
  background: var(--gray-logo);
}

.services-intro {
  max-width: 560px;
  margin: 0;
  color: #4d5970;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  text-align: left;
}

.services-visual {
  position: relative;
  height: 100%;
  overflow: hidden; 
  background:
    radial-gradient(circle at 25% 18%, rgba(38, 88, 211, 0.16), transparent 30%),
    linear-gradient(180deg, #eef5ff 0%, #f7faff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.services-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0.88) 18%, rgba(248, 250, 252, 0.45) 35%, rgba(248, 250, 252, 0) 60%),
    radial-gradient(circle at 22% 18%, rgba(38, 88, 211, 0.12), transparent 24%);
  content: "";
}

.services-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

 



.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: 1fr 144px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.service-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px 24px;
}

.service-icon-shell {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gray-logo);
}

.service-icon-shell i {
  color:var(--black) !important;
}


.service-card i {
  color: #1767e5;
  font-size: 38px;
}

.service-card-rule {
  width: 30px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--blue-hover);
}

.service-card h3 {
   margin: 0 0 14px;
  color: #111827;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.35;
  font-weight: 700;
  text-align: left;
}

.service-card p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.service-card-image {
  width: 100%;
  height: 144px;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  overflow: hidden;
  background: var(--gray-light);
  color: var(--white);
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
  min-width: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  width: min(1370px, calc(100% - 96px));
  max-width: 100%;
  margin: 0 auto;
  padding: 88px 0 42px;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 32px;
}

.footer-brand-block img {
  width: 148px;
  max-width: 100%;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}

.footer-brand-block p {
  max-width: 300px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  background-color: var(--gray);
}

.footer-socials i {
  font-size: 25px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  max-width: 100%;
  gap:30px;
}

.footer-column p {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  color: var(--black) ;
}
.footer-column h3 {
  color:  var(--black);
}

.footer-column:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(3, 8, 19, 0.82);
  box-shadow: 0 0 34px rgba(11, 77, 184, 0.12);
}

.footer-icon i {
  color: #ffffff;
  font-size: 34px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-accent {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 35px;
  background: linear-gradient(90deg, var(--blue-hover), rgba(21, 101, 216, 0));
}

.footer-column p {
  max-width: 230px;
  font-size: 17px;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: pre-line;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--black);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

#about-image { height: 100%;}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 84px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 40px;
  box-shadow:
    0 18px 34px rgba(37, 211, 102, 0.28),
    0 8px 18px rgba(31, 41, 51, 0.18);
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: transform, box-shadow;
  animation: whatsappAttention 4.6s ease-in-out 1.5s infinite;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.22s ease;
}

.floating-whatsapp:hover {
  background: #20c35c;
  transform: translateY(-5px) scale(1.035);
  box-shadow:
    0 22px 42px rgba(37, 211, 102, 0.34),
    0 12px 24px rgba(31, 41, 51, 0.2);
  animation: none;
  opacity: 1;
}

.floating-whatsapp i {
  line-height: 1;
}

@keyframes whatsappAttention {
  0%,
  58%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 18px 34px rgba(37, 211, 102, 0.28),
      0 8px 18px rgba(31, 41, 51, 0.18),
      0 0 0 0 rgba(37, 211, 102, 0);
  }

  8% {
    transform: translateY(-4px) scale(1.035);
    box-shadow:
      0 18px 34px rgba(37, 211, 102, 0.28),
      0 8px 18px rgba(31, 41, 51, 0.18),
      0 0 0 10px rgba(37, 211, 102, 0.16);
  }

  14% {
    transform: translateY(1px) scale(0.995);
    box-shadow:
      0 18px 34px rgba(37, 211, 102, 0.28),
      0 8px 18px rgba(31, 41, 51, 0.18),
      0 0 0 16px rgba(37, 211, 102, 0.08);
  }

  22% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 18px 34px rgba(37, 211, 102, 0.28),
      0 8px 18px rgba(31, 41, 51, 0.18),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp {
    opacity: 1;
    transform: none;
    animation: none;
    transition: background 0.18s ease, box-shadow 0.18s ease;
    will-change: auto;
  }

  .floating-whatsapp:hover {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .payment {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.88fr);
    gap: 34px;
    width: calc(100% - 64px);
    padding: 42px 34px;
  }

  .payment-side {
    padding-left: 30px;
  }

  .footer-inner {
    width: calc(100% - 64px);
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 0;
  }

  .footer-column,
  .footer-column:nth-child(odd) {
    border-left: 0;
    padding: 0 34px 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-column:nth-child(even) {
    padding-left: 34px;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-column:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-column p {
    max-width: 100%;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 120px 1fr auto;
    padding-inline: 24px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 6px;
    background: var(--gray-logo);
    color: var(--black);
    font-size: 28px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    background: var(--white);
    box-shadow: 0 15px 22px rgba(0, 0, 0, 0.1);
  }

  

  .main-nav.is-open {
    display: flex;
  }

  .whatsapp-button {
    display: none;
  }

  .whatsapp-button-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  }

  .features,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(3) {
    border-left: 0;
  }

  .payment,
  .about {
    grid-template-columns: 1fr;
  }

  .payment {
    gap: 30px;
    width: calc(100% - 40px);
    margin-bottom: 56px;
    padding: 38px 30px;
  }

  .about {
    width: calc(100% - 40px);
    gap: 24px;
    margin-bottom: 62px;
  }

  .director-about {
    grid-template-columns: 1fr;
    gap: 28px;
    width: calc(100% - 40px);
    margin-bottom: 62px;
  }

  .director-about-profile {
    max-width: 620px;
    margin: 0 auto;
  }

  .services {
    width: calc(100% - 40px);
  }

  .payment-side {
    padding-left: 0;
    padding-top: 30px;
    border-left: 0;
    border-top: 1px solid rgba(217, 226, 239, 0.95);
  }

  .payment-side-visual {
    width: min(100%, 260px);
    margin: 0 auto 34px;
  }

  .services-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-copy {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .services-visual {
    min-height: 520px;
  }

 

  .service-card {
    min-height: 450px;
  }

  .about-copy {
    padding-left: 0;
  }

  .footer-inner {
    width: calc(100% - 48px);
    gap: 52px;
    padding: 68px 0 36px;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 0;
  }

  .footer-column,
  .footer-column:nth-child(odd) {
    border-left: 0;
    padding: 0 28px 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-column:nth-child(even) {
    padding-left: 28px;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-column:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-brand-block p {
    max-width: 480px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 80px;
  }
}

@media (max-width: 860px) {
  .payment {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
    border-radius: 26px;
  }

  .payment-content {
    padding-right: 0;
  }

  .payment-mail-card {
    width: 100%;
  }

  .payment-side {
    gap: 18px;
    padding-top: 28px;
  }

  .payment-side-visual {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .payment-button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 92px 1fr;
    min-height: 84px;
    padding: 10px 16px;
  }

  .brand,
  .brand img {
    /* width: 86px;
    height: 62px; */
    min-height: 62px;
    /* width: 130px; */
  }

  .whatsapp-button-mobile {
    min-height: 46px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-bg::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.651), rgba(0, 0, 0, 0.651));
  }

  .hero-content {
    width: 100%;
    padding: 120px 22px 120px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 36px 22px 42px;
  }

  .feature-item {
    min-height: auto;
    padding: 18px 10px;
    border-left: 0 !important;
    border-top: 1px solid #d9dfe6;
  }

  .feature-item:first-child {
    border-top: 0;
  }

  .payment {
    width: calc(100% - 24px);
    margin-bottom: 48px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .payment-content h2 br {
    display: none;
  }

  .payment-mail-card {
    flex-direction: row;
    align-items: center;
  }

  .payment-mail-icon {
    width: 64px;
  }

  .payment-rule {
    margin: 26px 0 28px;
  }

  .payment-side {
    text-align: left;
  }

  .payment-side-visual {
    width: min(100%, 220px);
    margin: 0 auto 26px;
  }

  .payment-button {
    min-height: 62px;
  }

  .about {
    width: calc(100% - 24px);
    margin-bottom: 52px;
  }

  .director-about {
    width: calc(100% - 24px);
    gap: 24px;
    margin-bottom: 82px;
  }

  .director-about-eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .director-about h2 {
     font-size: clamp(2.1rem, 4vw, 4rem);
     color:var(--graphite)
  }

  .director-about-rule {
    width: 58px;
    margin: 24px 0 26px;
  }

  .director-about-text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .director-about-quote {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
    padding: 22px 20px;
  }

  .director-about-quote span {
    font-size: 4rem;
    line-height: 0.65;
  }

  .director-about-quote blockquote {
    margin-top: 0;
    font-size: 1rem;
  }

  .director-about-profile img {
    aspect-ratio: 1 / 0.82;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
    height: 420px;
  }

  .experience-card {
    gap: 14px;
  }

  .experience-card i {
    font-size: 58px;
  }

  .services {
    width: calc(100% - 24px);
    margin-bottom: 44px;
  }

  .services .eyebrow {
    margin-bottom: 12px;
  }

  .services h2,
  .services h2 span,
  .services-intro {
    text-align: center;
  }

  .services-rule {
    margin: 22px auto 20px;
  }

  .services-visual {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }


  .services-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: auto 164px;
    min-height: auto;
  }

  .service-card-copy {
    padding: 26px 20px 22px;
  }

  .service-icon-shell {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-card i {
    font-size: 36px;
  }

  .service-card h3 {
    min-height: auto;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .service-card-image {
    height: 164px;
  }

  .footer-inner {
    width: calc(100% - 32px);
    gap: 44px;
    padding: 56px 0 32px;
  }

  .footer-brand-block {
    gap: 24px;
  }

  .footer-brand-block img {
    width: 124px;
    height: 98px;
  }

  .footer-brand-block p {
    max-width: 100%;
    font-size: 16px;
  }

  .footer-contact-grid {
    gap: 0;
  }

  .footer-column,
  .footer-column:nth-child(odd),
  .footer-column:nth-child(even),
  .footer-column:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 0 0 34px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-column + .footer-column {
    padding-top: 34px;
  }

  .footer-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
  }

  .footer-icon i {
    font-size: 30px;
  }

  .footer-accent {
    margin-bottom: 22px;
  }

  .footer-column p {
    max-width: 100%;
    font-size: 16px;
  }

  .copyright {
    margin-top: 10px;
    padding-top: 28px;
    font-size: 14px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 76px;
  }
}

@media (max-width: 520px) {
  .payment-content .eyebrow {
    margin-bottom: 16px;
    letter-spacing: 0.16em;
  }

  .payment-rule {
    margin: 22px 0;
  }

  .payment-mail-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-mail-text strong {
    font-size: 1.08rem;
  }
}
