/* ========================================
   ledtvustasi.com - CSS
   Performance-First | Mobile-First | Modern
   ======================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --color-primary: #0099E5;
  --color-primary-dark: #007BBD;
  --color-primary-light: #E8F4FD;
  --color-dark: #1B1B2F;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F7FA;
  --color-border: #E2E8F0;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1rem;
  --header-height: 72px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 50px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Transition */
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.section__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-light);
  max-width: 600px;
  margin-inline: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn svg {
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background-color: #fff;
  color: var(--color-primary);
}

.btn--white:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
}

.btn--whatsapp-alt {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--whatsapp-alt:hover {
  background-color: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--header-height);
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-icon {
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.header__tagline {
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Navigation */
.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.header__link:hover {
  color: var(--color-primary);
}

.header__link:hover::after {
  transform: scaleX(1);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cta {
  display: none;
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.header__hamburger:hover {
  background-color: var(--color-bg-alt);
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.header__nav--mobile-open {
  display: flex;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background-color: var(--color-bg);
  z-index: 999;
  padding: var(--space-xl);
  animation: fadeIn 0.2s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.header__nav--mobile-open .header__menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.header__nav--mobile-open .header__link {
  display: block;
  width: 100%;
  padding: var(--space-md) 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-border);
}

.header__nav--mobile-open .header__link::after {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Body lock when menu open */
body.menu-open {
  overflow: hidden;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.hero__highlight {
  color: var(--color-primary);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-light);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: stretch;
  margin-bottom: var(--space-xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.hero__trust-item svg {
  flex-shrink: 0;
}

.hero__visual {
  display: none;
  justify-content: center;
}

.hero__image-wrapper {
  max-width: 400px;
  width: 100%;
}

.hero__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
  min-height: 44px;
}

.service-card__link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-sm);
}

/* ===== WHY US ===== */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.why-us__card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-us__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-us__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
}

.why-us__icon svg {
  width: 100%;
  height: 100%;
}

.why-us__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.why-us__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.process__step {
  text-align: center;
  padding: var(--space-xl);
  width: 100%;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.process__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.process__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.process__connector {
  width: 2px;
  height: 30px;
  background: var(--color-border);
}

/* ===== BRANDS ===== */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all var(--transition);
}

.brands__item img {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.brands__item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.brands__item:hover img {
  opacity: 1;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 768px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  list-style: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  position: relative;
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-light);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq__question::after {
  background-image:
    linear-gradient(var(--color-primary), var(--color-primary)),
    linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.faq__item[open] .faq__question::after {
  background-color: var(--color-primary);
  background-image: linear-gradient(#fff, #fff);
  background-size: 12px 2px;
  background-position: center;
  background-repeat: no-repeat;
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__answer {
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact__card:hover {
  background: var(--color-primary-light);
}

.contact__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.contact__card-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.contact__card-content a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}

.contact__card-content a:hover {
  color: var(--color-primary);
}

.contact__card-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact__map {
  min-height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.contact__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
}

.contact__map-placeholder p {
  font-weight: 600;
}

.contact__map-placeholder small {
  font-size: 0.8rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-3xl) 0;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.cta-banner__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  font-weight: 800;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: stretch;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-3xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
  display: block;
  padding: var(--space-xs) 0;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__contact a,
.footer__contact li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
}

.footer__bottom-inner {
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== HIDE FLOATING ELEMENTS WHEN MENU OPEN ===== */
body.menu-open .whatsapp-float,
body.menu-open .mobile-bar {
  display: none;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  padding: var(--space-sm);
  gap: var(--space-sm);
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.mobile-bar__btn--phone {
  background-color: var(--color-primary);
  color: #fff;
}

.mobile-bar__btn--phone:hover {
  background-color: var(--color-primary-dark);
}

.mobile-bar__btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: #fff;
}

.mobile-bar__btn--whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
}

/* Add bottom padding to body for mobile bar */
body {
  padding-bottom: 72px;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.instagram__item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  transition: all var(--transition);
  background: var(--color-light);
}

.instagram__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.instagram__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== RESPONSIVE - TABLET (768px) ===== */
@media (min-width: 768px) {
  :root {
    --container-padding: 1.5rem;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
  }

  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

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

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

  .process__grid {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .process__step {
    max-width: 280px;
    width: auto;
  }

  .process__connector {
    width: 40px;
    height: 2px;
    align-self: center;
    margin-top: -40px;
  }

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

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

  .cta-banner__actions {
    flex-direction: row;
    align-items: center;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__desc {
    max-width: 300px;
  }

  /* Instagram grid - tablet */
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== RESPONSIVE - DESKTOP (1024px) ===== */
@media (min-width: 1024px) {
  :root {
    --container-padding: 2rem;
  }

  /* Header desktop */
  .header__nav {
    display: flex;
  }

  .header__hamburger {
    display: none;
  }

  .header__cta {
    display: inline-flex;
  }

  /* Hero desktop - side by side */
  .hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__subtitle {
    margin-inline: 0;
  }

  .hero__cta-group {
    justify-content: flex-start;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .hero__visual {
    display: flex;
    flex: 0 0 420px;
  }

  /* Services desktop */
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Why us desktop */
  .why-us__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Mobile bar - hidden on desktop */
  .mobile-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .whatsapp-float {
    display: flex;
    bottom: 30px;
    right: 30px;
  }

  /* CTA banner desktop */
  .cta-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Instagram grid - desktop */
  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ===== RESPONSIVE - LARGE (1280px) ===== */
@media (min-width: 1280px) {
  .hero__visual {
    flex: 0 0 480px;
  }
}

/* ===== ACCESSIBILITY ===== */
@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;
  }
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .whatsapp-float,
  .mobile-bar,
  .cta-banner {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .hero {
    padding-top: 0;
    background: none;
  }

  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}