:root {
  --sct-dark-navy: #012a38;
  --sct-teal: #14919e;
  --sct-muted-teal: #1d7f8a;
  --sct-pale-aqua: #f1f4f4;
  --sct-white: #ffffff;
  --sct-gold: #e8c76a;
  --sct-silver: #c8d1d3;
  --sct-warm-sand: #faf3e7;
  --sct-radius: 16px;
  --sct-container: 1200px;
  --sct-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --sct-lift-shadow: 0 20px 60px rgba(1, 42, 56, 0.1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sct-pale-aqua);
  color: var(--sct-dark-navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.sct-menu-open,
body.sct-search-open,
body.sct-lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--sct-dark-navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--sct-gold);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: 999px;
  background: var(--sct-dark-navy);
  color: var(--sct-white);
}

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

.sct-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--sct-white);
  transition: background-color 300ms ease, backdrop-filter 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.sct-header--static {
  position: absolute;
}

.sct-header.is-scrolled,
.sct-header.is-menu-open {
  background: rgba(241, 244, 244, 0.95);
  color: var(--sct-dark-navy);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 35px rgba(1, 42, 56, 0.08);
}

.sct-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 72px;
  gap: 24px;
}

.sct-brand {
  min-width: 120px;
}

.sct-text-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.custom-logo {
  max-width: 180px;
  max-height: 56px;
}

.sct-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.sct-nav__item,
.sct-footer__nav button,
.sct-mobile-menu__item {
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sct-nav__item {
  position: relative;
  padding: 0 0 7px;
  transition: color 200ms ease;
}

.sct-nav__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sct-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.sct-nav__item.is-active,
.sct-nav__item:hover {
  color: var(--sct-teal);
}

.sct-nav__item.is-active::after {
  transform: scaleX(1);
}

.sct-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.sct-language-toggle,
.sct-icon-button,
.sct-menu-toggle,
.sct-cart-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.sct-language-toggle {
  padding: 0 16px;
}

.sct-language-toggle:hover,
.sct-icon-button:hover,
.sct-cart-link:hover {
  background: var(--sct-dark-navy);
  border-color: var(--sct-dark-navy);
  color: var(--sct-white);
}

.sct-icon-button {
  width: 38px;
}

.sct-cart-link {
  gap: 8px;
  padding: 0 14px;
}

.sct-cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--sct-gold);
  color: var(--sct-dark-navy);
  font-size: 11px;
}

.sct-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  min-height: 32px;
  flex-direction: column;
  gap: 5px;
  border: 0;
}

.sct-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.sct-menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.sct-menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sct-mobile-menu {
  display: none;
  background: rgba(241, 244, 244, 0.98);
  color: var(--sct-dark-navy);
}

.sct-mobile-menu[hidden],
.sct-search-panel[hidden] {
  display: none !important;
}

.sct-mobile-menu__inner {
  display: grid;
  width: min(100% - 48px, var(--sct-container));
  margin-inline: auto;
  padding: 2px 0 24px;
}

.sct-mobile-menu__item {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(1, 42, 56, 0.1);
  color: var(--sct-dark-navy);
  text-align: left;
}

.sct-mobile-menu__item.is-active {
  color: var(--sct-teal);
}

.sct-search-panel {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(1, 42, 56, 0.58);
}

.sct-search-panel__inner {
  width: min(92vw, 420px);
  height: 100%;
  margin-left: auto;
  padding: 24px;
  background: var(--sct-white);
}

.sct-search-panel button {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--sct-silver);
  border-radius: 999px;
  background: var(--sct-white);
}

.sct-search-panel form {
  margin-top: 34px;
}

.sct-search-panel input[type="search"],
.search-field,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--sct-silver);
  border-radius: 8px;
}

.sct-section {
  position: relative;
  padding: var(--sct-section-pt) 0 var(--sct-section-pb);
  background: var(--sct-section-bg);
}

.sct-section--home {
  min-height: 100svh;
  height: 100vh;
  overflow: hidden;
  padding: 0 !important;
  background: var(--sct-dark-navy);
  isolation: isolate;
}

.sct-hero-canvas,
.sct-hero-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sct-hero-fallback {
  background:
    linear-gradient(180deg, rgb(1, 42, 56), rgb(0, 15, 25)),
    repeating-linear-gradient(8deg, rgba(232, 199, 106, 0.22) 0 2px, transparent 2px 42px);
}

.sct-hero-content {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 120px 80px;
}

