/* nerde! — Modern Premium Theme */

:root {
  --primary: #ff00bf;
  --primary-dark: #d900a3;
  --accent: #00bc7d;
  --accent-dark: #009966;
  --dark: #0c0c12;
  --dark-soft: #14141f;
  --gray-50: #f8f9fc;
  --gray-100: #eef0f6;
  --gray-200: #dde1ec;
  --gray-400: #8b92a8;
  --gray-600: #4a5068;
  --gray-800: #1e2130;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(12, 12, 18, 0.06);
  --shadow-md: 0 8px 32px rgba(12, 12, 18, 0.1);
  --shadow-lg: 0 24px 64px rgba(12, 12, 18, 0.14);
  --shadow-glow: 0 0 60px rgba(255, 0, 191, 0.15);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

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

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff4dd2);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 0, 191, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 0, 191, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(255, 0, 191, 0.06);
}

.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.nav-dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.nav-dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown ul a {
  padding: 10px 14px;
  font-size: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

/* Language selector */
.language-selector { position: relative; }

.language-selector .current-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}

.language-selector .current-lang:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.language-selector .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.language-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-selector .lang-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gray-600);
  border-radius: 8px;
  transition: var(--transition);
}

.language-selector .lang-item:hover {
  background: var(--gray-50);
  color: var(--primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff5fc 0%, #f0fdf8 50%, #fff 100%);
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  opacity: 0.12;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -50px;
  left: -100px;
  opacity: 0.15;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 0, 191, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero h1 strong { color: var(--primary); font-weight: 800; }

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stores a {
  transition: transform var(--transition);
}

.hero-stores a:hover { transform: translateY(-3px); }

.hero-stores img { height: 48px; width: auto; }

.hero-visual-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 500px;
}

.hero-phones-aura {
  position: absolute;
  inset: 10% 5%;
  background:
    radial-gradient(ellipse 65% 55% at 50% 55%, rgba(255, 0, 191, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 55% 45%, rgba(0, 188, 125, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-phones-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
  margin: 0 auto;
}

.hero-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform-origin: center center;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    z-index 0s;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.hero-phone:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 6px;
  border-radius: 24px;
}

.hero-phone img {
  display: block;
  width: 260px;
  max-width: 38vw;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border: none;
  border-radius: 22px;
  box-shadow: none !important;
  filter: none !important;
  pointer-events: none;
  user-select: none;
}

.hero-phone[data-slot="front"] {
  z-index: 5;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
  cursor: default;
}

.hero-phone[data-slot="front"] img {
  width: 290px;
  max-width: 42vw;
  max-height: 460px;
}

.hero-phone[data-slot="back-left"] {
  z-index: 1;
  transform: translate(calc(-50% - 95px), calc(-50% + 24px)) rotate(-16deg) scale(0.76);
  opacity: 0.9;
}

.hero-phone[data-slot="back-right"] {
  z-index: 2;
  transform: translate(calc(-50% + 95px), calc(-50% + 24px)) rotate(16deg) scale(0.76);
  opacity: 0.9;
}

.hero-phone[data-slot^="back"] {
  cursor: pointer;
}

.hero-phone[data-slot^="back"]:hover {
  opacity: 0.98;
}

.hero-qr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-top: 4px;
  margin-right: -280px;
  padding-right: 0;
}

.hero-qr-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.hero-qr-grid {
  display: flex;
  gap: 14px;
}

.hero-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 12, 18, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-qr-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 191, 0.25);
  box-shadow: 0 8px 24px rgba(12, 12, 18, 0.08);
}

.hero-qr-item img {
  width: 88px;
  height: 88px;
  display: block;
  border-radius: 8px;
}

.hero-qr-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

.stats-bar {
  background: var(--dark);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc { margin: 0 auto; }

.section-gray { background: var(--gray-50); }

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-icon.pink { background: rgba(255, 0, 191, 0.1); color: var(--primary); }
.feature-icon.green { background: rgba(0, 188, 125, 0.1); color: var(--accent); }

.feature-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Showcase alternating */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase.reverse .showcase-visual { order: 2; }
.showcase.reverse .showcase-content { order: 1; }

.showcase-visual img {
  border-radius: var(--radius-md);
  box-shadow: none;
  filter: none;
  max-width: 100%;
}

/* Mesajlaşma bölümü — tüm satır gri arka plan */
.showcase-messages {
  padding: 88px 0;
  background: #eef0f4;
}

.showcase-messages .showcase {
  align-items: center;
}

.showcase-messages .showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-messages .showcase-visual img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
}

