@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --color-red: #d91e18;
  --color-green: #078b35;
  --color-gold: #f2b705;
  --color-black: #101417;
  --color-ink: #1d252c;
  --color-muted: #66717c;
  --color-line: #e7ecef;
  --color-soft: #f6f8f7;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(16, 20, 23, 0.1);
  --shadow-premium: 0 24px 70px rgba(16, 20, 23, 0.18);
  --radius: 8px;
  --container: 1160px;
  --font: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-heading: "Plus Jakarta Sans", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.top-strip {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(9, 12, 15, 0.78);
  color: var(--color-white);
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}

.site-header {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 55;
  background: rgba(16, 20, 23, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: top 0.32s ease, background 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

body.is-scrolled .top-strip {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

body.is-scrolled .site-header {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(231, 236, 239, 0.9);
  box-shadow: 0 14px 35px rgba(16, 20, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
  transition: min-height 0.32s ease;
}

body.is-scrolled .header-inner {
  min-height: 68px;
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
  transition: width 0.32s ease, height 0.32s ease, filter 0.32s ease;
}

body.is-scrolled .brand img {
  width: 50px;
  height: 50px;
  filter: none;
}

.brand strong {
  display: block;
  line-height: 1.15;
  color: var(--color-white);
  transition: color 0.32s ease;
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  transition: color 0.32s ease;
}

body.is-scrolled .brand strong {
  color: var(--color-black);
}

body.is-scrolled .brand span {
  color: var(--color-muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
  transition: background 0.25s ease;
}

body.is-scrolled .nav-toggle {
  background: var(--color-white);
  border-color: var(--color-line);
}

body.is-scrolled .nav-toggle span,
body.is-scrolled .nav-toggle::before,
body.is-scrolled .nav-toggle::after {
  background: var(--color-black);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease;
}

body.is-scrolled .primary-nav a {
  color: var(--color-ink);
}

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

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--color-gold);
}

body.is-scrolled .primary-nav a:hover,
body.is-scrolled .primary-nav a[aria-current="page"] {
  color: var(--color-red);
}

.primary-nav a:not(.btn):hover::after,
.primary-nav a[aria-current="page"]:not(.btn)::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 20, 23, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 20, 23, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-red), #b81712);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

body.is-scrolled .primary-nav .btn-outline,
.section .btn-outline,
.intranet-card .btn-outline {
  border-color: var(--color-black);
  color: var(--color-black);
  background: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #ffd45a);
  color: var(--color-black);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: block;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-black);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
  z-index: -1;
}

.hero-slider {
  position: relative;
  min-height: inherit;
}

.hero-track {
  display: flex;
  min-height: inherit;
  transform: translateX(var(--slider-offset, 0%));
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: inherit;
  display: grid;
  align-items: center;
  background-image:
    radial-gradient(circle at 78% 26%, rgba(242, 183, 5, 0.22), transparent 28%),
    linear-gradient(105deg, rgba(9, 12, 15, 0.92) 0%, rgba(16, 20, 23, 0.72) 48%, rgba(7, 139, 53, 0.42) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-slide .container {
  padding-block: clamp(150px, 16vw, 210px) 120px;
}

.hero-content {
  max-width: 900px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--color-gold);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  line-height: 1.12;
  color: var(--color-black);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  color: var(--color-white);
  font-size: clamp(2.8rem, 6.8vw, 5.8rem);
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-controls {
  position: absolute;
  right: min(4vw, 42px);
  bottom: 38px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.5rem;
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--color-gold);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding-block: clamp(72px, 9vw, 112px);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(246, 248, 247, 0.8), rgba(255, 255, 255, 0.92)),
    var(--color-soft);
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
}

.section-dark .section-heading p {
  color: #c4ccd3;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 68px);
  align-items: center;
}

.feature-panel {
  padding: clamp(26px, 4vw, 38px);
  border-left: 6px solid var(--color-green);
  background: var(--color-white);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius);
  position: relative;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 58px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-green));
  border-radius: 999px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  color: var(--color-red);
  font-size: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 12px 24px rgba(16, 20, 23, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 183, 5, 0.55);
  box-shadow: var(--shadow-premium);
}

