:root {
  --bg: #0f1219;
  --bg-soft: #1a1f2e;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --text: #1a1f2e;
  --text-soft: #718096;
  --text-light: rgba(255, 255, 255, 0.72);
  --white: #ffffff;
  --accent: #f07800;
  --accent-2: #ff9a30;
  --success: #25d366;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 15px;
  --container: 1200px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section,
.contact-section {
  position: relative;
  padding: 88px 0;
}

.section-light {
  background: var(--surface-soft);
}

.section-white {
  background: var(--surface);
}

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

.section-head,
.two-col-head {
  margin-bottom: 56px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.two-col-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(240, 120, 0, 0.28);
  background: rgba(240, 120, 0, 0.08);
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  border-radius: 50px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd1a6;
  border-color: rgba(255, 255, 255, 0.18);
}

h1,
h2,
h3,
h4,
.brand {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.accent {
  color: var(--accent);
}

.center {
  text-align: center;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(15, 18, 25, 0.1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
}
.site-header.scrolled {
  background: rgba(15, 18, 25, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

@media (min-width:1505px) {
  .site-header {
    width: 77%;
    top: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
    background: rgba(15, 18, 25, 0.5);
    border-radius: 100px;
  }
  .site-header.scrolled{
    width: 100%;
    top: 0 !important;
  }
}



.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
}

.brand span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  color: #eeeeee;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #f07800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(240, 120, 0, 0.22);
}

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

.btn-whatsapp {
  background: var(--success);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay,
.contact-bg,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  background-image: linear-gradient(to right , rgba(10, 12, 20, 0.65) 0%, rgba(10, 12, 20, 0.8) 25%, rgba(10, 12, 20, 0.3) 60%, rgba(10, 12, 20, 0.05) 100%);
  /* background: linear-gradient(to bottom, rgba(10, 12, 20, 0.55) 0%, rgba(10, 12, 20, 0.3) 40%, rgba(10, 12, 20, 0.8) 75%, rgba(10, 12, 20, 0.96) 100%); */
}

.hero-top-line {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 64px;
}
@media (min-width:1505px) {
  .hero-content{
    padding-top: calc(var(--header-height) + 88px);
  }
}


.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  /* font-size: clamp(1rem, 2vw, 1.18rem); */
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(15, 18, 25, 0.9);
  border-top: 1px solid rgba(240, 120, 0, 0.25);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-number {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-company-section-head{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 56px;
  gap: 40px ;
}
.about-company-img img{
  width: 170px;
}
.section-head-company{
  margin: 0;
  text-align: start;
}

.about-grid,
.market-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-visual,
.market-image,
.team-image,
.full-image,
.contact-form,
.quote-box,
.icon-grid,
.metric-strip {
  border-radius: 15px;
}

.about-visual {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img,
.market-image img,
.team-image img,
.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual img {
  min-height: 420px;
}

.visual-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  border-radius: 50px;
}

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

.info-card {
  background: var(--surface);
  padding: 24px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.info-card h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 4px;
}

.info-card h3 span {
  font-size: 1rem;
  color: var(--text-soft);
}

.info-card p {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.light-center p,
.section-dark .section-head p,
.section-dark .two-col-head p {
  color: rgba(255, 255, 255, 0.68);
}

.full-image {
  overflow: hidden;
  border: 1px solid rgba(240, 120, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  margin-bottom: 40px;
}

.solution-section{
  position: relative;
}
.solution-img-bg{
  position: absolute;
  top: 0;
  right: 15%;
}
.solution-img-bg img{
  width: 320px;
}
@media (max-width:1252px) {
  .solution-img-bg img{
    width: 250px;
  }
}
@media (max-width:767px) {
  .solution-img-bg img{
    width: 220px;
    opacity: 0.4;
  }
}
.solution-grid,
.brand-grid,
.product-grid {
  display: grid;
  gap: 25px;
}

.solution-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.04);
  border-top: 5px solid var(--accent);
  padding: 30px 28px;
  border-radius: 27px;

}

.solution-card:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
  border-top-color: var(--accent-2);
}

.serial {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 2.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  color: rgba(240, 120, 0, 0.92);
}

.solution-card h3,
.product-body h3,
.case-copy h3,
.case-copy h4,
.contact-form h3,
.team-copy h3,
.market-content h3 {
  text-transform: uppercase;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 0;
}

.brand-section .two-col-head{
  padding-right: 54px;
}
.quote-box {
  background: var(--surface-soft);
  border-left: 4px solid var(--accent);
  padding: 28px 40px 28px 28px;
  position: relative;
}
.quote-box-img-bg{
  position: absolute;
  bottom: 0;
  right: -100px;
}
.quote-box-img-bg img{
  width: 165px;
}

.quote-box blockquote {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.quote-box p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.brand-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}

.feature-card {
  background: var(--surface);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-body {
  padding: 24px;
}

.mini-tag,
.mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-tag {
  background: rgba(240, 120, 0, 0.12);
  color: var(--accent);
  margin-bottom: 10px;
}

.icon-grid {
  background: var(--bg-soft);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 28px;
  margin-bottom: 32px;
}

.icon-grid .iconfont{
    display: block;
    font-size: 35px;
    color: #e3ffee;
}

.icon-grid div {
  text-align: center;
}

.icon-grid strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

.market-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.market-image img {
  min-height: 380px;
}

.market-content h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.stack-list {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.stack-list article {
  background: var(--surface);
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.stack-list strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stack-list p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.team-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--white);
}

.team-copy {
  padding: 48px;
  position: relative;
}
.team-copy-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.team-copy-head-left h3{
  margin-bottom: 0;
}
.team-copy-img-bg{
  /* position: absolute; */
  /* right: 20px; */
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
  width: 110px;
  height: 110px;
  /* border: 2px solid #f07800; */
  box-shadow: rgba(240, 120, 0, 0.25) 0px 0px 20px;
}
.team-copy-img-bg img{
  width: 110px;
}

.team-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.bullet-grid li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.bullet-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.team-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 34px;
}

.product-card,
.case-large,
.case-small {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
}

.product-card {
  aspect-ratio: 4 / 3;
}

.product-card img,
.case-large img,
.case-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img,
.case-large:hover img,
.case-small:hover img {
  transform: scale(1.05);
}

.product-overlay,
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 18, 25, 0.92) 0%, rgba(15, 18, 25, 0.2) 60%, transparent 100%);
}

