/* ========================================
   Star Çelik — Bimos Dişçi Sandalyesi LP
   ======================================== */

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

:root {
  --primary: #2f308c;
  --primary-dark: #232070;
  --primary-light: #f0eef8;
  --secondary: #00a9e8;
  --secondary-light: #e8f6fd;
  --white: #FFFFFF;
  --bg: #f1f2f2;
  --bg-dark: #1a1a2e;
  --text: #333333;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.sc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */

.sc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.sc-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.sc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sc-header__logo img {
  height: 36px;
  width: auto;
}

.sc-header__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-header__badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.6;
}

.sc-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-header__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.sc-header__nav a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.sc-header__nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 8px 24px !important;
}

.sc-header__nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.sc-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.sc-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.sc-header__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.sc-header__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.sc-mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  padding: 16px 24px;
}

.sc-mobile-nav--open {
  display: flex;
}

.sc-mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.sc-mobile-nav a:last-child {
  border-bottom: none;
}

.sc-mobile-nav a:hover {
  color: var(--primary);
}

/* ========================================
   HERO SLIDER
   ======================================== */

.sc-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 72px;
}

.sc-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.sc-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.sc-hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.sc-hero__slide-bg {
  position: absolute;
  inset: 0;
}

.sc-hero__slide-bg--1 {
  background: linear-gradient(135deg, #2f308c 0%, #1a1455 40%, #0d0b2e 100%);
}

.sc-hero__slide-bg--2 {
  background: linear-gradient(135deg, #0a2e4d 0%, #0d1b3e 40%, #2f308c 100%);
}

.sc-hero__slide-bg--3 {
  background: linear-gradient(135deg, #1a0e4a 0%, #2f308c 50%, #00a9e8 100%);
}

.sc-hero__slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0, 169, 232, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(47, 48, 140, 0.2), transparent 60%);
}

.sc-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 0 80px;
}

.sc-hero__tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0, 159, 227, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.sc-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.sc-hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 560px;
}

.sc-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Controls */
.sc-hero__controls {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.sc-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.sc-hero__dot--active {
  background: var(--secondary);
  width: 32px;
  border-radius: 5px;
}

/* Hero Arrows */
.sc-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.sc-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.sc-hero__arrow--prev { left: 24px; }
.sc-hero__arrow--next { right: 24px; }

/* ========================================
   BUTTONS
   ======================================== */

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.sc-btn--primary:hover {
  background: #0089c7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 169, 232, 0.3);
}

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

.sc-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.sc-btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.sc-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.sc-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.sc-section-tag--light {
  color: var(--secondary);
  background: rgba(0, 159, 227, 0.12);
}

.sc-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sc-section-header--light h2 {
  color: var(--white);
}

.sc-section-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.sc-section-header--light p {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   NEDEN BIMOS
   ======================================== */

.sc-why {
  padding: 100px 0;
  background: var(--bg);
}

.sc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sc-why__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
}

.sc-why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 48, 140, 0.12);
}

.sc-why__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sc-why__icon--blue {
  background: var(--secondary-light);
  color: var(--secondary);
}

.sc-why__icon--green {
  background: #ecfdf5;
  color: #059669;
}

.sc-why__icon--amber {
  background: #fffbeb;
  color: #d97706;
}

.sc-why__card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.sc-why__card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
}

/* ========================================
   ÜRÜNLER
   ======================================== */

.sc-products {
  padding: 100px 0;
  background: var(--white);
}

.sc-products__category {
  margin-bottom: 64px;
}

.sc-products__category:last-child {
  margin-bottom: 0;
}

.sc-products__category-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.sc-products__category-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.sc-products__category-badge--purple { background: var(--primary); }
.sc-products__category-badge--blue { background: var(--secondary); }
.sc-products__category-badge--teal { background: #0d9488; }
.sc-products__category-badge--rose { background: #e11d48; }

.sc-products__category-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sc-products__category-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
}

.sc-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sc-products__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.sc-products__card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
}

.sc-products__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 48, 140, 0.12);
}

.sc-products__card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--white);
  min-height: 220px;
}

.sc-products__card-img img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-products__card:hover .sc-products__card-img img {
  transform: scale(1.05);
}

.sc-products__card-body {
  padding: 28px;
}

.sc-products__card-body h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sc-products__card-subtitle {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 12px;
}

.sc-products__card-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
}

/* ========================================
   SERTİFİKALAR
   ======================================== */

.sc-certs {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.sc-certs::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 232, 0.12), transparent 70%);
  pointer-events: none;
}

.sc-certs::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.sc-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.sc-certs__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-slow);
  backdrop-filter: blur(4px);
}

