/* ========================================
   TSplus Türkiye - Design System
   terminalservis.com / terminalservis.com
   Veriyum Teknoloji Türkiye Distribütörü
   ======================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Brand Colors */
  --primary: #FE913A;
  --primary-dark: #E67E22;
  --primary-light: #FFF3E8;
  --primary-rgb: 254, 145, 58;

  /* Neutrals */
  --dark: #2D3436;
  --dark-secondary: #1a1a2e;
  --gray-dark: #3d3d5c;
  --gray: #636E72;
  --gray-medium: #95a5a6;
  --gray-light: #b2bec3;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border: #e8ecf1;
  --border-light: rgba(0,0,0,0.05);

  /* Accent */
  --success: #00b894;
  --danger: #e17055;
  --info: #0984e3;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 80px 20px;
  --container-max: 1200px;
  --container-narrow: 900px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-heavy: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(254,145,58,0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section--gray {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlight {
  color: var(--primary);
}

.text-center { text-align: center; }
.text-gray { color: var(--gray); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.5;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--white {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  transition: var(--transition);
}

.header--scrolled .header__inner {
  height: 60px;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 48px;
  transition: var(--transition);
}

.header--scrolled .header__logo {
  height: 42px;
}

.header__logo img {
  height: 100%;
  width: auto;
  display: block;
}

.footer__logo {
  display: block;
  height: 44px;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 100%;
  width: auto;
  display: block;
}


.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover {
  color: var(--primary);
}

.header__nav a.active {
  color: var(--primary);
  font-weight: 600;
}

/* ---- Premium Dropdown Menu ---- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-white);
  min-width: 200px;
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 10px 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-dark);
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.dropdown-menu a::after {
  display: none !important;
}

.chevron-icon {
  transition: transform 0.25s ease;
}

.dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.mobile-sub-nav a {
  color: var(--gray-dark);
  transition: var(--transition-fast);
}

.mobile-sub-nav a:hover,
.mobile-sub-nav a.active {
  color: var(--primary);
  font-weight: 600;
}


.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 30px 30px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ========================================
   DISTRIBUTOR BANNER
   ======================================== */
.distributor-banner {
  background: linear-gradient(135deg, var(--dark-secondary) 0%, #16213e 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.distributor-banner a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.distributor-banner a:hover {
  color: #ffb074;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 140px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 60%;
  background-image: radial-gradient(
    rgba(145,163,185,0.6) 1.2px,
    transparent 2.4px
  );
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08), transparent 70%);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto 38px;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero__products {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.hero__product:hover {
  transform: translateY(-4px);
}

.hero__product-icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero__product-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.hero__product span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 30px;
}

.trust-bar__label {
  font-size: 0.8rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.trust-bar__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--gray);
}

.trust-bar__stat svg {
  width: 18px;
  height: 18px;
  fill: var(--success);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin: -50px auto 0;
  max-width: 1050px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat__label {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 6px;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-card__icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.product-card__desc {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.product-card__features li {
  font-size: 0.88rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__features li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

.product-card__price {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.product-card__price strong {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.product-card__cta {
  display: flex;
  gap: 12px;
}

.product-card__cta .btn {
  flex: 1;
  text-align: center;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 35px 28px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
}

.value-card h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}

.value-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ========================================
   ACCORDION (SSS)
   ======================================== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.accordion__btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition-fast);
  line-height: 1.5;
  gap: 16px;
}

.accordion__btn:hover {
  background: var(--bg-light);
}

.accordion__btn svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion__item.open .accordion__btn svg {
  transform: rotate(180deg);
}

.accordion__item.open .accordion__btn {
  background: var(--bg-light);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.accordion__body p {
  margin-top: 16px;
}

.accordion__body ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}

.accordion__body li {
  margin-bottom: 6px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #d35400 100%);
  padding: 70px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark-secondary);
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer__brand a {
  color: var(--primary);
  font-weight: 600;
}

.footer__brand a:hover {
  color: #ffb074;
}

.footer__col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer__col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer__bottom a {
  color: var(--primary);
}

/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

.pricing-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.pricing-hero p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.pricing-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card__price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__price .amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.pricing-card__price .period {
  font-size: 0.9rem;
  color: var(--gray);
  margin-left: 4px;
}

.pricing-card__price .note {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-medium);
  margin-top: 6px;
}

.pricing-card__features {
  flex-grow: 1;
  margin-bottom: 28px;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  fill: var(--success);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Feature Comparison Table */
.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-table thead th {
  background: var(--dark-secondary);
  color: white;
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.feature-table thead th:first-child {
  text-align: left;
}

.feature-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
}

.feature-table tbody tr:hover {
  background: var(--bg-light);
}

.feature-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  text-align: center;
}

.feature-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.feature-table .check {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-table .cross {
  color: var(--danger);
  font-size: 1.2rem;
}

/* ========================================
   COMPARE PAGE
   ======================================== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compare-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}

.compare-card__icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.compare-card__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
}

.compare-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.compare-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

/* Compare Detail Page */
.compare-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

.compare-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.compare-hero p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.summary-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid var(--border-light);
}

.summary-box h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.summary-box ul {
  padding-left: 0;
}

.summary-box li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.summary-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Compare Table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}

.compare-table thead th {
  background: var(--dark-secondary);
  color: white;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.tsplus-col {
  background: var(--primary);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:hover {
  background: var(--bg-light);
}

.compare-table tbody td {
  padding: 16px 24px;
  font-size: 0.9rem;
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.compare-table .yes {
  color: var(--success);
  font-weight: 700;
}

.compare-table .no {
  color: var(--danger);
  font-weight: 500;
}

.compare-table .partial {
  color: var(--gray);
}

/* Content Section */
.content-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.content-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 12px;
}

.content-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.content-section ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

.content-section li {
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.contact-info__text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-info__text a {
  color: var(--primary);
  font-weight: 600;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition-fast);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  background: white;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--gray-light);
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
  position: relative;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__cta .btn {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 20px;
    margin-top: -30px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 120px 20px 70px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero__products {
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .feature-table,
  .compare-table {
    font-size: 0.82rem;
  }

  .feature-table thead th,
  .compare-table thead th {
    padding: 12px 10px;
    font-size: 0.8rem;
  }

  .feature-table tbody td,
  .compare-table tbody td {
    padding: 10px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 16px;
  }

  .cta-banner {
    padding: 50px 16px;
  }
}

@media (max-width: 500px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .product-card__features {
    grid-template-columns: 1fr;
  }

  .product-card__cta {
    flex-direction: column;
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   SCROLLBAR CUSTOM
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--dark);
}

/* ========================================
   TSPLUS ME ADDITIONS (AEO, CALCULATOR, REVIEWS)
   ======================================== */
.direct-answer {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 30px;
  border-left: 5px solid var(--primary);
  margin: 30px auto;
  max-width: var(--container-narrow);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.direct-answer p {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.7;
}

.takeaways {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 30px auto 50px;
  max-width: var(--container-narrow);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.takeaways h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.takeaways ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.takeaways li {
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.takeaways li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---- Customer Logos ---- */
.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.trust-bar__logos img {
  height: 26px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition);
}

.trust-bar__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---- Savings Calculator ---- */
.savings-calc {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid var(--primary);
  margin: 40px auto;
  max-width: 800px;
  box-shadow: var(--shadow-medium);
}

.savings-calc h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.savings-calc h3 svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.calc-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.calc-input {
  padding: 12px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  width: 180px;
  font-family: inherit;
  transition: var(--transition-fast);
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
}

.calc-result {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-md);
  margin-top: 25px;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.25);
}

.calc-result h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.calc-savings-amount {
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.calc-note {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* ---- Customer Reviews & Ratings ---- */
.rating-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px auto 40px;
  align-items: center;
}

.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.rating-badge img {
  height: 24px;
  width: auto;
}

.rating-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #ffb03a;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.review-title {
  font-size: 0.78rem;
  color: var(--gray-medium);
}
