.btn-sf-accent,
.btn-sf-outline,
.btn-sf-whatsapp {
  font-weight: 600;
  transition: 0.3s;
}
.sf-hero,
.sf-live-badge {
  align-items: center;
  display: flex;
}
.sf-hero h1,
.sf-section-title-left {
  font-family: "Inter", sans-serif;
}
.sf-badge,
.sf-eyebrow,
.sf-feature-group-title,
.sf-pricing-plan {
  text-transform: uppercase;
}
.sf-page-hero,
.sf-stat {
  text-align: center;
}
/* Offcanvas sidebar */
.sf-offcanvas {
  width: 300px;
  background: var(--sf-primary);
  color: #fff;
}
.sf-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
}
.sf-offcanvas-nav {
  gap: 0.25rem;
}
.sf-offcanvas-nav .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  padding: 0.85rem 1rem !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.sf-offcanvas-nav .nav-link:hover,
.sf-offcanvas-nav .nav-link.active {
  color: #fff !important;
  background: rgba(251, 146, 60, 0.12);
}
.sf-offcanvas-nav .nav-link i {
  color: var(--sf-accent);
  font-size: 1.1rem;
}

.sf-offcanvas-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.25rem 0;
}

.sf-offcanvas-contact-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.sf-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: 0.2s;
}
.sf-contact-item:hover {
  color: var(--sf-accent);
}
.sf-contact-item i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--sf-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Bootstrap'in default backdrop rengini kurumsal görünüme yaklaştırmak için */
.offcanvas-backdrop.show {
  opacity: 0.6;
}
:root {
  --sf-primary: #222934;
  --sf-primary-light: #2d3645;
  --sf-accent: #fb923c;
  --sf-accent-hover: #f97316;
  --sf-accent-glow: rgba(251, 146, 60, 0.25);
  --sf-bg-white: #ffffff;
  --sf-bg-light: #f8fafc;
  --sf-bg-section: #f1f5f9;
  --sf-bg-card: #ffffff;
  --sf-text-primary: #222934;
  --sf-text-secondary: #64748b;
  --sf-text-muted: #94a3b8;
  --sf-border: #e2e8f0;
  --sf-border-light: #f1f5f9;
  --sf-gradient: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  --sf-shadow-sm: 0 1px 3px rgba(34, 41, 52, 0.06);
  --sf-shadow-md: 0 4px 20px rgba(34, 41, 52, 0.08);
  --sf-shadow-lg: 0 10px 40px rgba(34, 41, 52, 0.12);
    --sf-topbar-height: 34px;
  --sf-topbar-height-mobile: 30px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
body {
  font-family: Poppins, sans-serif;
  background-color: var(--sf-bg-white);
  color: var(--sf-text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
::selection {
  background: var(--sf-accent);
  color: #fff;
}
.sf-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031; /* navbar'ın (1030) üstünde kalsın */
  height: var(--sf-topbar-height-mobile);
  background-color: #2d3645;
  color: #fff;
  font-size: 12.5px;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .sf-topbar { height: var(--sf-topbar-height); font-size: 13px; }
}

.sf-topbar-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s ease;
}
.sf-topbar-link:hover { color: #f7931e; } /* marka turuncusu — kendi accent renginle değiştir */
.sf-topbar-link i { font-size: 14px; }

.sf-topbar-social a {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  transition: color .15s ease;
}
.sf-topbar-social a:hover { color: #f7931e; }

/* Navbar'ı topbar'ın altına it */
#mainNav {
  top: var(--sf-topbar-height-mobile);
}
@media (min-width: 992px) {
  #mainNav { top: var(--sf-topbar-height); }
}

.accent-text,
.sf-auction-price.sf-price-bump,
.sf-footer a:hover {
  color: var(--sf-accent);
}
.accent-gradient-text {
  background: var(--sf-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sf-divider {
  width: 60px;
  height: 4px;
  background: var(--sf-gradient);
  border-radius: 2px;
  margin: 1rem auto;
}
.sf-navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sf-border-light);
  transition: 0.3s;
}
.sf-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--sf-shadow-md);
}
.sf-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--sf-primary) !important;
}
.sf-navbar .nav-link {
  color: var(--sf-text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  position: relative;
}
.sf-navbar .nav-link.active,
.sf-navbar .nav-link:hover {
  color: var(--sf-accent) !important;
}
.sf-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sf-accent);
  transition: 0.3s;
  transform: translateX(-50%);
}
.sf-navbar .nav-link.active::after,
.sf-navbar .nav-link:hover::after {
  width: 60%;
}
.sf-navbar .navbar-toggler i {
  color: var(--sf-primary);
}
.btn-sf-accent {
  background: var(--sf-gradient);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--sf-accent-glow);
}
.btn-sf-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--sf-accent-glow);
  color: #fff;
  background: var(--sf-accent-hover);
}
.btn-sf-outline {
  background: 0 0;
  color: var(--sf-accent);
  border: 2px solid var(--sf-accent);
  padding: 0.7rem 2rem;
  border-radius: 8px;
}
.btn-sf-outline:hover {
  background: var(--sf-accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sf-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
}
.btn-sf-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.sf-faq {
  background: var(--sf-bg-section);
}

.sf-accordion {
  --bs-accordion-border-color: var(--sf-border);
}

.sf-faq-item {
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--sf-shadow-sm);
  transition: 0.3s;
}
.sf-faq-item:hover {
  box-shadow: var(--sf-shadow-md);
}

