@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #478CC1;
  --primary-deep: #2f6fa0;
  --primary-hover: #357cae;
  --primary-light: rgba(71, 140, 193, 0.12);
  --hero-top: #6aade0;
  --hero-mid: #478CC1;
  --hero-bottom: #2f6fa0;
  --dark: #111113;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted: #86868b;
  --light: #f5f5f7;
  --border: #e5e5ea;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --max: 1180px;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--text-primary);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -0.03em;
}

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

a {
  color: var(--primary);
  transition: color var(--transition);
}

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

/* ---------- Header ---------- */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

header:not(.scrolled) {
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: filter var(--transition);
}


header nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

header nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #515154;
  transition: font-weight var(--transition), color var(--transition);
}

header:not(.scrolled) nav a {
  color: rgba(255, 255, 255, 0.9);
}

header nav a:hover {
  color: var(--primary);
  font-weight: 800;
}

header nav li.curr a {
  color: var(--primary);
}

header:not(.scrolled) nav a:hover {
  color: #fff;
  font-weight: 800;
}

header:not(.scrolled) nav li.curr a {
  color: #fff;
}

.btn-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

header:not(.scrolled) .btn-mobile-toggle {
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-nav {
  background: #fff;
  color: var(--primary-deep);
  padding: 9px 16px;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

header.scrolled .btn-nav {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.btn-download {
  background: #34c759;
  color: #fff;
}

.btn-download:hover {
  background: #2db84e;
  color: #fff;
}

.btn-buy {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-buy:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-dark {
  background: #2c2c2e;
  color: #fff;
  font-size: 14px;
  padding: 12px 18px;
}

.btn-dark:hover {
  background: #111;
  color: #fff;
}

.btn-dark i {
  font-size: 11px;
}

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

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

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  padding: 110px 0 0;
  background: linear-gradient(115deg, #3a7eb3 0%, #478CC1 42%, #5ea3d4 100%);
  color: #fff;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px 40px;
  align-items: center;
  padding: 0 28px 8px;
  min-height: auto;
}

.hero-brand {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  color: #ffffff !important;
}

.hero h1.hero-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 26px;
  max-width: 500px;
  font-weight: 500;
}

.hero-subtitle strong {
  color: #ffffff;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82) !important;
}

.hero-meta strong {
  color: #ffffff !important;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 4;
  margin-bottom: -28px;
  padding-bottom: 0;
}

.hero-visual img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 16px 20px rgba(20, 45, 70, 0.18));
  image-rendering: auto;
}

/* iMazing-style shallow bottom curve — full viewport width */
.hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  min-width: 100%;
  height: clamp(48px, 6vw, 72px);
}

.hero-wave path {
  fill: #ffffff;
}

/* ---------- Intro panel ---------- */
.panels-section {
  padding: 24px 28px 48px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.panel {
  max-width: var(--max);
  margin: 0 auto;
  background: #f7f8fa;
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.panel-intro h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  text-align: center;
  margin-bottom: 28px;
  text-wrap: balance;
}

.panel-body {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.panel-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4f;
}

/* ---------- Features zigzag ---------- */
.features-alternating {
  padding: 72px 28px 40px;
  background: #fff;
}

.alt-row {
  max-width: 1080px;
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.alt-row:last-child {
  margin-bottom: 40px;
}

.alt-row.reverse .alt-visual {
  order: -1;
}

.alt-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  background: var(--primary);
}

.alt-icon-1,
.alt-icon-2,
.alt-icon-3,
.alt-icon-4 {
  background: var(--primary);
}

.alt-text h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin-bottom: 18px;
}

.alt-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.alt-text .btn {
  margin-top: 12px;
}

.media-frame {
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
}

.media-frame img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.media-frame-blue,
.media-frame-mint,
.media-frame-lilac,
.media-frame-sand {
  background: #f2f4f7;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 8px 0 6px;
}

.bullet-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-primary);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23478CC1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
}

.screenshot-caption {
  margin-top: 14px;
  font-size: 13px;
}

/* ---------- Requirements ---------- */
.requirements-section {
  padding: 40px 28px 90px;
  background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}

.req-single {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.req-single h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
}

.req-table td {
  padding: 14px 0;
  font-size: 14.5px;
  border-bottom: 1px solid #ececf0;
  vertical-align: top;
}

.req-table tr:last-child td {
  border-bottom: none;
}

.req-table td:first-child {
  width: 150px;
  font-weight: 700;
  color: var(--dark);
}