.sc-certs__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.sc-certs__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 169, 232, 0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sc-certs__card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.sc-certs__card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   İLETİŞİM / FORM
   ======================================== */

.sc-contact {
  padding: 100px 0;
  background: var(--bg);
}

.sc-contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sc-contact__info {
  padding-top: 16px;
}

.sc-contact__info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 20px 0 16px;
  letter-spacing: -0.01em;
}

.sc-contact__info > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

.sc-contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sc-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--primary);
}

.sc-contact__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sc-contact__detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.sc-contact__detail span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Form */
.sc-contact__form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.sc-contact__form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}

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

.sc-form__group {
  margin-bottom: 20px;
}

.sc-form__group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.sc-required {
  color: #e11d48;
}

.sc-form__group input,
.sc-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.sc-form__group input:focus,
.sc-form__group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 169, 232, 0.1);
  background: var(--white);
}

.sc-form__group input::placeholder,
.sc-form__group textarea::placeholder {
  color: var(--text-muted);
}

.sc-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.sc-form__group input.sc-error,
.sc-form__group textarea.sc-error {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.sc-form__note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* Form Success */
.sc-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.sc-form__success--visible {
  display: block;
}

.sc-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sc-form__success h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sc-form__success p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ========================================
   FOOTER
   ======================================== */

.sc-footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
}

.sc-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.sc-footer__brand p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 320px;
}

.sc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-footer__links h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.sc-footer__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

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

.sc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.sc-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.sc-footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.sc-footer__credit a:hover {
  color: rgba(255, 255, 255, 0.55);
}

.sc-footer__credit img {
  height: 14px;
  width: auto;
  opacity: 0.4;
  transition: var(--transition);
}

.sc-footer__credit a:hover img {
  opacity: 0.7;
}

/* ========================================
   SECTION CTA
   ======================================== */

.sc-section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   FOOTER CONTACT INFO
   ======================================== */

.sc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
}

.sc-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sc-footer__contact-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.sc-footer__contact-item a {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.sc-footer__contact-item a:hover {
  color: var(--secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .sc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .sc-contact__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sc-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sc-footer__brand {
    grid-column: 1 / -1;
  }

  .sc-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .sc-header__nav {
    display: none;
  }

  .sc-header__badge {
    display: none;
  }

  .sc-header__hamburger {
    display: flex;
  }

  .sc-hero {
    min-height: 500px;
    max-height: 700px;
  }

  .sc-hero__content {
    padding: 0 24px;
  }

  .sc-hero__controls {
    left: 24px;
    bottom: 32px;
  }

  .sc-hero__arrow {
    display: none;
  }

  .sc-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .sc-hero__actions .sc-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .sc-why {
    padding: 64px 0;
  }

  .sc-why__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sc-why__card {
    padding: 28px 24px;
  }

  .sc-products {
    padding: 64px 0;
  }

  .sc-products__grid,
  .sc-products__grid--3 {
    grid-template-columns: 1fr;
  }

  .sc-products__card-img {
    padding: 24px;
    min-height: 180px;
  }

  .sc-products__card-body {
    padding: 20px;
  }

  .sc-certs {
    padding: 64px 0;
  }

  .sc-certs__grid {
    grid-template-columns: 1fr;
  }

  .sc-contact {
    padding: 64px 0;
  }

  .sc-contact__wrapper {
    gap: 40px;
  }

  .sc-contact__form-wrapper {
    padding: 28px;
    border-radius: var(--radius-lg);
  }

  .sc-form__row {
    grid-template-columns: 1fr;
  }

  .sc-section-cta {
    margin-top: 36px;
  }

  .sc-section-cta .sc-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .sc-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sc-footer__contact {
    grid-column: auto;
  }

  .sc-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .sc-header__inner {
    height: 60px;
  }

  .sc-header__logo img {
    height: 28px;
  }

  .sc-hero {
    margin-top: 60px;
    min-height: 460px;
  }

  .sc-hero h1 {
    font-size: 1.6rem;
  }

  .sc-hero p {
    font-size: 0.88rem;
  }

  .sc-btn {
    font-size: 0.88rem;
    padding: 14px 24px;
  }

  .sc-section-header h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .sc-products__category-header {
    flex-direction: column;
    gap: 12px;
  }

  .sc-contact__form-wrapper {
    padding: 24px 20px;
  }

  .sc-contact__info h2 {
    font-size: 1.3rem;
  }

  .sc-form__group input,
  .sc-form__group textarea {
    font-size: 16px;
    padding: 14px 16px;
  }
}
