/* iproby.online — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =============================== */
/* CSS Custom Properties            */
/* =============================== */
:root {
  --primary: #0E7DE8;
  --primary-hover: #0B6BCF;
  --primary-light: #E4F2FF;
  --secondary: #018bc6;
  --bg: #F1F1F1;
  --bg-white: #FFFFFF;
  --bg-card: #F9F9F9;
  --text: #333333;
  --text-secondary: #666666;
  --text-light: #747474;
  --header-bg: #303030;
  --border: #E0DEDE;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-md: rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --max-w: 1140px;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
  --bg: #1a1a2e;
  --bg-white: #16213e;
  --bg-card: #1e2a47;
  --text: #e0e0e0;
  --text-secondary: #b0b0b0;
  --text-light: #888;
  --header-bg: #0f0f23;
  --border: #2a2a4a;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-md: rgba(0, 0, 0, 0.4);
}

/* =============================== */
/* Reset & Base                     */
/* =============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================== */
/* Header                          */
/* =============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__logo span { color: var(--primary); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}
.header__nav a:hover { color: #fff; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Selectors in header */
.selector-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.selector-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.8rem;
  font-family: var(--font);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.selector-btn:hover { background: rgba(255,255,255,0.2); }

.theme-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.theme-toggle:hover { background: rgba(255,255,255,0.2); }