.req-table td:last-child {
  color: var(--text-secondary);
}

/* ---------- Apps (dark) ---------- */
.apps-section {
  padding: 100px 28px;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(71, 140, 193, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(71, 140, 193, 0.18) 0%, transparent 40%),
    #0b0f14;
  color: #fff;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header .tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-header h2 {
  font-size: clamp(30px, 3.4vw, 40px);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
}

.section-header-light .tag {
  color: #9ec9e8;
}

.section-header-light h2 {
  color: #fff;
}

.apps-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 72px;
}

.app-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.app-copy h3 {
  color: #fff;
  font-size: clamp(26px, 2.8vw, 34px);
  margin-bottom: 16px;
}

.app-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}

.app-visual {
  position: relative;
}

.app-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.app-badge {
  position: absolute;
  left: 22px;
  bottom: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #7eb8df);
  box-shadow: 0 12px 28px rgba(71, 140, 193, 0.45);
}

/* ---------- Coverage ---------- */
.coverage-section {
  padding: 90px 28px;
  background: #fff;
}

.coverage-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.coverage-col h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.awards-box {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: inline-flex;
}

.awards-img {
  max-width: 260px;
}

.coverage-note {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(71, 140, 193, 0.2);
}

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

.share-heading {
  margin-top: 44px !important;
}

.share-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 16px !important;
  margin-bottom: 32px !important;
}

.share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
}

/* Hide AddToAny default injected SVGs & labels so only our clean FontAwesome icons show */
.share-row .a2a_svg,
.share-row .a2a_label {
  display: none !important;
}

.share-btn i {
  font-size: 14px !important;
}

.share-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  filter: brightness(1.1) !important;
}

.a2a_button_facebook.share-btn {
  background: #1877f2 !important;
  color: #fff !important;
}

.a2a_button_twitter.share-btn {
  background: #000000 !important;
  color: #fff !important;
}

.a2a_button_reddit.share-btn {
  background: #ff4500 !important;
  color: #fff !important;
}

.a2a_button_linkedin.share-btn {
  background: #0a66c2 !important;
  color: #fff !important;
}

.a2a_button_email.share-btn {
  background: #5b6b7c !important;
  color: #fff !important;
}

/* ---------- Vertical Floating Share Bar (Desktop Only) ---------- */
.desktop-share-float {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  z-index: 999 !important;
  width: auto !important;
  height: auto !important;
  position: fixed !important;
  left: 20px !important;
  top: 240px !important;
}

/* Hide AddToAny default injected SVGs & labels in the floating bar too */
.desktop-share-float .a2a_svg,
.desktop-share-float .a2a_label {
  display: none !important;
}

.share-float-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  text-decoration: none !important;
}

.share-float-btn i {
  font-size: 15px !important;
}

.share-float-btn:hover {
  transform: scale(1.1) translateX(3px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  filter: brightness(1.1) !important;
}

.a2a_button_facebook.share-float-btn {
  background: #1877f2 !important;
  color: #fff !important;
}

.a2a_button_twitter.share-float-btn {
  background: #000000 !important;
  color: #fff !important;
}

.a2a_button_reddit.share-float-btn {
  background: #ff4500 !important;
  color: #fff !important;
}

.a2a_button_linkedin.share-float-btn {
  background: #0a66c2 !important;
  color: #fff !important;
}

.a2a_button_email.share-float-btn {
  background: #5b6b7c !important;
  color: #fff !important;
}

/* Hide floating bar on mobile/tablet */
@media (max-width: 1024px) {
  .desktop-share-float,
  .a2a_floating_style,
  .a2a_kit.a2a_floating_style {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    left: -9999px !important;
  }
}

/* ---------- Guides ---------- */
.guides-section {
  padding: 40px 28px 110px;
  background: #fff;
}

.guides-list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
}

.guides-list li {
  border-bottom: 1px solid #ececf0;
}

.guides-list li:first-child {
  border-top: 1px solid #ececf0;
}

.guides-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6px;
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
}

.guides-list a:hover {
  color: var(--primary);
}

.guides-list a i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background var(--transition), color var(--transition);
}

.guides-list a:hover i {
  background: var(--primary);
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b0f14;
  color: var(--text-muted);
  padding: 56px 28px 36px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.footer-inner {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  height: 80px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #171b22;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 28px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.footer-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 28px;
}

.trust-badge-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #11151c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.trust-badge-modern:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #171c26;
  transform: translateY(-1px);
}