.product-body,
.case-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.product-body p,
.case-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.product-body h3,
.case-copy h3,
.case-copy h4 {
  margin: 8px 0 4px;
  color: var(--white);
}

.mini-badge {
  color: var(--white);
  background: var(--accent);
}

.mini-badge.red { background: #e53e3e; }
.mini-badge.green { background: #38a169; }
.mini-badge.blue { background: #3182ce; }
.mini-badge.purple { background: #805ad5; }
.mini-badge.orange { background: #dd6b20; }

.case-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.case-large {
  min-height: 500px;
}

.case-stack {
  display: grid;
  gap: 16px;
}

.case-small {
  min-height: 242px;
}

.metric-strip {
  margin-top: 35px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 34px;
  position: relative;
}

.metric-strip div {
  text-align: center;
}

.metric-strip strong {
  display: block;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}
.metric-strip .metric-strip-img-bg{
  position: absolute;
  bottom: 0;
  right: -5%;
}
.metric-strip-img-bg img{
  width: 165px;
}
@media (max-width:618px) {
  .metric-strip-img-bg img{
    width: 120px;
    opacity: 0.3;
  }
}

.contact-section {
  overflow: hidden;
  color: var(--white);
}

.contact-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-overlay {
  background: linear-gradient(135deg, rgba(15, 18, 25, 0.95) 0%, rgba(15, 18, 25, 0.88) 50%, rgba(240, 120, 0, 0.16) 100%);
}

.contact-wrap {
  position: relative;
  z-index: 1;
}

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

.contact-card {
  display: block;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.contact-card.primary {
  background: var(--success);
  border-color: transparent;
}

.contact-card strong,
.contact-form h3,
.site-footer h4 {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 18px;
}

.contact-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 4px;
  padding: 12px 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(240, 120, 0, 0.16);
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer h4 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  min-width: 120px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--success);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.info-card , .solution-card ,.feature-card{
  transition: all .3s ease ;
}
.info-card:hover , .solution-card:hover ,.feature-card:hover{
  transform: translateY(-7px);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .solution-grid,
  .brand-grid,
  .product-grid,
  .icon-grid,
  .metric-strip,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .market-grid,
  .team-box,
  .case-layout,
  .contact-grid,
  .two-col-head {
    grid-template-columns: 1fr;
  }
  .team-box .team-image img , .market-image img{
    min-height: auto;
  }

  .case-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 18, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .stats-grid,
  .cards-2,
  .solution-grid,
  .brand-grid,
  .product-grid,
  .icon-grid,
  .footer-grid,
  .case-stack {
    grid-template-columns: 1fr;
  }
  .metric-strip{
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .team-copy,
  .contact-form {
    padding: 28px 22px;
  }

  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section,
  .contact-section {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-actions,
  .footer-bottom {
    gap: 12px;
  }

  .btn,
  .floating-whatsapp {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    left: 16px;
    bottom: 16px;
    min-width: 0;
  }
}
