:root {
  --bg: #f6f1ea;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --surface-soft: #efe7dc;
  --text: #1c2b36;
  --muted: #5f6c77;
  --line: rgba(28, 43, 54, 0.12);
  --line-strong: rgba(28, 43, 54, 0.2);
  --primary: #163754;
  --primary-deep: #11293d;
  --accent: #b98753;
  --accent-soft: #ead8c3;
  --shadow-lg: 0 32px 80px rgba(17, 41, 61, 0.14);
  --shadow-md: 0 20px 44px rgba(17, 41, 61, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 92px;
  --section-space: clamp(78px, 10vw, 128px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 216, 195, 0.7), transparent 36%),
    radial-gradient(circle at 85% 10%, rgba(185, 135, 83, 0.14), transparent 20%),
    linear-gradient(180deg, #fbf8f4 0%, var(--bg) 34%, #f4ede4 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(185, 135, 83, 0.25);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.72));
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(28, 43, 54, 0.05);
}

.section-accent {
  background:
    radial-gradient(circle at 20% 20%, rgba(185, 135, 83, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 52, 79, 0.98), rgba(10, 29, 45, 0.98));
  color: #f5f0e8;
}

.section-accent .eyebrow,
.section-accent .section-heading p,
.section-accent .check-list,
.section-accent p {
  color: rgba(245, 240, 232, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

h4 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #a37240 100%);
  box-shadow: 0 18px 34px rgba(163, 114, 64, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 24px 40px rgba(163, 114, 64, 0.3);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(22, 55, 84, 0.18);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(22, 55, 84, 0.28);
}

.btn-sm {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(248, 243, 236, 0.82);
  border-bottom: 1px solid rgba(28, 43, 54, 0.08);
  box-shadow: 0 18px 40px rgba(17, 41, 61, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 172px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(22, 55, 84, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}

.nav-toggle span {
  position: absolute;
  left: 16px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 19px;
}

.nav-toggle span:nth-child(2) {
  top: 26px;
}

.nav-toggle span:nth-child(3) {
  top: 33px;
}

body.nav-open .nav-toggle span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

.hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
  min-height: clamp(620px, 82vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #0a1722;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slideshow {
  background-color: #0d1f30;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFadeZoom 18s infinite ease-in-out;
  filter: saturate(0.95) brightness(0.78);
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes slideFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  15% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(185, 135, 83, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(7, 19, 30, 0.8), rgba(7, 19, 30, 0.5));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-main {
  max-width: 860px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow,
.hero h1,
.hero p {
  color: #f6efe6;
}

.hero h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .eyebrow {
  color: #f0c796;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-lead {
  max-width: 680px;
  font-size: 1.15rem;
  color: rgba(246, 239, 230, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.about-grid,
.why-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 34px;
}

.about-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.media-shell {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 55, 84, 0.1), rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow-lg);
}

.media-shell video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 22px;
  background: #0d1f30;
  object-fit: cover;
}

.media-shell img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 22px;
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  z-index: 2;
  padding-left: 6px;
}

.custom-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ffffff;
}

.video-shell.is-playing .custom-play-btn {
  opacity: 0;
  pointer-events: none;
}

.about-copy h3 {
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(17, 41, 61, 0.07);
}

.contact-card i,
.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(185, 135, 83, 0.14);
  color: var(--accent);
  font-size: 1.5rem;
}

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

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

.testimonial-card,
.insight-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(17, 41, 61, 0.07);
}

.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(185, 135, 83, 0.18), rgba(185, 135, 83, 0.05));
  color: var(--accent);
  font-size: 2.2rem;
}

.service-card {
  height: 100%;
  padding: 44px 44px 40px;
  border: 1px solid rgba(22, 55, 84, 0.08);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(250,245,238,0.7));
  box-shadow: 0 18px 44px rgba(17, 41, 61, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(17, 41, 61, 0.1);
  background: #ffffff;
}

.service-card h3,
.testimonial-card strong,
.insight-card h3,
.contact-card h3 {
  font-family: "Manrope", sans-serif;
}

.service-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.45rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  margin-top: 56px;
  padding: 46px 0 0;
  border-top: 1px solid rgba(22, 55, 84, 0.08);
}

.process-content h3 {
  margin-bottom: 20px;
}

.process-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-media {
  position: relative;
}

.process-media .media-shell {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(17, 41, 61, 0.12);
}