.trust-badge-modern i {
  font-size: 20px;
  flex-shrink: 0;
}

.trust-badge-modern.mcafee i {
  color: #ff3b30;
}

.trust-badge-modern.norton i {
  color: #ffcc00;
}

.trust-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.trust-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.trust-desc {
  font-size: 10px;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 11px;
  line-height: 1.7;
  color: #555963;
}

.footer-legal a {
  color: var(--text-muted);
}

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {

  .hero-container,
  .alt-row,
  .alt-row.reverse,
  .app-block,
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alt-row.reverse .alt-visual {
    order: 0;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 0;
  }

  .hero-container {
    min-height: auto;
    padding: 0 20px 12px;
    align-items: center;
  }

  .hero-visual img {
    max-width: 440px;
    filter: drop-shadow(0 12px 18px rgba(18, 48, 78, 0.18));
  }

  .hero-wave {
    margin-top: 0;
  }

  .hero-wave svg {
    height: 44px;
  }

  .panel {
    padding: 32px 22px;
  }

  .alt-row {
    margin-bottom: 72px;
  }

  .media-frame {
    min-height: 220px;
    padding: 14px;
  }
}

@media (max-width: 800px) {
  .btn-mobile-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 18px 24px 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  }

  header nav.active {
    display: block;
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  header:not(.scrolled) nav a,
  header:not(.scrolled) nav a:hover,
  header:not(.scrolled) nav li.curr a {
    color: var(--dark);
  }

  header:not(.scrolled) nav li.curr a {
    color: var(--primary);
  }
}

@media (max-width: 560px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .guides-list a {
    font-size: 14.5px;
  }
}

/* ---------- UI Feature Card Component ---------- */
.ui-feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
}

.ui-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.ui-card-header {
  border-bottom: 1px solid #ececf0;
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.ui-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary-light);
  color: var(--primary-deep);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ui-card-header h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 2px;
}

.ui-card-header p {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.ui-feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.ui-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition);
}

.ui-feature-list li:hover {
  transform: translateX(4px);
}

.ui-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ui-icon-wrapper.export {
  background: rgba(71, 140, 193, 0.1);
  color: #478CC1;
}

.ui-icon-wrapper.import {
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
}

.ui-icon-wrapper.itunes {
  background: rgba(255, 149, 0, 0.1);
  color: #ff9500;
}

.ui-icon-wrapper.cross-device {
  background: rgba(88, 86, 214, 0.1);
  color: #5856d6;
}

.ui-icon-wrapper.backup {
  background: rgba(255, 45, 85, 0.1);
  color: #ff2d55;
}

.ui-icon-wrapper.compat {
  background: rgba(90, 200, 250, 0.1);
  color: #5ac8fa;
}

.ui-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.ui-item-text strong {
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}

.ui-item-text span {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ---------- Awards & Accreditations Grid ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 14px;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition);
}

.award-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.award-card i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.award-card.award-softpedia i {
  background: rgba(71, 140, 193, 0.1);
  color: #478CC1;
}

.award-card.award-cnet i {
  background: rgba(255, 45, 85, 0.1);
  color: #ff2d55;
}

