/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:      #0a1628;
  --dark:       #0d1a2d;
  --gray:       #151921;
  --gray-mid:   #1e2530;
  --gray-light: #2a3340;
  --white:      #FFFFFF;
  --gray-text:  #9aa0aa;
  --orange:     #F05A29;
  --orange-h:   #d44d20;
  --red:        #E63B3B;
  --border:     rgba(255, 255, 255, 0.07);
  --font:       'Secular One', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  direction: rtl;
  font-size: 16px;
  line-height: 1.7;
  padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.03em;
}

p {
  color: var(--white);
  margin-bottom: 1.1rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero .btn-whatsapp {
  font-size: 1.35rem;
  padding: 1.3rem 4rem;
  letter-spacing: 0.08em;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background-color: var(--orange-h);
  border-color: var(--orange-h);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-whatsapp {
  background-color: #1DA851;
  color: var(--white);
  border: 2px solid #1DA851;
  border-radius: 50px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.btn-whatsapp:hover {
  background-color: #189845;
  border-color: #189845;
}

/* ===========================
   SECTION LABEL
=========================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 0.3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  line-height: 1.0;
}

.section-title.centered {
  text-align: center;
}

/* ===========================
   SOCIAL ICONS (shared)
=========================== */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

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

.social-btn.spotify   { background-color: #1DB954; color: #fff; }
.social-btn.whatsapp  { background-color: #25D366; color: #fff; }
.social-btn.youtube   { background-color: #FF0000; color: #fff; }
.social-btn.facebook  { background-color: #1877F2; color: #fff; }
.social-btn.instagram { background-color: #E1306C; color: #fff; }
.social-btn.linkedin  { background-color: #0A66C2; color: #fff; }

/* ===========================
   TOP SOCIAL BAR
=========================== */
/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(10, 22, 40, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}


.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links a {
  display: block;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-cta {
  background-color: #15703a !important;
  color: var(--white) !important;
  border: 1px solid #15703a;
  padding: 0.4rem 1.4rem;
  border-radius: 4px;
  margin-right: 1.1rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #189845 !important;
  border-color: #189845 !important;
  color: var(--white) !important;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a .nav-chevron {
  font-size: 0.55rem;
  margin-right: 0.3rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover > a .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  background-color: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-left: none !important;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(240, 90, 41, 0.15);
  color: var(--orange);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* text column — RIGHT side in RTL (first in DOM) */
.hero-text-col {
  flex: 0 0 50%;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem 5rem 2rem;
}

/* image column — LEFT side in RTL (second in DOM) */
.hero-image-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.1);
  display: block;
}

/* blend gradient: image fades into the dark text column on the right */
.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 30%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.6rem;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 2rem;
  white-space: nowrap;
}

.hero-title-sub {
  display: block;
  color: var(--white);
  font-weight: 300;
  font-size: 0.35em;
  margin-top: 0.5rem;
  letter-spacing: 0.22em;
}

.hero-text {
  font-size: 1.45rem;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* ===========================
   PHOTO SHOWCASE
=========================== */
.showcase {
  background-color: var(--black);
  padding-bottom: 2rem;
}

.showcase-swiper {
  width: 100%;
  padding-bottom: 40px;
}

.showcase-swiper .swiper-slide {
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.85);
}

.showcase-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.showcase-swiper .swiper-slide-prev,
.showcase-swiper .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.9);
}

.showcase-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
  display: block;
}

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

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,13,18,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.showcase-card:hover .showcase-card-overlay {
  background: rgba(10,13,18,0.6);
}

.showcase-card-overlay span {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  text-align: center;
}

/* Swiper overrides */
.showcase-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.4;
}
.showcase-swiper .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
}


/* ===========================
   ABOUT
=========================== */
.about {
  padding: 120px 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 1.5rem;
}

.about-text .section-label {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.85;
}

.about-closing {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about-red {
  color: #FF4C4C;
  font-weight: 700;
  font-size: 1.2rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 420px;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}

.image-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  background-color: var(--gray-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.85rem;
  border-radius: 2px;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 120px 0;
  background-color: var(--black);
}

.services-title-only {
  padding: 80px 0 40px;
}

.services-title-only .section-title {
  margin-bottom: 0;
}

.services-cards-only {
  padding: 60px 0 120px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background-color: var(--orange);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.service-card p {
  font-size: 0.98rem;
  color: #000000;
  flex: 1;
  line-height: 1.75;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-card .btn-outline {
  color: #1a1a1a;
  border-color: #1a1a1a;
  border-width: 2px;
  align-self: center;
}
.service-card .btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===========================
   LEGAL
=========================== */
.legal {
  position: relative;
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.legal-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.legal-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.18);
}

.legal-media-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 22, 40, 0.65);
}

.legal-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-title-centered {
  text-align: center;
  width: 100%;
  margin-bottom: 3rem;
}

.legal-content {
  max-width: 720px;
  text-align: center;
}

.legal-intro {
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 500;
}

.legal-list {
  list-style: none;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.legal-list li {
  color: var(--white);
  padding: 0.5rem 0;
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
}

.legal-list li::before {
  display: none;
}

.legal-content p {
  font-size: 1.35rem;
  line-height: 1.8;
}

.legal-btn {
  font-size: 1.15rem !important;
  padding: 1.1rem 3.5rem !important;
  background-color: #c44419 !important;
  border-color: #c44419 !important;
}

.legal-btn:hover {
  background-color: #a83914 !important;
  border-color: #a83914 !important;
}

.legal-content .btn {
  margin-top: 1.5rem;
}

/* ===========================
   PROJECT
=========================== */
.project {
  padding: 120px 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.project-visuals {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.project-logo {
  width: 420px;
  height: 420px;
  object-fit: contain;
  border-radius: 50%;
}

.project-scene {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.8;
}

.project .section-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.project-title {
  text-align: center;
  margin-bottom: 3rem;
}

.project-body {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
}

.project-body p {
  margin-bottom: 1.4rem;
}

.project-body p:last-child {
  margin-bottom: 0;
}

.project-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.project-card-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}

.project-card-col .podcast-links {
  align-self: center;
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
  display: block;
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 18, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.project-card:hover .project-card-overlay {
  background: rgba(10, 13, 18, 0.6);
}

.project-card-overlay span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.project-card-overlay span i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.podcast-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
  direction: rtl;
}

.podcast-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.podcast-platform span {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 500;
}

.podcast-platform i {
  font-size: 2.4rem;
  background-color: #ffffff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.podcast-icon-spotify { color: #1DB954; }
.podcast-icon-youtube { color: #FF0000; }
.podcast-icon-apple { color: #A855F7; }

.podcast-platform:hover i {
  transform: scale(1.15);
  filter: brightness(1.3);
}

.podcast-platform:hover span {
  color: var(--white);
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 120px 0;
  background-color: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: clamp(4rem, 8vw, 7rem) !important;
  margin-bottom: 2rem !important;
}

.contact-sub {
  font-size: 1.6rem;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.8;
}

.contact-btn {
  font-size: 1.4rem !important;
  padding: 1.3rem 4rem !important;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 3.5rem 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.72rem;
  color: #9aa0aa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #9aa0aa;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.7rem;
  color: #8a8f99;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--orange);
}

.footer-sep {
  color: #8a8f99;
  font-size: 0.7rem;
}

/* ===========================
   HAMBURGER BUTTON
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   TABLET (max 1024px)
=========================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 2rem;
  }
}

/* ===========================
   MOBILE (max 768px)
=========================== */
@media (max-width: 768px) {

  html, body { overflow-x: hidden; }
  .social-btn { width: 28px; height: 28px; font-size: 0.85rem; }
  .social-icons { gap: 0.4rem; }

  .nav { justify-content: center; gap: 0; position: relative; }
  .hamburger { display: flex; position: absolute; right: 1.5rem; }
  .nav-socials { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    background-color: #0a1628;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-links > li { text-align: center; display: block; }
  .nav-links > li > a { display: block; text-align: center; }

  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
  }
  .dropdown-menu a {
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-text, #9aa0aa);
    display: block;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    min-height: 100svh;
  }

  .hero-text-col {
    flex: none;
    padding: 3rem 1.5rem;
  }

  .hero-image-col {
    flex: none;
    height: 90vw;
    min-height: 340px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title { font-size: clamp(3.2rem, 14vw, 5rem); white-space: normal; }
  .hero-tagline { font-size: 1.05rem; white-space: normal; }
  .hero-text { font-size: 1.1rem; }
  .hero .btn-whatsapp { font-size: 1.05rem; padding: 1rem 2.5rem; }

  .showcase-swiper .swiper-slide { width: 300px; height: 240px; }
  .showcase-card-overlay span { font-size: 2rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image { order: -1; }

  .about-photo {
    max-width: 100%;
    height: 380px;
  }

  .services-grid { grid-template-columns: 1fr; gap: 0; }

  .section-title { font-size: 1.8rem; }

  .legal-inner { grid-template-columns: 1fr; }
  .legal-bullet-img { display: none; }

  .project-grid { grid-template-columns: 1fr; }
  .project-visuals {
    flex-direction: row;
    align-items: center;
    position: static;
  }
  .project-logo { width: 180px; height: 180px; }
  .project-scene { flex: 1; height: 140px; }

  .project-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .project-card { height: 220px; }
  .project-card-overlay span { font-size: 1.6rem; }

  .about,
  .services,
  .legal,
  .project,
  .contact { padding: 80px 0; }

  .container { padding: 0 1.25rem; }
}
