/* ==========================================================================
   VETNUS - MODERN VETERINER KLINIK YAZILIMI
   Ana Stil Dosyası
========================================================================== */

:root {
  /* Renk Paleti - Sicak & Güven Veren SaaS Dili */
  --c-primary: #F97316;       /* Sicak Turuncu / Amber */
  --c-primary-hover: #EA580C;
  --c-primary-light: #FFEDD5;
  --c-secondary: #0F172A;     /* Güven Veren Lacivert / Koyu Gri */
  --c-secondary-hover: #1E293B;
  
  --c-text-main: #334155;
  --c-text-muted: #64748B;
  --c-text-light: #94A3B8;
  
  --c-bg: #FAFAFA;
  --c-bg-soft: #F8FAFC;
  --c-white: #FFFFFF;
  --c-border: #E2E8F0;
  
  --c-success: #10B981;
  --c-danger: #EF4444;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-head: 'Outfit', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Header height offset */
}

body {
  font-family: var(--font-sans);
  color: var(--c-text-main);
  background-color: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--c-secondary);
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-xl) 0;
}

.bg-soft {
  background-color: var(--c-bg-soft);
}

.center {
  text-align: center;
}

/* ==========================================================================
   TYPOGRAPHY & UTILS
========================================================================== */
.section-header {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--c-text-muted);
}

.highlight {
  color: var(--c-primary);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-md);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--c-border);
  color: var(--c-secondary);
}

.btn-outline:hover {
  border-color: var(--c-secondary);
  background-color: var(--c-secondary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER
========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

.site-header.scrolled .header-inner {
  height: 70px;
}

.logo img {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--c-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--c-secondary);
  margin-bottom: 5px;
  transition: var(--transition);
}
.mobile-toggle span:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   HERO SECTION
========================================================================== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fffbf7 0%, #fef2f2 100%);
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--c-primary-light);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--c-primary);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  animation: ripple 1.5s infinite ease-out;
}

@keyframes ripple {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-secondary);
}

.trust-item svg {
  color: var(--c-success);
}

.hero-visual {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
}

.hero-img {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}
.hero-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
  position: absolute;
  background: var(--c-white);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  border: 1px solid var(--c-border);
}

.top-right {
  top: 10%;
  right: -5%;
}

.f-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-icon.green { background: #d1fae5; color: var(--c-success); }

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--c-secondary);
  font-family: var(--font-head);
}
.floating-card span {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   NEDEN VETNUS?
========================================================================== */
.card {
  background: var(--c-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--c-border);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-primary-light);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon svg { width: 28px; height: 28px; }

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   ÖZELLİKLER (FEATURES)
========================================================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.f-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--c-white);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-secondary);
  transition: var(--transition);
}

.feature-item:hover .f-icon-box {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: scale(1.05);
}

.f-icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.feature-item p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   KLINİKLER İÇİN / HASTA SAHİPLERİ İÇİN (USER TYPES)
========================================================================== */
.split-layout {
  display: flex;
  gap: 2rem;
}

.split-col {
  flex: 1;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.badge-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  background: var(--c-secondary);
  color: var(--c-white);
}

.badge-tag.outline {
  background: transparent;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.box-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--c-text-main);
  font-size: 1.05rem;
}

.benefit-list li svg {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 5px;
}

.animal-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0.8;
}
.animal-icons.right { justify-content: flex-end; }
.pet-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(0.5) contrast(0.8);
  transition: var(--transition);
}
.pet-icon:hover {
  filter: grayscale(0) contrast(1);
  transform: scale(1.1) rotate(5deg);
}


/* ==========================================================================
   NASIL ÇALIŞIR (STEPS)
========================================================================== */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-line {
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--c-border);
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--c-white);
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-head);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 10px var(--c-bg);
}