.award-card.award-pcmag i {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

.award-card.award-downloadnew i {
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
}

.award-card.award-download3k i {
  background: rgba(48, 176, 199, 0.1);
  color: #30b0c7;
}

.award-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.award-card-text strong {
  font-size: 13px;
  color: var(--dark);
  font-weight: 700;
}

.award-card-text span {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 90px 28px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-container {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}

.faq-item.active {
  background: #ffffff;
  border-color: rgba(71, 140, 193, 0.25);
  box-shadow: 0 8px 24px rgba(71, 140, 193, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question h4 {
  font-size: 16px;
  color: var(--dark);
  font-weight: 700;
  transition: color var(--transition);
  margin: 0;
}

.faq-question:hover h4,
.faq-item.active .faq-question h4 {
  color: var(--primary);
}

.faq-icon {
  font-size: 14px;
  color: var(--text-secondary);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Article & Tutorial Pages Layout ---------- */
.article-section {
  padding: 120px 28px 90px !important;
  background: #fbfbfd;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

.article-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  min-width: 0;
}

.article-main,
.article-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-body {
  display: block;
}

.article-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 13.5px;
  padding-top: 6px;
  margin-bottom: 16px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta span strong {
  color: var(--text-primary);
}

.article-title {
  font-size: 38px;
  line-height: 1.15;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-intro {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Quick Jump Navigation Menu */
.jump-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.jump-box h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.jump-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.jump-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-primary);
  transition: color var(--transition);
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.jump-link i {
  color: var(--primary);
  font-size: 12px;
  margin-top: 5px;
  transition: transform var(--transition);
}

.jump-link:hover {
  color: var(--primary);
}

.jump-link:hover i {
  transform: translateX(4px);
}

/* Method Cards */
.method-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.method-card h2,
.method-card h3,
.method-card h4,
.method-card p {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.method-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--primary-light);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.method-heading {
  color: var(--primary-deep) !important;
}

.method-card h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--dark);
}

.method-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Screenshot Frame styling */
.screenshot-frame {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  margin: 32px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  max-width: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
}

.screenshot-frame img {
  border-radius: 6px;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.screenshot-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* Code blocks inside articles — never widen the page */
.article-body pre,
.method-card pre {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre;
}

.article-body pre code,
.method-card pre code {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

/* Sidebar Styling */
.article-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--dark);
}

.sidebar-widget p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.sidebar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.sidebar-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-primary);
}

.sidebar-features li i {
  color: #34c759;
  font-size: 14px;
  margin-top: 2px;
}

.sidebar-download-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-download-ctas .btn {
  width: 100%;
  padding: 12px 18px;
  font-size: 14.5px;
}

.method-download-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  max-width: 500px;
  width: 100%;
}

.method-download-ctas .btn {
  flex: 1 1 160px;
  padding: 12px 18px;
  font-size: 14.5px;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .method-download-ctas {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .method-download-ctas .btn {
    flex: 1 1 auto;
    width: 100%;
    white-space: normal;
  }
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.sidebar-links li a:hover {
  color: var(--primary);
}

.sidebar-links li a i {
  font-size: 11px;
}

/* Tablet & Mobile Layout Adaptations */
@media (max-width: 1024px) {
  .article-section {
    padding: 100px 20px 60px !important;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }

  .article-title {
    font-size: 32px;
  }

  .screenshot-frame {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 24px auto;
  }

  .method-card {
    padding: 28px 22px;
  }

  .jump-box {
    padding: 20px;
  }

  .jump-link {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .article-section {
    padding: 100px 16px 40px !important;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .method-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
  }

  .article-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .article-intro,
  .article-body > p,
  .method-card p {
    font-size: 15px;
  }

  .article-meta {
    gap: 10px 14px;
    font-size: 12.5px;
  }

  .sidebar-widget {
    padding: 20px 16px;
  }

  .screenshot-frame {
    padding: 8px;
    margin: 18px auto;
  }

  .method-card h2 {
    font-size: 20px;
  }

  .method-card h3 {
    font-size: 17px;
  }

  .site-footer {
    padding: 48px 16px 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-logo img {
    height: 64px;
    max-width: 200px;
    width: auto;
  }

  .footer-trust {
    flex-direction: column;
    gap: 12px;
  }

  .trust-badge-modern {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    box-sizing: border-box;
  }

  .footer-links {
    gap: 10px 16px;
  }

  .logo-img {
    height: 48px;
    max-width: min(180px, 55vw);
    width: auto;
  }

  .nav-container {
    padding: 12px 16px;
  }
}

/* ---------- Solid Nav Overrides (For Non-Homepage Views) ---------- */
header.solid-nav {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) !important;
}

header.solid-nav .logo-img {
  filter: none !important;
}

header.solid-nav nav a {
  color: #515154 !important;
}

header.solid-nav nav a:hover,
header.solid-nav nav li.curr a {
  color: var(--primary) !important;
}

header.solid-nav .btn-mobile-toggle {
  color: var(--dark) !important;
}

header.solid-nav .btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* ---------- Press & Languages Section ---------- */
.press-languages-section {
  padding: 100px 28px;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.press-languages-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.press-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.press-col h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.btn-press-articles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background: #eef5ff;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 40px;
}

.btn-press-articles:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.press-logos-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logos-img {
  max-width: 65%;
  height: auto;
}

.languages-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.languages-col h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 40px;
}

.languages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lang-item {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ff8b3d;
  transition: transform var(--transition), color var(--transition);
  cursor: default;
}

.lang-item:hover {
  transform: scale(1.1);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .press-languages-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .press-col,
  .languages-col {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .logo-img {
    height: 60px;
  }
}

/* ---------- Scroll to Top Button ---------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition), visibility var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(71, 140, 193, 0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(71, 140, 193, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}