.sf-faq-btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--sf-text-primary);
  background: var(--sf-bg-card);
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}
.sf-faq-btn:not(.collapsed) {
  color: var(--sf-accent);
  background: var(--sf-bg-card);
}
.sf-faq-btn::after {
  background-image: none;
  font-family: "bootstrap-icons";
  content: "\f282"; /* bi-plus */
  font-size: 1.1rem;
  color: var(--sf-text-muted);
  transition: 0.3s;
  width: auto;
  height: auto;
}
.sf-faq-btn:not(.collapsed)::after {
  content: "\f2ea"; /* bi-dash */
  color: var(--sf-accent);
  transform: none;
}
.sf-faq-btn:focus {
  border-color: transparent;
  box-shadow: none;
}

.sf-faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--sf-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.sf-faq-body strong {
  color: var(--sf-text-primary);
}
.sf-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--sf-bg-white);
  border-bottom: 1px solid var(--sf-border);
}
.sf-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.sf-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.sf-hero-content {
  position: relative;
  z-index: 1;
}
.sf-auction-mockup {
  background: var(--sf-primary);
  color: #fff;
}
.sf-auction-mockup .mockup-header {
  background: var(--sf-primary-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sf-live-badge {
  margin-left: auto;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.sf-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: 1.4s ease-in-out infinite sf-live-pulse;
}
@keyframes sf-live-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.sf-auction-body {
  padding: 1.75rem;
}
.sf-auction-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sf-auction-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(251, 146, 60, 0.15);
  color: var(--sf-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.sf-auction-name {
  font-weight: 700;
  color: #222;
}
.sf-eyebrow {
  display: block;
  color: var(--sf-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.sf-section-title-left {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--sf-primary);
  margin-bottom: 0;
}
.sf-section-subtitle-left {
  color: var(--sf-text-secondary);
  font-size: 1rem;
  margin-bottom: 0;
}
.sf-feature-group {
  height: 100%;
}
.sf-feature-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  color: var(--sf-text-muted);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--sf-accent);
  display: inline-block;
}
.sf-feature-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sf-border-light);
}
.sf-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sf-feature-row-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(251, 146, 60, 0.08);
  color: var(--sf-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.sf-feature-row-name {
  font-weight: 600;
  color: var(--sf-primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.sf-feature-row-desc {
  color: var(--sf-text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sf-section-title-left {
    font-size: 1.6rem;
  }
  .sf-section-subtitle-left {
    margin-top: 0.75rem;
  }
}
.sf-auction-timer {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 2px;
}
.sf-auction-timer span {
  color: var(--sf-accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.sf-auction-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.sf-auction-price-row .mockup-card-label {
  color: rgba(0, 0, 0, 0.45);
}
.sf-auction-price {
  font-size: 2.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
  color: #000;
}
.sf-auction-bidders {
  font-size: 0.85rem;
  color: rgba(54, 54, 54, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sf-auction-ticker {
  height: 96px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.85rem;
}
.sf-auction-ticker-item {
  font-size: 0.8rem;
  color: rgba(53, 53, 53, 0.55);
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  animation: 0.3s sf-ticker-in;
}
.sf-auction-ticker-item:last-child,
.sf-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
@keyframes sf-ticker-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sf-auction-mockup .btn-sf-accent:disabled {
  opacity: 0.9;
  cursor: default;
}
.sf-hero h1 {
  letter-spacing: -1px;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--sf-primary);
}
.hero-desc {
  color: var(--sf-text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-stats .sf-stat-number {
  font-size: 1.5rem;
}
.hero-stats .sf-stat-label,
.mockup-url {
  font-size: 0.8rem;
}
.sf-hero-mockup {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sf-shadow-lg), 0 0 60px var(--sf-accent-glow);
  border: 1px solid var(--sf-border);
  background-color: #fff;
}
.sf-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}
.sf-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.sf-brand-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.mockup-header {
  background: var(--sf-bg-section);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-url {
  color: var(--sf-text-muted);
  margin-left: 8px;
}
.mockup-body {
  background: linear-gradient(
    135deg,
    var(--sf-bg-light) 0,
    rgba(251, 146, 60, 0.03) 100%
  );
  padding: 2rem;
  min-height: 300px;
}
.mockup-card {
  background: rgba(251, 146, 60, 0.04);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--sf-border);
}
.mockup-card-label {
  color: var(--sf-text-muted);
  font-size: 0.8rem;
}
.mockup-card-value,
.mockup-card-value-sm {
  margin-top: 4px;
  color: var(--sf-primary);
  font-weight: 700;
}
.mockup-card-value {
  font-size: 1.5rem;
}
.mockup-card-value-sm {
  font-size: 1.25rem;
}
.mockup-card-change {
  color: var(--sf-accent);
  font-size: 0.8rem;
}
.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
}
.mockup-chart > div {
  flex: 1;
  background: linear-gradient(
    to top,
    var(--sf-accent),
    rgba(251, 146, 60, 0.2)
  );
  border-radius: 4px;
}
.sf-section {
  padding: 6rem 0;
  position: relative;
}
.sf-section-alt {
  background: var(--sf-bg-section);
}
.sf-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--sf-primary);
}
.sf-section-subtitle {
  color: var(--sf-text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}
.sf-badge {
  display: inline-block;
  background: rgba(251, 146, 60, 0.1);
  color: var(--sf-accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(251, 146, 60, 0.2);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.sf-feature-card {
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.sf-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sf-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.sf-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: var(--sf-shadow-lg);
}
.sf-feature-card:hover::before {
  opacity: 1;
}
.sf-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(251, 146, 60, 0.1);
  color: var(--sf-accent);
}
.sf-feature-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--sf-primary);
}
.sf-feature-card p {
  color: var(--sf-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.sf-highlight {
  border-radius: 20px;
  overflow: hidden;
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border);
}
.sf-highlight-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.08) 0,
    rgba(251, 146, 60, 0.02) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-highlight-image i {
  font-size: 6rem;
  color: var(--sf-accent);
  opacity: 0.2;
}
.sf-highlight-content {
  padding: 2.5rem;
}
.sf-highlight-content h3 {
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--sf-primary);
}
.sf-highlight-content p {
  color: var(--sf-text-secondary);
  margin-bottom: 1.5rem;
}
.sf-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sf-highlight-list li {
  padding: 0.5rem 0;
  color: var(--sf-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sf-highlight-list li i,
.sf-table-check {
  color: var(--sf-accent);
  font-size: 1.1rem;
}
.sf-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--sf-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.sf-stat-label {
  color: var(--sf-text-secondary);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.sf-pricing-card {
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: 0.3s;
  position: relative;
}
.sf-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sf-shadow-lg);
}
.sf-pricing-card.popular {
  border-color: var(--sf-accent);
  box-shadow: 0 0 40px var(--sf-accent-glow);
}
.sf-pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sf-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
}
.sf-form-section,
.sf-form-select option,
.sf-pricing-table {
  background: var(--sf-bg-card);
}
.sf-pricing-plan {
  font-weight: 600;
  color: var(--sf-text-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.sf-pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--sf-primary);
}
.sf-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--sf-text-secondary);
  letter-spacing: 0;
}
.sf-pricing-period {
  color: var(--sf-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.sf-pricing-desc,
.sf-pricing-features li {
  color: var(--sf-text-secondary);
  font-size: 0.95rem;
}
.sf-pricing-desc {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sf-border);
}
.sf-pricing-features li.disabled i,
.sf-table-cross {
  color: var(--sf-text-muted);
}
.sf-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.sf-pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.sf-pricing-features li i {
  color: var(--sf-accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.sf-pricing-features li.disabled {
  opacity: 0.4;
}
.sf-pricing-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sf-border);
}
.sf-pricing-table thead th {
  background: var(--sf-primary);
  color: #fff;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 0.95rem;
  vertical-align: middle;
}
.sf-pricing-table tbody tr:hover,
.sf-pricing-table tfoot td {
  background: var(--sf-bg-light);
}
.sf-pricing-table thead th:first-child {
  text-align: left;
}
.sf-pricing-table thead th .plan-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.sf-pricing-table thead th .plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sf-accent);
}
.sf-pricing-table thead th .plan-period {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.sf-pricing-table tbody td {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--sf-border-light);
  color: var(--sf-text-secondary);
  font-size: 0.9rem;
  vertical-align: middle;
}
.sf-pricing-table tbody td:first-child {
  font-weight: 500;
  color: var(--sf-primary);
}
.sf-pricing-table .feat-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--sf-text-muted);
  font-weight: 400;
  margin-top: 2px;
}
.sf-table-cross {
  font-size: 1rem;
  opacity: 0.4;
}
.sf-pricing-table tfoot td {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid var(--sf-border);
}
.sf-form-input:focus,
.sf-form-select:focus,
.sf-form-textarea:focus {
  outline: 0;
  border-color: var(--sf-accent);
  box-shadow: 0 0 0 3px var(--sf-accent-glow);
}
.sf-form-section {
  border-radius: 24px;
  border: 1px solid var(--sf-border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.sf-form-input,
.sf-form-select {
  background: var(--sf-bg-light);
  border: 1px solid var(--sf-border);
}
.sf-form-input,
.sf-form-select,
.sf-form-textarea {
  padding: 0.85rem 1rem;
  font-family: Poppins, sans-serif;
  transition: 0.3s;
  width: 100%;
}
.sf-lightbox,
.sf-whatsapp-float {
  position: fixed;
  align-items: center;
}
.sf-form-input {
  border-radius: 10px;
  color: var(--sf-primary);
}
.sf-form-input:focus,
.sf-form-textarea:focus {
  background: #fff;
}
.sf-form-input::placeholder {
  color: var(--sf-text-muted);
}
.sf-form-label {
  color: var(--sf-text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}
.sf-form-select {
  border-radius: 10px;
  color: var(--sf-primary);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.sf-form-select option {
  color: var(--sf-primary);
}
.sf-form-textarea {
  background: var(--sf-bg-light);
  border: 1px solid var(--sf-border);
  border-radius: 10px;
  color: var(--sf-primary);
  resize: vertical;
  min-height: 120px;
}
.sf-form-textarea::placeholder {
  color: var(--sf-text-muted);
}
.sf-footer {
  background: var(--sf-primary);
  padding: 3rem 0 1.5rem;
}
.sf-footer h5,
.sf-footer h6 {
  color: #fff;
}
.sf-footer p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.sf-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.sf-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.sf-whatsapp-float {
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: 0.3s;
  text-decoration: none;
}
.sf-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.sf-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: 2s ease-out infinite pulse-ring;
  z-index: -1;
}
@media (max-width: 768px) {
  .sf-section-title {
    font-size: 1.75rem;
  }
  .sf-hero {
    text-align: center;
    padding-top: 100px;
  }
  .sf-hero h1,
  .sf-stat-number {
    font-size: 2.25rem;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .sf-pricing-price {
    font-size: 2.5rem;
  }
  .sf-form-section,
  .sf-highlight-content {
    padding: 1.5rem;
  }
  .sf-pricing-table tbody td,
  .sf-pricing-table tfoot td,
  .sf-pricing-table thead th {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  .sf-pricing-table thead th .plan-price {
    font-size: 1.2rem;
  }
  .sf-highlight-image {
    min-height: 200px;
  }
}
@media (max-width: 576px) {
  .sf-section {
    padding: 4rem 0;
  }
  .sf-hero h1 {
    font-size: 1.75rem;
  }
  .sf-whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }
}
.table-responsive {
  max-height: 700px;
  overflow: auto;
}
.sticky-pricing-header th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.packet-bottom-text {
  color: #fff;
  font-size: 0.9rem;
  background: #0e0e0e;
  border-radius: 10px;
  padding: 10px;
}
.sf-page-hero {
  padding: 9rem 0 3rem;
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.1),
    rgba(34, 41, 52, 0.04)
  );
}
.dot-red {
  background: #ff5f57;
}
.dot-yellow {
  background: #ffbd2e;
}
.dot-green {
  background: #28c840;
}
.h-35 {
  height: 35%;
}
.h-40 {
  height: 40%;
}
.h-55 {
  height: 55%;
}
.h-60 {
  height: 60%;
}
.h-70 {
  height: 70%;
}
.h-75 {
  height: 75%;
}
.h-85 {
  height: 85%;
}
.sf-highlight-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.sf-system-gallery {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0, var(--sf-bg-light) 100%);
}
.sf-marquee-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}
.sf-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}
.marquee-left {
  animation: 55s linear infinite sf-marquee-left;
}
.marquee-right {
  animation: 55s linear infinite sf-marquee-right;
}
.sf-marquee-track:hover {
  animation-play-state: paused;
}
.sf-gallery-item {
  width: min(420px, 78vw);
  height: 250px;
  flex: 0 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--sf-border);
  box-shadow: var(--sf-shadow-md);
  background: #fff;
  cursor: zoom-in;
}
.sf-gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}
.sf-gallery-item:hover img {
  transform: scale(1.05);
}
.sf-lightbox {
  inset: 0;
  z-index: 2000;
  display: none;
  justify-content: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(8px);
}
.sf-lightbox.active {
  display: flex;
}
.sf-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.sf-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--sf-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
@keyframes sf-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes sf-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .sf-gallery-item {
    height: 190px;
  }
  .sf-page-hero {
    padding-top: 8rem;
  }
}
.sf-demo-success-icon {
  font-size: 4rem;
  color: var(--sf-accent);
}
.sf-demo-success-title {
  font-weight: 700;
}
.sf-demo-success-text {
  color: var(--sf-text-secondary);
}