.sct-kicker {
  margin-bottom: 16px;
  color: var(--sct-teal);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sct-kicker--gold {
  color: var(--sct-gold);
}

.sct-hero-content h1 {
  color: var(--sct-white);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
  text-shadow: 0 2px 40px rgba(1, 42, 56, 0.6);
}

.sct-hero-content h1 em {
  color: var(--sct-gold);
  font-style: italic;
}

.sct-hero-copy {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 32px;
}

.sct-pill-button {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 32px;
  border: 1px solid var(--sct-dark-navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.sct-pill-button:hover {
  transform: translateY(-1px);
}

.sct-pill-button--light {
  border-color: var(--sct-white);
  background: var(--sct-white);
  color: var(--sct-dark-navy);
}

.sct-pill-button--light:hover {
  border-color: #000;
  background: #000;
  color: var(--sct-white);
}

.sct-pill-button--outline {
  background: transparent;
  color: var(--sct-dark-navy);
}

.sct-pill-button--outline:hover {
  background: var(--sct-dark-navy);
  color: var(--sct-white);
}

.sct-scroll-cue {
  position: absolute;
  z-index: 10;
  bottom: 40px;
  left: 50%;
  color: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
  animation: sct-bounce 1s infinite;
}

@keyframes sct-bounce {
  0%,
  100% {
    transform: translate(-50%, -20%);
  }
  50% {
    transform: translate(-50%, 0);
  }
}

.sct-split {
  display: flex;
  gap: 48px;
}

.sct-split__copy {
  width: 55%;
}

.sct-split__media {
  width: 45%;
}

.sct-split h2,
.sct-section-head h2,
.sct-contact h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.sct-split__copy p:not(.sct-kicker),
.sct-section-head > p:not(.sct-kicker),
.sct-contact__copy > p,
.sct-product-card p,
.sct-certificate-card p {
  color: var(--sct-dark-navy);
  font-size: 18px;
  line-height: 26px;
}

.sct-split__copy p:not(.sct-kicker) {
  margin-top: 16px;
}

.sct-split__media img {
  width: 100%;
  border-radius: var(--sct-radius);
  object-fit: cover;
  box-shadow: var(--sct-lift-shadow);
}

.sct-section-head {
  margin-bottom: 48px;
}

.sct-section-head--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.sct-section-head--center .sct-kicker {
  margin-inline: auto;
}

.sct-section-head > p:not(.sct-kicker) {
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 32px;
}

.sct-section-head--dark h2 {
  color: var(--sct-white);
}

.sct-section-head--dark > p:not(.sct-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

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

.sct-product-card,
.sct-certificate-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--sct-white);
  box-shadow: var(--sct-shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.sct-product-card:hover,
.sct-certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(1, 42, 56, 0.08);
}

.sct-product-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.sct-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.sct-product-card:hover .sct-product-card__image img {
  transform: scale(1.03);
}

.sct-product-card__body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.sct-product-card h3,
.sct-certificate-card h3,
.sct-process-step h3 {
  font-size: 24px;
}

.sct-product-card p,
.sct-certificate-card p {
  color: #666;
  font-size: 16px;
}

.sct-text-action {
  display: inline-block;
  margin-top: 6px;
  color: var(--sct-teal);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sct-text-action:hover {
  color: var(--sct-muted-teal);
}

.sct-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.sct-process-step {
  position: relative;
}

.sct-process-step > span {
  display: block;
  color: var(--sct-gold);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  opacity: 0.4;
}

.sct-process-step h3 {
  margin-top: 16px;
  color: var(--sct-white);
}

.sct-process-step p {
  max-width: 240px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 26px;
}

.sct-process-step i {
  position: absolute;
  top: 31px;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(50%);
}

.sct-process-step i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sct-gold);
  transform: translateY(-50%);
}

.sct-certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.sct-certificate-card {
  padding: 32px;
  text-align: center;
}

.sct-icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  color: var(--sct-teal);
}

.sct-certificate-card h3 {
  margin-top: 16px;
}

.sct-certificate-card p {
  margin-top: 8px;
}

.sct-gallery-grid {
  columns: 3 260px;
  column-gap: 16px;
  margin-top: 48px;
}

.sct-gallery-item {
  display: block;
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
}

.sct-gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.sct-gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.sct-gallery-item button:hover img {
  transform: scale(1.03);
}

.sct-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.sct-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.sct-lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--sct-white);
  font-size: 36px;
  line-height: 1;
}

.sct-contact {
  display: flex;
  gap: 48px;
}

.sct-contact__copy,
.sct-contact__form {
  width: 50%;
}

.sct-contact__copy > p {
  margin-top: 24px;
}

.sct-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.sct-contact-list a,
.sct-contact-list > span {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--sct-dark-navy);
  font-size: 16px;
}

.sct-small-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--sct-teal);
}

.sct-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.sct-socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sct-dark-navy);
  border-radius: 999px;
  color: var(--sct-dark-navy);
  font-size: 12px;
  font-weight: 700;
  transition: background-color 200ms ease, color 200ms ease;
}

.sct-socials a:hover {
  background: var(--sct-dark-navy);
  color: var(--sct-white);
}