.btn-online-help {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-online-help:hover { background: var(--primary-hover); color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Dropdown menu for language/currency */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px var(--shadow-md);
  min-width: 160px;
  z-index: 1001;
  overflow: hidden;
}
.dropdown-menu.show { display: block; }
.dropdown-menu button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.dropdown-menu button:hover { background: var(--primary-light); }
.dropdown-menu button.active { background: var(--primary); color: #fff; }

/* Mobile slide-out menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--header-bg);
  z-index: 1100;
  padding: 80px 24px 24px;
  transition: right 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}
.mobile-overlay.show { display: block; }

/* =============================== */
/* Hero Section                     */
/* =============================== */
.hero {
  padding: 120px 0 80px;
  background: var(--bg);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }

.btn--outline {
  background: var(--bg-white);
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual lottie-player,
.hero__visual .lottie-fallback {
  width: 100%;
  max-width: 420px;
}

.lottie-fallback {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-hero 3s ease-in-out infinite;
}

@keyframes pulse-hero {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.lottie-fallback svg {
  width: 160px;
  height: 160px;
}

/* =============================== */
/* Section Common                   */
/* =============================== */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-white);
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.section__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.section__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.section__link:hover { gap: 8px; }
.section__link::after { content: '→'; transition: all var(--transition); }

/* =============================== */
/* Services List                    */
/* =============================== */
.services-list {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
  transition: background var(--transition);
}

.service-item:last-child { border-bottom: none; }
.service-item:hover { background: var(--primary-light); }

[data-theme="dark"] .service-item:hover { background: rgba(14,125,232,0.1); }

.service-item__name {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

.service-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  text-align: right;
  min-width: 100px;
}

.service-item__price .price-converted {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}
.service-item__price .price-byn {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}

/* Services bottom actions */
.services-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =============================== */
/* Why Choose Us                    */
/* =============================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

[data-theme="dark"] .why-card__icon {
  background: rgba(14,125,232,0.2);
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================== */
/* Reviews                          */
/* =============================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.review-card__stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.review-card__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-card__author { font-weight: 600; color: var(--text); }

/* =============================== */
/* Articles                         */
/* =============================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.article-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
}

.article-card__body {
  padding: 20px;
}

.article-card__date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* =============================== */
/* Footer                           */
/* =============================== */
.footer {
  background: var(--header-bg);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--primary); }

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
}

.footer__info {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__nav a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__nav a:hover { color: #fff; }

.footer__contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__contacts a:hover { color: #fff; }

.footer__contacts .contact-icon {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.8); }

.footer__pplx {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* =============================== */
/* Back to Top                      */
/* =============================== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14,125,232,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-2px); }

/* =============================== */
/* Mobile sticky CTA                */
/* =============================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 950;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  letter-spacing: 0.3px;
}

/* =============================== */
/* Contact Form Modal               */
/* =============================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--text); }

.modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--primary-hover); }
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-submit.loading {
  position: relative;
  color: transparent;
}
.form-submit.loading::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Form status messages */
.form-status {
  margin-top: 16px;
  padding: 0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
}
.form-status--loading {
  padding: 14px;
  background: var(--primary-light);
  color: var(--primary);
  animation: fadeIn 0.3s ease;
}
.form-status--success {
  padding: 14px;
  background: #d4edda;
  color: #155724;
  animation: fadeIn 0.3s ease;
}
.form-status--error {
  padding: 14px;
  background: #f8d7da;
  color: #721c24;
  animation: fadeIn 0.3s ease;
}
[data-theme="dark"] .form-status--loading {
  background: rgba(14,125,232,0.15);
}
[data-theme="dark"] .form-status--success {
  background: rgba(21,87,36,0.3);
  color: #7dc88d;
}
[data-theme="dark"] .form-status--error {
  background: rgba(114,28,36,0.3);
  color: #f5a0a8;
}
.form-status-icon {
  font-size: 1.2rem;
  font-weight: 700;
}
.form-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================== */
/* Scroll Animations                */
/* =============================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================== */
/* Subpage content                  */
/* =============================== */
.page-content {
  padding: 100px 0 60px;
  min-height: 60vh;
}

.page-content__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.page-content__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 720px;
}

.about-list {
  list-style: none;
}

.about-list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Contact page cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px var(--shadow);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Google Translate override */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

/* =============================== */
/* Responsive                       */
/* =============================== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: block; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__buttons { justify-content: center; }
  .hero__visual { order: -1; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__title { font-size: 1.8rem; }
  .section__title { font-size: 1.4rem; }
  .lottie-fallback { width: 220px; height: 220px; }
  .lottie-fallback svg { width: 100px; height: 100px; }
  .service-item { padding: 14px 16px; flex-wrap: wrap; }
  .service-item__name { font-size: 0.85rem; flex-basis: 100%; }
  .service-item__price { margin-left: auto; margin-top: 4px; }
  .mobile-cta { display: block; }
  .back-to-top { bottom: 70px; }
  .modal { padding: 24px; }
  .btn-online-help { display: none; }
  .selector-btn { font-size: 0.72rem; padding: 4px 7px; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 0 60px; }
  .hero__title { font-size: 1.5rem; }
  .hero__desc { font-size: 0.9rem; }
  .section { padding: 50px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__buttons { flex-direction: column; align-items: center; }
}

/* Article image placeholder gradient variations */
.article-card:nth-child(1) .article-card__img {
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
}
.article-card:nth-child(2) .article-card__img {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.article-card:nth-child(3) .article-card__img {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

[data-theme="dark"] .article-card__img {
  background: linear-gradient(135deg, #1e3a5f, #2a4a7f) !important;
}


/* =============================== */
.hero-visual-modern {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.6;
}

.blob-1 {
  width: 240px;
  height: 240px;
  background: var(--primary);
  top: 5%;
  left: 5%;
  animation: float1 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: 5%;
  right: 5%;
  animation: float2 8s ease-in-out infinite;
}

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .glass-card {
  background: rgba(30, 30, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.main-card {
  width: 240px;
  height: 240px;
  flex-direction: column;
  animation: float3 5s ease-in-out infinite;
}

.hero-apple {
  width: 90px;
  height: 90px;
  color: var(--text);
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero-badge {
  background: rgba(0, 113, 227, 0.1);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(0, 113, 227, 0.2);
}

[data-theme="dark"] .hero-badge {
  color: #fff;
  background: var(--primary);
  border: none;
}

.small-card {
  position: absolute;
  padding: 12px 20px;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 16px;
  animation: float4 7s ease-in-out infinite;
}

.card-tl {
  top: 10%;
  left: -5%;
  animation-delay: 1s;
}

.card-br {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -20px) scale(0.9); }
}

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

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

@media (max-width: 480px) {
  .hero-visual-modern { transform: scale(0.8); height: 320px; }
  .card-tl { left: -20px; }
  .card-br { right: -20px; }
}

/* =============================== */
/* Modern Apple Hero              */
/* =============================== */
.hero {
  padding: 160px 0 100px;
  background: var(--bg);
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,113,227,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, rgba(0,113,227,0.15) 0%, rgba(18,18,18,0) 70%);
}

.hero__inner.hero__inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title.hero__title--apple {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc.hero__desc--apple {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero__buttons.hero__buttons--centered {
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }
  .hero__title.hero__title--apple {
    font-size: 3rem;
    letter-spacing: -1px;
  }
  .hero__desc.hero__desc--apple {
    font-size: 1.1rem;
  }
}