.process-media .media-shell img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.insight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(185, 135, 83, 0.16);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.why-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.note-link,
.note-phone {
  color: #2ad06b;
  font-weight: 700;
}

.note-link:hover,
.note-phone:hover {
  color: #4be081;
  text-decoration: underline;
}

.text-orange {
  color: #ea580c !important;
  font-weight: 800;
}

.why-cards {
  display: grid;
  gap: 20px;
}

.insight-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.insight-card h3,
.insight-card p {
  color: #f5f0e8;
}

.insight-number {
  background: rgba(255, 255, 255, 0.14);
  color: #f3cfaa;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #dfaf71;
  font-size: 1.2rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(22, 55, 84, 0.08);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 245, 238, 0.7));
  box-shadow: 0 10px 30px rgba(17, 41, 61, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(17, 41, 61, 0.08);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 1.12rem;
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 24px 22px;
  overflow: hidden;
}

.cta-section {
  padding-top: calc(var(--section-space) - 10px);
  padding-bottom: calc(var(--section-space) - 10px);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at left top, rgba(234, 216, 195, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(17, 41, 61, 0.98), rgba(22, 55, 84, 0.94));
  color: #f6efe6;
  box-shadow: var(--shadow-lg);
}

.cta-panel h2,
.cta-panel p {
  color: #f6efe6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.cta-panel .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form-wrap {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.contact-map {
  margin-top: 56px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  line-height: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field label {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(22, 55, 84, 0.14);
  border-radius: 16px;
  background: rgba(249, 246, 241, 0.76);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(185, 135, 83, 0.7);
  box-shadow: 0 0 0 4px rgba(185, 135, 83, 0.12);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 170px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
}

.form-footer p {
  margin: 0;
  max-width: 420px;
  font-size: 0.92rem;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0e4c3e;
  background: rgba(41, 151, 126, 0.12);
  border: 1px solid rgba(41, 151, 126, 0.24);
}

.form-status.is-error {
  color: #7c2b23;
  background: rgba(194, 86, 68, 0.12);
  border: 1px solid rgba(194, 86, 68, 0.24);
}

.site-footer {
  padding: 36px 0 28px;
  background: #10263a;
  color: rgba(245, 240, 232, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 32px;
  padding-bottom: 26px;
}

.footer-brand-mark .brand-copy strong,
.site-footer h3,
.site-footer a,
.footer-bottom p {
  color: #f5f0e8;
}

.site-footer .brand img {
  width: 160px;
}

.site-footer .brand-copy small,
.site-footer p,
.site-footer span {
  color: rgba(245, 240, 232, 0.72);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
}


.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.16s;
}

.reveal.delay-3 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 24px;
}

.team-img-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.team-info span {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 700;
  opacity: 0.8;
}

/* Floating Chat Widget */
.floating-chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.telegram-btn {
  background: linear-gradient(135deg, #00A3FF, #0077b5);
}

/* Portfolio Gallery Marquee */
.section-gallery {
  padding: 60px 0;
  overflow: hidden;
  background: var(--bg);
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  gap: 20px;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee-scroll 55s linear infinite;
  min-width: 100%;
  flex-shrink: 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track img {
  height: 380px;
  width: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.marquee-track img:hover {
  transform: scale(1.03);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

@media (max-width: 1180px) {
  .hero-signals,
  .services-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout,
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid,
  .cta-panel,
  .process-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 1180px);
    --header-height: 82px;
  }

  .site-header .brand-copy {
    display: none;
  }

  .site-header .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(22, 55, 84, 0.12);
    border-radius: 24px;
    background: rgba(252, 248, 243, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: rgba(22, 55, 84, 0.06);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero-main {
    padding: 34px 30px;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }



  .about-grid,
  .why-grid,
  .contact-grid,
  .faq-grid,
  .testimonials-grid,
  .team-grid,
  .footer-grid,
  .process-feature {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 26px;
  }
}

@media (max-width: 720px) {
  .services-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cta-panel,
  .contact-form-wrap {
    padding: 24px;
  }

  .cta-actions,
  .hero-actions,
  .form-footer,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer p {
    max-width: none;
  }

  .testimonial-card,
  .service-card,
  .insight-card {
    padding: 24px;
  }

  .marquee-track img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding: 14px 0;
  }

  .site-header .brand img {
    width: 132px;
  }

  .hero {
    min-height: auto;
  }

  .hero-main {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .faq-question,
  .faq-answer p,
  .contact-form-wrap,
  .cta-panel {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