.showcase-messages .showcase-content .section-label {
  margin-bottom: 12px;
}

.showcase-content h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.showcase-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* Security band */
.security-band {
  background: linear-gradient(135deg, var(--accent) 0%, #00d68f 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.security-band::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

.security-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.security-band p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.75;
}

.security-band img {
  max-width: 280px;
  margin: 0 auto;
  filter: none;
  box-shadow: none;
}

/* CTA */
.cta-section {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 0, 191, 0.15), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(0, 188, 125, 0.12), transparent 60%);
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.cta-stores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-stores a { transition: transform var(--transition); }
.cta-stores a:hover { transform: scale(1.05); }
.cta-stores img { height: 54px; width: auto; }

/* Blog */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 64px 0 100px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.65;
}

.blog-card .btn { align-self: flex-start; font-size: 13px; padding: 10px 20px; }

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.blog-tags a {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 0, 191, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Blog post */
.article-wrap {
  padding: calc(var(--header-h) + 48px) 0 100px;
}

.article-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.article-body {
  padding: 48px;
}

.article-body h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}

.article-body h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 32px;
}

.article-body p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 32px;
  transition: color var(--transition);
}

.article-back:hover { color: var(--primary); }

/* PDF pages */
.page-pdf {
  padding: calc(var(--header-h) + 48px) 0 80px;
  min-height: 60vh;
}

.page-pdf #pdf-viewer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.page-pdf canvas {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--gray-400);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-stores {
  display: flex;
  gap: 12px;
}

.footer-stores img { height: 40px; width: auto; }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-social img { width: 20px; height: 20px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* App download banner (QR'lar img/2.png içinde) */
.app-banner {
  padding: 0 0 64px;
  background: var(--white);
}

.app-banner .container {
  max-width: 1100px;
}

.app-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

/* Contact page */
.contact-section { padding-top: 0; }

.contact-info-only {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-only .contact-info-card {
  text-align: left;
}

.contact-info-only .contact-social {
  justify-content: center;
  margin-top: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-100);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-item:first-child { padding-top: 0; }

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 0, 191, 0.1), rgba(0, 188, 125, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.contact-info-item a:hover { color: var(--primary); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 0, 191, 0.08);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form .btn { width: 100%; margin-top: 8px; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-alert i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.contact-alert-success {
  background: rgba(0, 188, 125, 0.1);
  color: #007a52;
  border: 1px solid rgba(0, 188, 125, 0.2);
}

.contact-alert-error {
  background: rgba(255, 0, 191, 0.08);
  color: #b8008a;
  border: 1px solid rgba(255, 0, 191, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .showcase,
  .security-band { grid-template-columns: 1fr; gap: 40px; }

  .showcase.reverse .showcase-visual,
  .showcase.reverse .showcase-content { order: unset; }

  .hero-visual-col { order: -1; align-items: center; }
  .hero-qr { align-items: center; margin-right: 0; padding-right: 0; }
  .hero-phones { min-height: 400px; }
  .hero-phones-stack { height: 400px; max-width: 340px; }
  .hero-phone[data-slot="front"] img { width: 240px; max-height: 400px; }
  .hero-phone img { width: 200px; max-height: 340px; }
  .hero-phone[data-slot="back-left"] {
    transform: translate(calc(-50% - 62px), calc(-50% + 18px)) rotate(-14deg) scale(0.74);
  }
  .hero-phone[data-slot="back-right"] {
    transform: translate(calc(-50% + 62px), calc(-50% + 18px)) rotate(14deg) scale(0.74);
  }
  .showcase-messages .showcase-visual img { width: 240px; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-menu a { padding: 14px 16px; font-size: 16px; }

  .nav-dropdown ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .nav-dropdown.open ul { display: block; }

  .nav-actions {
    flex-direction: column;
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .nav-actions .btn { width: 100%; }

  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { min-height: auto; padding-bottom: 48px; }
  .section { padding: 64px 0; }
  .security-band { padding: 40px 28px; }
  .cta-section { padding: 48px 28px; }
  .article-body { padding: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}