.sct-contact__form form {
  display: grid;
  gap: 20px;
  padding: 32px;
  border-radius: var(--sct-radius);
  background: var(--sct-white);
  box-shadow: var(--sct-shadow);
}

.sct-contact__form label {
  display: grid;
  gap: 8px;
}

.sct-contact__form label > span {
  color: var(--sct-dark-navy);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sct-contact__form input,
.sct-contact__form select,
.sct-contact__form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--sct-silver);
  border-radius: 8px;
  background: var(--sct-white);
  color: var(--sct-dark-navy);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.sct-contact__form textarea {
  resize: vertical;
}

.sct-contact__form input:focus,
.sct-contact__form select:focus,
.sct-contact__form textarea:focus {
  border-color: var(--sct-teal);
  box-shadow: 0 0 0 3px rgba(20, 145, 158, 0.1);
}

.sct-contact__form button[type="submit"] {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--sct-dark-navy);
  color: var(--sct-white);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background-color 200ms ease;
}

.sct-contact__form button[type="submit"]:hover {
  background: #000;
}

.sct-toast {
  position: fixed;
  z-index: 100;
  top: 24px;
  right: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--sct-dark-navy);
  color: var(--sct-white);
  font-size: 14px;
  font-weight: 500;
  animation: sct-slide-in 300ms ease;
}

@keyframes sct-slide-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sct-footer {
  background: var(--sct-teal);
  color: var(--sct-white);
}

.sct-footer__inner {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0;
}

.sct-footer__logo {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.sct-footer__tagline {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.sct-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.sct-footer__nav button:hover {
  color: rgba(255, 255, 255, 0.7);
}

.sct-footer__rights {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

.sct-js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.sct-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sct-main,
.sct-shop {
  padding: 112px 0 56px;
  background: var(--sct-pale-aqua);
}

.sct-content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
}

.sct-entry,
.woocommerce div.product,
.sct-sidebar .widget {
  padding: 22px;
  border: 1px solid rgba(200, 209, 211, 0.8);
  border-radius: var(--sct-radius);
  background: var(--sct-white);
}

.sct-entry__image {
  display: block;
  margin: -22px -22px 18px;
}

.sct-entry__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sct-sidebar .widget {
  margin-bottom: 18px;
}

.woocommerce ul.products,
.sct-product-loop,
.sct-demo-products,
.sct-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.sct-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--sct-dark-navy);
  border-radius: 999px;
  background: var(--sct-dark-navy);
  color: var(--sct-white);
  font-weight: 700;
}

body.customize-preview .sct-section {
  position: relative;
}

body.customize-preview .sct-section.is-customizer-hover {
  outline: 3px solid var(--sct-gold);
  outline-offset: -3px;
}

body.customize-preview .sct-section.is-customizer-hover::before {
  content: "Bu bölümü düzenle";
  position: absolute;
  z-index: 20;
  top: 88px;
  left: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sct-gold);
  color: var(--sct-dark-navy);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .sct-header__inner {
    gap: 16px;
  }

  .sct-nav {
    display: none;
  }

  .sct-menu-toggle {
    display: inline-flex;
  }

  .sct-mobile-menu {
    display: block;
  }

  .sct-split,
  .sct-contact {
    flex-direction: column;
  }

  .sct-split__copy,
  .sct-split__media,
  .sct-contact__copy,
  .sct-contact__form {
    width: 100%;
  }

  .sct-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sct-process-grid,
  .sct-certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sct-process-step i {
    display: none;
  }

  .sct-content-with-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .sct-container,
  .sct-mobile-menu__inner {
    width: min(100% - 32px, var(--sct-container));
  }

  .sct-header__inner {
    height: 66px;
  }

  .sct-brand {
    min-width: 0;
  }

  .sct-text-logo,
  .custom-logo-link {
    font-size: 13px;
  }

  .sct-language-toggle {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .sct-header-actions {
    gap: 8px;
  }

  .sct-hero-content {
    right: 24px;
    left: 24px;
    max-width: none;
    padding: 0 0 90px;
  }

  .sct-hero-content h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .sct-hero-copy {
    font-size: 18px;
    line-height: 28px;
  }

  .sct-pill-button {
    width: 100%;
    padding-inline: 20px;
  }

  .sct-section {
    padding-top: min(var(--sct-section-pt), 64px);
    padding-bottom: min(var(--sct-section-pb), 64px);
  }

  .sct-product-grid,
  .sct-process-grid,
  .sct-certificate-grid,
  .woocommerce ul.products,
  .sct-product-loop,
  .sct-demo-products,
  .sct-post-grid {
    grid-template-columns: 1fr;
  }

  .sct-section-head {
    margin-bottom: 36px;
  }

  .sct-contact__form form {
    padding: 24px;
  }

  .sct-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .sct-footer__rights {
    text-align: center;
  }
}
