/* =====================================================
   TECHMAR — MARKETING LANDING PAGE
   ===================================================== */

/* ---- GLOBAL OVERRIDES ---- */
.tm-btn-primary{
  background: linear-gradient(90deg, var(--blue), var(--green)) !important;
  color: #0a0e19 !important;
  font-weight: 700;
  border: none !important;
  gap: 10px;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.tm-btn-primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 8px 32px rgba(72,170,255,0.25);
}
.tm-btn-lg{
  padding: 16px 32px !important;
  font-size: 16px;
  border-radius: 16px;
}
.tm-btn-arrow{
  transition: transform .2s ease;
}
.tm-btn-primary:hover .tm-btn-arrow{
  transform: translateX(4px);
}
.tm-btn-glow{
  box-shadow: 0 0 20px rgba(72,170,255,0.2);
}
.tm-section-head{
  max-width: 680px;
  margin-bottom: 36px;
}
.tm-section-head h2{
  margin: 14px 0 0;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.tm-center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   1. HERO
   ===================================================== */
.tm-hero{
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.tm-hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}
.tm-hero-text h1{
  margin: 16px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, #ffffff 30%, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tm-hero-sub{
  margin: 0 0 24px;
  opacity: 0.9;
  line-height: 1.7;
  font-size: 17px;
  max-width: 50ch;
}
.tm-hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- HERO DEVICES ---- */
.tm-hero-visual{
  position: relative;
  display: flex;
  justify-content: center;
}
.tm-hero-devices{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}
.tm-device-desktop{
  width: min(340px, 58%);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 24px 60px rgba(0,0,0,0.45))
    drop-shadow(0 0 20px rgba(72,170,255,0.10));
  animation: phoneFloat 5s ease-in-out infinite;
}
.tm-device-mobile{
  width: min(280px, 48%);
  height: auto;
  display: block;
  margin-left: -70px;
  margin-bottom: -24px;
  position: relative;
  z-index: 3;
  filter:
    drop-shadow(0 24px 60px rgba(0,0,0,0.55))
    drop-shadow(0 0 32px rgba(72,170,255,0.20));
  animation: phoneFloat 5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.tm-phone-glow{
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(72,170,255,0.2), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(60,255,180,0.12), transparent 55%);
  filter: blur(40px);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes phoneFloat{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* FLOATING BADGES */
.tm-float-badges{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.tm-float-badge{
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(10,14,25,0.75);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  color: rgba(234,240,255,0.9);
  animation: badgeFloat 6s ease-in-out infinite;
}
.tm-float-badge svg{
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.fb1{ right: 12%; top: 30%; animation-delay: 0s; }
.fb2{ right: 8%; bottom: 28%; animation-delay: 1.5s; }

@keyframes badgeFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* =====================================================
   2. PROBLEM → COZUM
   ===================================================== */
.tm-problem{
  padding: 72px 0;
}
.tm-vs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.tm-vs-card{
  padding: 28px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
}
.tm-vs-problem{
  background: rgba(255,80,80,0.04);
  border: 1px solid rgba(255,80,80,0.15);
}
.tm-vs-solution{
  background: rgba(60,255,180,0.04);
  border: 1px solid rgba(60,255,180,0.18);
}
.tm-vs-label{
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 18px;
}
.tm-label-problem{
  background: rgba(255,80,80,0.12);
  color: #ff6b6b;
}
.tm-label-solution{
  background: rgba(60,255,180,0.12);
  color: var(--green);
}
.tm-vs-highlight{
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 16px;
}
.tm-vs-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.tm-vs-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.tm-vs-icon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.tm-vs-icon svg{
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}
.tm-icon-bad{
  background: rgba(255,80,80,0.12);
  color: #ff6b6b;
}
.tm-icon-good{
  background: rgba(60,255,180,0.12);
  color: var(--green);
}

/* =====================================================
   3. OZELLIKLER (6 KART)
   ===================================================== */
.tm-features{
  padding: 72px 0;
}
.tm-features-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tm-fcard{
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.tm-fcard::before{
  content:"";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(180px 100px at 20% 20%, rgba(72,170,255,0.12), transparent 60%),
    radial-gradient(160px 100px at 80% 80%, rgba(60,255,180,0.08), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.tm-fcard:hover{
  transform: translateY(-6px);
  border-color: rgba(72,170,255,0.22);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.tm-fcard:hover::before{
  opacity: 1;
}
.tm-fcard-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(72,170,255,0.18);
  background: rgba(72,170,255,0.06);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.tm-fcard-icon svg{
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
  color: var(--blue);
  filter: drop-shadow(0 0 10px rgba(72,170,255,0.3));
}
.tm-fcard h3{
  margin: 0 0 10px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}
.tm-fcard-old{
  margin: 0 0 6px;
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.5;
  text-decoration: line-through;
  text-decoration-color: rgba(255,80,80,0.4);
  position: relative;
  z-index: 1;
}
.tm-fcard-new{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* =====================================================
   4. NASIL CALISIR — 3 ADIM
   ===================================================== */
.tm-steps{
  padding: 72px 0;
}
.tm-steps-grid{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.tm-step{
  flex: 0 1 260px;
  text-align: center;
  padding: 28px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.tm-step:hover{
  transform: translateY(-6px);
  border-color: rgba(72,170,255,0.22);
}
.tm-step-num{
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #0a0e19;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 4px 16px rgba(72,170,255,0.3);
}
.tm-step-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(72,170,255,0.15);
  background: rgba(72,170,255,0.05);
  display: grid;
  place-items: center;
  margin: 12px auto 16px;
}
.tm-step-icon svg{
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
  color: var(--blue);
  filter: drop-shadow(0 0 8px rgba(72,170,255,0.3));
}
.tm-step h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.tm-step p{
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.55;
}
.tm-step-connector{
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.tm-step-connector svg{
  width: 60px;
  height: 20px;
}

/* =====================================================
   5. GUVEN ALANI
   ===================================================== */
.tm-trust{
  padding: 72px 0;
}
.tm-trust-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tm-trust-card{
  text-align: center;
  padding: 32px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease;
}
.tm-trust-card:hover{
  transform: translateY(-6px);
  border-color: rgba(60,255,180,0.22);
}
.tm-trust-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(60,255,180,0.18);
  background: rgba(60,255,180,0.05);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.tm-trust-icon svg{
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
  color: var(--green);
  filter: drop-shadow(0 0 8px rgba(60,255,180,0.3));
}
.tm-trust-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.tm-trust-card p{
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* =====================================================
   6. SON CTA
   ===================================================== */
.tm-cta{
  padding: 48px 0 80px;
}
.tm-cta-box{
  position: relative;
  text-align: center;
  padding: 56px 32px;
  border-radius: 28px;
  border: 1px solid rgba(72,170,255,0.18);
  background:
    linear-gradient(135deg, rgba(72,170,255,0.07), rgba(60,255,180,0.04) 50%, rgba(124,92,255,0.06));
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.tm-cta-glow{
  position: absolute;
  width: 500px;
  height: 300px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(72,170,255,0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.tm-cta-box h2{
  margin: 16px 0 10px;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.tm-cta-box p{
  margin: 0 0 28px;
  opacity: 0.85;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.tm-cta-box .pill{
  position: relative;
  z-index: 1;
}
.tm-cta-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.tm-cta-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  transition: gap .2s ease, color .2s ease;
}
.tm-cta-whatsapp:hover{
  gap: 14px;
  color: #fff;
}

/* =====================================================
   KLAVYE KISAYOLLARI
   ===================================================== */
.tm-shortcuts{
  padding: 72px 0;
}
.tm-shortcuts-sub{
  margin: 10px 0 0;
  opacity: 0.7;
  font-size: 15px;
}
.tm-keys-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.tm-key{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
}
.tm-key:hover{
  transform: translateY(-3px);
  border-color: rgba(72,170,255,0.22);
}
.tm-key kbd{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(72,170,255,0.25);
  background: rgba(72,170,255,0.08);
  color: var(--blue);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(72,170,255,0.15);
}
.tm-key span{
  font-size: 14px;
  opacity: 0.85;
}

/* =====================================================
   KARSILASTIRMA TABLOSU
   ===================================================== */
.tm-compare{
  padding: 72px 0;
}
.tm-table-wrap{
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.tm-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tm-table th,
.tm-table td{
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tm-table thead th{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: 0.6;
  padding-top: 18px;
}
.tm-table thead .tm-table-highlight{
  color: var(--green);
  opacity: 1;
}
.tm-table tbody td{
  opacity: 0.8;
}
.tm-table tbody .tm-table-highlight{
  color: var(--green);
  font-weight: 600;
  opacity: 1;
}
.tm-table tbody tr:last-child td{
  border-bottom: none;
}
.tm-table tbody tr:hover td{
  background: rgba(255,255,255,0.02);
}

/* =====================================================
   SOCIAL PROOF (Hero)
   ===================================================== */
.tm-social-proof{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.85;
}
.tm-social-proof p{ margin: 0; }
.tm-social-proof strong{ color: var(--green); }
.tm-avatars{
  display: flex;
}
.tm-avatar{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #0a0e19;
  border: 2px solid var(--bg0);
  margin-right: -8px;
}
.tm-avatar:nth-child(1){ background: var(--blue); }
.tm-avatar:nth-child(2){ background: var(--green); }
.tm-avatar:nth-child(3){ background: var(--violet); }
.tm-avatar:nth-child(4){ background: #ff6b6b; }

/* =====================================================
   FIYATLANDIRMA
   ===================================================== */
.tm-pricing{
  padding: 72px 0;
}
.tm-pricing-sub{
  margin: 10px 0 0;
  opacity: 0.7;
  font-size: 15px;
}
.tm-pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.tm-price-card{
  padding: 32px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tm-price-card:hover{
  transform: translateY(-6px);
  border-color: rgba(72,170,255,0.22);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.tm-price-popular{
  border-color: rgba(72,170,255,0.30);
  background:
    linear-gradient(135deg, rgba(72,170,255,0.06), rgba(60,255,180,0.03) 60%, rgba(124,92,255,0.04));
  transform: scale(1.04);
}
.tm-price-popular:hover{
  transform: scale(1.04) translateY(-6px);
}
.tm-popular-badge{
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #0a0e19;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 4px 16px rgba(72,170,255,0.3);
  white-space: nowrap;
}
.tm-price-header h3{
  margin: 0 0 4px;
  font-size: 20px;
}
.tm-price-desc{
  margin: 0;
  font-size: 13px;
  opacity: 0.65;
}
.tm-price-amount{
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 20px 0 22px;
}
.tm-price-currency{
  font-size: 22px;
  font-weight: 700;
  opacity: 0.7;
}
.tm-price-value{
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #ffffff, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tm-price-period{
  font-size: 15px;
  opacity: 0.55;
}
.tm-price-features{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.tm-price-features li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.85;
}
.tm-price-features svg{
  width: 18px;
  height: 18px;
  color: var(--green);
  stroke-width: 2.5;
  flex-shrink: 0;
}
.tm-price-btn{
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.tm-testimonials{
  padding: 72px 0;
}
.tm-testi-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tm-testi-card{
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease;
}
.tm-testi-card:hover{
  transform: translateY(-4px);
  border-color: rgba(72,170,255,0.18);
}
.tm-testi-stars{
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.tm-testi-text{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.9;
  font-style: italic;
}
.tm-testi-author{
  display: flex;
  align-items: center;
  gap: 12px;
}
.tm-testi-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #0a0e19;
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex-shrink: 0;
}
.tm-testi-author strong{
  display: block;
  font-size: 14px;
}
.tm-testi-author span{
  font-size: 12px;
  opacity: 0.6;
}

/* =====================================================
   FAQ
   ===================================================== */
.tm-faq{
  padding: 72px 0;
}
.tm-faq-list{
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.tm-faq-item{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .25s ease;
}
.tm-faq-item[open]{
  border-color: rgba(72,170,255,0.22);
}
.tm-faq-item summary{
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color .2s ease;
}
.tm-faq-item summary::-webkit-details-marker{ display: none; }
.tm-faq-item summary::after{
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.tm-faq-item[open] summary::after{
  transform: rotate(45deg);
}
.tm-faq-item summary:hover{ color: var(--blue); }
.tm-faq-item p{
  padding: 0 22px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.8;
}

/* =====================================================
   EMAIL COLLECTION
   ===================================================== */
.tm-email-collect{
  padding: 48px 0;
}
.tm-email-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.tm-email-text h3{
  margin: 0 0 4px;
  font-size: 17px;
}
.tm-email-text p{
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}
.tm-email-form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tm-email-input{
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 14px;
  min-width: 240px;
  outline: none;
  transition: border-color .2s ease;
}
.tm-email-input:focus{
  border-color: rgba(72,170,255,0.35);
}
.tm-email-input::placeholder{ color: rgba(234,240,255,0.4); }
.tm-email-btn{
  padding: 12px 24px !important;
  white-space: nowrap;
}
.tm-email-status{
  width: 100%;
  margin: 8px 0 0;
  font-size: 13px;
  min-height: 20px;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.tm-wa-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow:
    0 4px 20px rgba(37,211,102,0.35),
    0 0 0 0 rgba(37,211,102,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.tm-wa-float:hover{
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  animation: none;
}
.tm-wa-float svg{
  width: 28px;
  height: 28px;
}

@keyframes waPulse{
  0%, 100%{ box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}

/* =====================================================
   EXIT-INTENT POPUP
   ===================================================== */
.tm-popup-overlay{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.tm-popup-overlay.is-visible{
  opacity: 1;
  pointer-events: auto;
}
.tm-popup{
  position: relative;
  max-width: 420px;
  width: 100%;
  text-align: center;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid rgba(72,170,255,0.20);
  background: rgba(10,14,25,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform .3s ease;
}
.tm-popup-overlay.is-visible .tm-popup{
  transform: scale(1) translateY(0);
}
.tm-popup-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.tm-popup-close:hover{ background: rgba(255,255,255,0.1); }
.tm-popup-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(72,170,255,0.08);
  border: 1px solid rgba(72,170,255,0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.tm-popup-icon svg{
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.tm-popup h3{
  margin: 0 0 8px;
  font-size: 22px;
}
.tm-popup p{
  margin: 0 0 22px;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}
.tm-popup-btn{
  width: 100%;
  justify-content: center;
}
.tm-popup-skip{
  margin-top: 14px;
  background: none;
  border: none;
  color: rgba(234,240,255,0.5);
  font-size: 13px;
  cursor: pointer;
  transition: color .2s ease;
}
.tm-popup-skip:hover{ color: var(--text); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px){
  .tm-hero-inner{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .tm-hero-text{ order: 1; }
  .tm-hero-visual{ order: 0; }
  .tm-hero-sub{ margin-left: auto; margin-right: auto; }
  .tm-hero-actions{ justify-content: center; }
  .tm-social-proof{ justify-content: center; }

  .tm-float-badges{ display: none; }

  .tm-vs-grid{ grid-template-columns: 1fr; }

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

  .tm-steps-grid{
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .tm-step{ flex: none; width: 100%; max-width: 400px; }
  .tm-step-connector{
    padding-top: 0;
    transform: rotate(90deg);
  }

  .tm-testi-grid{ grid-template-columns: 1fr; }
  .tm-trust-grid{ grid-template-columns: 1fr; }

  .tm-email-box{
    flex-direction: column;
    text-align: center;
  }
  .tm-email-form{ width: 100%; justify-content: center; }
}

@media (max-width: 520px){
  .tm-hero{ padding: 36px 0 48px; }
  .tm-features-grid{ grid-template-columns: 1fr; }
  .tm-keys-grid{ gap: 10px; }
  .tm-key{ padding: 10px 14px; }
  .tm-table th, .tm-table td{ padding: 10px 12px; font-size: 13px; }
  .tm-cta-box{ padding: 36px 18px; }
  .tm-device-desktop{ width: min(220px, 52%); }
  .tm-device-mobile{ width: min(180px, 44%); margin-left: -44px; }
  .tm-email-input{ min-width: 100%; }
  .tm-wa-float{ bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .tm-wa-float svg{ width: 24px; height: 24px; }
}