.card-content {
  padding: 22px;
}

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

.card:hover img {
  transform: scale(1.045);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--color-black);
  background: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  background: var(--color-line);
  box-shadow: 0 10px 24px rgba(16, 20, 23, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.28s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-item strong {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(16, 20, 23, 0.82);
  color: var(--color-white);
  border-radius: var(--radius);
}

.page-hero {
  min-height: 54vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 183, 5, 0.2), transparent 30%),
    linear-gradient(105deg, rgba(9, 12, 15, 0.94), rgba(16, 20, 23, 0.58)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--color-white);
}

.page-hero .container {
  padding-block: 150px 82px;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value {
  padding: 24px;
  border-top: 5px solid var(--color-red);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.value:nth-child(2) {
  border-top-color: var(--color-green);
}

.value:nth-child(3) {
  border-top-color: var(--color-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-box,
.form-card {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-box:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.admission-section {
  background:
    linear-gradient(135deg, rgba(9, 12, 15, 0.94), rgba(16, 20, 23, 0.78)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--color-white);
}

.admission-section h2,
.admission-section h3 {
  color: var(--color-white);
}

.admission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.admission-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-ink);
  box-shadow: var(--shadow-premium);
}

.admission-card h3 {
  color: var(--color-black);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.checkbox-field input {
  width: auto;
  margin-top: 5px;
}

.checkbox-field a {
  color: var(--color-red);
  font-weight: 800;
}

.work-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(242, 183, 5, 0.18), transparent 28%),
    linear-gradient(135deg, #f8faf9, #ffffff);
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(7, 139, 53, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  font-weight: 700;
}

.form-status[data-type="error"] {
  color: var(--color-red);
}

.form-status[data-type="success"] {
  color: var(--color-green);
}

.map {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 183, 5, 0.2), transparent 28%),
    linear-gradient(135deg, #090c0f, #172025 55%, #0b2f1a);
  color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
}

.cta h2 {
  color: var(--color-white);
}

.site-footer {
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 30, 24, 0.16), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(7, 139, 53, 0.18), transparent 26%),
    #090c0f;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr 1.35fr;
  gap: 28px;
  padding-block: 64px;
}

.footer-logo {
  width: 88px;
  margin-bottom: 14px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-weight: 900;
}

.footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-list a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 900;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: var(--color-red);
  border-color: var(--color-red);
}

.footer-map {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: var(--radius);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 18px;
  color: #b8c0c8;
  text-align: center;
}

.intranet-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(217, 30, 24, 0.92), rgba(7, 139, 53, 0.88)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.intranet-card {
  width: min(100%, 680px);
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.intranet-card img {
  width: 110px;
  margin: 0 auto 18px;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 12px;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(16, 20, 23, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.floating-action:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 46px rgba(16, 20, 23, 0.3);
}

.floating-action.whatsapp {
  background: linear-gradient(135deg, #25d366, var(--color-green));
}

.floating-action.contact {
  background: linear-gradient(135deg, var(--color-red), var(--color-gold));
  color: var(--color-black);
}

.privacy-content {
  max-width: 860px;
}

.privacy-content h2 {
  margin-top: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@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;
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    inset: calc(100% + 10px) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav a,
  body.is-scrolled .primary-nav a {
    color: var(--color-ink);
  }

  .primary-nav a:hover,
  .primary-nav a[aria-current="page"] {
    color: var(--color-red);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .split,
  .contact-grid,
  .admission-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .cards,
  .values {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip {
    display: none;
  }

  .site-header,
  body.is-scrolled .site-header {
    top: 0;
  }

  .top-strip .container {
    flex-direction: column;
    gap: 2px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-slide,
  .hero-slider,
  .hero-track {
    min-height: 760px;
  }

  .hero-slide .container,
  .page-hero .container {
    padding-block: 118px 72px;
  }

  .hero-controls {
    right: 14px;
    bottom: 28px;
  }

  .hero-dots {
    bottom: 34px;
  }

  .cards,
  .values,
  .stats,
  .gallery-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-action {
    width: 48px;
    height: 48px;
    font-size: 0.88rem;
  }
}