.step-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.step-item p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   GÜVEN BÖLÜMÜ (TRUST SECTION)
========================================================================== */
.trust-section {
  background: var(--c-secondary);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.trust-content {
  flex: 1;
  max-width: 600px;
}

.trust-content h2 {
  color: var(--c-white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.trust-content p {
  color: #CBD5E1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}
.t-feat svg {
  width: 24px;
  height: 24px;
  color: var(--c-primary);
}

.trust-icon-large {
  opacity: 0.1;
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
}
.trust-icon-large img {
  width: 350px;
  height: 350px;
}
.spin-slow {
  animation: spin 30s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ==========================================================================
   FİYATLANDIRMA (PRICING)
========================================================================== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {  box-shadow: var(--shadow-lg); }

.price-card.popular {
  border: 2px solid var(--c-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: var(--c-white);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.p-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.p-header p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.p-price {
  margin: 2rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.currency { font-size: 1.5rem; font-weight: 600; color: var(--c-secondary); }
.amount { font-size: 3.5rem; font-weight: 800; font-family: var(--font-head); color: var(--c-secondary); line-height: 1; }
.period { font-size: 1rem; color: var(--c-text-muted); margin-left: 0.25rem; }

.save-badge {
  background: #d1fae5;
  color: #047857;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.p-features {
  margin-bottom: 2.5rem;
  text-align: left;
  flex: 1;
}
.p-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.95rem;
  color: var(--c-text-main);
}
.p-features li:last-child { border-bottom: none; }
.p-features li::before {
  content: '✓';
  color: var(--c-primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.price-trust-msg {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   S.S.S. (FAQ)
========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--c-secondary);
  cursor: pointer;
  text-align: left;
}

.faq-toggle:hover {
  color: var(--c-primary);
}

.faq-item .icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content {
  max-height: 500px;
}
.faq-item.active .faq-toggle {
  color: var(--c-primary);
}
.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-content p {
  padding-bottom: 1.25rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   İLETİŞİM / CTA SECTION
========================================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-primary-light) 100%);
}

.contact-wrapper {
  display: flex;
  gap: 4rem;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.contact-text p {
  color: var(--c-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ci-item svg {
  width: 24px;
  height: 24px;
  color: var(--c-primary);
}
.ci-item span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-secondary);
}

.contact-form-card {
  flex: 1;
  background: var(--c-bg-soft);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}
.half { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--c-text-main);
}
.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--c-white);
}
.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.error-msg {
  color: var(--c-danger);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input {
  border-color: var(--c-danger);
}
.form-group.error .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.form-error {
  display: none;
  background: #fee2e2;
  color: #991b1b;
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   FOOTER
========================================================================== */
.site-footer {
  background: var(--c-secondary);
  color: var(--c-white);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.f-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--c-white);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #CBD5E1;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--c-primary);
}

.footer-contact p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94A3B8;
  font-size: 0.9rem;
}

.creator-badge a {
  color: var(--c-primary);
  font-weight: 600;
}
.creator-badge a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   APP STORES
========================================================================== */
.hero-app-stores {
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
}

.store-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
}

.hero-store-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c-text-light); /* softer color */
  margin-top: 1rem;
}

.store-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap; /* allow wrapping on super thin screens */
}

.store-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--c-secondary);
  color: var(--c-white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none; /* Softened initial state */
}

.store-badge:hover {
  background-color: var(--c-secondary-hover);
  transform: translateY(-1px); /* Less aggressive hover */
  box-shadow: var(--shadow-sm); /* Softer hover shadow */
  color: var(--c-white);
}

.store-badge svg {
  width: 26px;
  height: 26px;
}

/* Specific Hero Resizing (~20% smaller) */
.hero-app-stores .store-badge {
  padding: 0.4rem 1rem;
}
.hero-app-stores .store-badge svg {
  width: 22px;
  height: 22px;
}
.hero-app-stores .st-small {
  font-size: 0.55rem;
}
.hero-app-stores .st-big {
  font-size: 0.95rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.st-small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.st-big {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-head);
}

.footer-app-badges {
  margin-top: 1.5rem;
}

.f-badge-label {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
}

.small-badges .store-badge {
  padding: 0.4rem 0.75rem;
}

.small-badges .store-badge svg {
  width: 20px;
  height: 20px;
}

.small-badges .st-big {
  font-size: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
========================================================================== */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .store-badges { justify-content: center; }
  .hero-trust { align-items: center; }
  .floating-card.top-right { right: auto; left: 50%; transform: translateX(-50%); top: -20px; }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-wrapper { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  
  .trust-container { flex-direction: column; text-align: center; }
  .trust-icon-large { display: none; }
  
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--c-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    clip-path: circle(0 at top right);
    transition: clip-path 0.4s ease-out;
  }
  .main-nav.active {
    clip-path: circle(150% at top right);
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
  }
  
  .hero-title { font-size: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  
  .split-layout { flex-direction: column; }
  
  .pricing-cards { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  
  .contact-wrapper { flex-direction: column; }
  .form-row { flex-direction: column; }
  
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}

@media (max-width: 480px) {
  .grid-4, .steps-wrapper, .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .store-badges { flex-direction: column; width: 100%; }
  .store-badge { width: 100%; justify-content: center; }
  .btn-large { width: 100%; }
}
