:root {
  --brand-red:  #96ce00;
  --brand-navy: #1a2732;
  --brand-slate: #536079;
  --brand-ice: #f8fbff;
  --bg-neutral: #f0f2f6;
  --card-border: #e1e5ee;
}

* {
  box-sizing: border-box;
}
footer h3{
  color: var(--brand-red);
}
body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background: white;
  color: var(--brand-navy);
}

.site-header,
main {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer-inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  border-bottom: 1px solid var(--card-border);
}

.logo {
  text-transform: lowercase;
  letter-spacing: 0.1em;
  display: flex;
    align-items: center;
}

.logo-mark {
  font-weight: 700;
  margin-right: 0.25rem;
}

.logo-sub {
  font-weight: 400;
  color: var(--brand-slate);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--brand-navy);
  font-weight: 500;
}

.currency-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

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

.currency-btn i {
  color: var(--primary);
}

.currency-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-width: 120px;
  z-index: 1000;
}

.currency-menu.hidden {
  display: none;
}

.currency-menu button {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.currency-menu button:hover {
  background-color: var(--bg-light);
}

.breeze {
  text-align: right;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero {
  padding: 2rem 4vw 1rem;
  
}

.hero-image {
    width: 100%;
    height: 402px;
    border-radius: 16px;
    background: url(/Hero.webp) center / cover no-repeat;
    position: relative;
    background-position-y: -121px;
    overflow: hidden;
}

.hero-image::after {
  content: "STAY CONNECTED EVERYWHERE YOU GO";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.search-bar {
  margin-top: -1.5rem;
  display: flex;
      position: relative;
    z-index: 9;
  gap: 0.75rem;
  background: white;
  padding: 0.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.12);
}

.search-bar input {
  flex: 1;
  border: none;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
}

.search-bar input:focus {
  outline: 2px solid var(--brand-red);
}

.search-bar button {
  border: none;
  background: var(--brand-red);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
}

.bundles {
  padding: 3rem 4vw 4rem;
}

.bundles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.bundles-header h2 {
  margin: 0;
  font-size: 2rem;
}

.bundle-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--brand-slate);
}

.bundle-controls select {
  border-radius: 999px;
  border: 1px solid var(--card-border);
  padding: 0.25rem 1.25rem 0.25rem 0.75rem;
}

.bundle-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.bundle-card {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.25rem;
  background: white;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
}

.bundle-card h3 {
  margin: 0;
  font-size: 1rem;
}

.bundle-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brand-slate);
      padding-top: 33px;
    padding-bottom: 25px;
}

.bundle-card .price {
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 1.25rem;
}

.bundle-card button {
  grid-column: 1 / -1;
  border: none;
  border-radius: 999px;
  padding: 0.6rem;
  background: var(--brand-red);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.popular-section {
  padding: 0 4vw 4rem;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-slate);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover {
  color: var(--brand-navy);
}

.tab-btn.active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

.tab-content {
  border-top: 2px solid var(--card-border);
  border-bottom: 2px solid var(--card-border);
  padding: 1.5rem 0;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.popular-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.all-destinations {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--card-border);
}

.all-destinations h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.all-list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.hidden {
  display: none;
}

.popular-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: white;
  text-decoration: none;
  color: inherit;
}

.popular-card strong {
  display: block;
  margin-bottom: 0.15rem;
}

.popular-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brand-slate);
}

.flag-badge {
  width: 48px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.card-arrow {
  margin-left: auto;
  color: var(--brand-slate);
  font-weight: 700;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  background: transparent;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  margin: 1.5rem auto 0;
  width: fit-content;
}

.connectivity-section {
  padding: 4rem 4vw;
}

.connectivity-text h3 {
  margin-bottom: 0.35rem;
}

.connectivity-text p {
  margin-top: 0;
  max-width: 720px;
  color: var(--brand-slate);
}

.stat-grid {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.stat-card {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
}

.flag-badge .fi {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  background-size: cover;
  background-position: center;
}

.flag-badge--stat {
  width: 40px;
  height: 28px;
  border-radius: 6px;
}

.stat-card .flag-badge {
  flex-shrink: 0;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
}

.stat-card p {
  margin: 0;
  color: var(--brand-slate);
}

.order-wrapper,
.dashboard-wrapper {
  padding: 4rem 4vw 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.order-headline,
.dashboard-headline {
  margin-bottom: 2rem;
}

.order-headline h1,
.dashboard-headline h1 {
  margin: 0.35rem 0 0.5rem;
}

.order-lede,
.dashboard-lede {
  margin: 0;
  color: var(--brand-slate);
  max-width: 640px;
}

.order-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--bg-neutral);
  color: var(--brand-slate);
}

.order-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.order-meta-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.order-meta-grid p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: var(--bg-neutral);
}

.order-meta-grid span {
  font-size: 0.85rem;
  color: var(--brand-slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-meta-grid strong {
  font-size: 1rem;
  color: var(--brand-navy);
  text-align: right;
}

.order-help ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.order-help li {
  color: var(--brand-slate);
}

.order-help a {
  color: var(--brand-navy);
  font-weight: 600;
  text-decoration: none;
}

.order-next {
  margin-top: 2rem;
}

.order-links,
.order-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
    justify-content: space-around;
}

.order-guides {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .order-wrapper,
  .dashboard-wrapper {
    padding: 3rem 1.5rem 4rem;
  }
}

.timeline-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.timeline-grid article {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: var(--bg-neutral);
}

.timeline-grid span {
  font-size: 0.85rem;
  color: var(--brand-slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
  color: var(--brand-navy);
}

.bundle-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  background: white;
}

.bundle-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.bundle-card header span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.bundle-card header strong {
  color: var(--brand-navy);
  font-size: 0.95rem;
}

.bundle-card header small {
  color: var(--brand-slate);
}

.bundle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bundle-item {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--bg-neutral);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bundle-item p {
  margin: 0;
  color: var(--brand-slate);
}

.bundle-item small {
  color: var(--brand-navy);
  font-weight: 600;
}

.usage-analytics {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.usage-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  background: white;
  text-align: center;
  box-shadow: 0 12px 28px rgba(10, 31, 68, 0.08);
}

.usage-ring {
  --progress: 0;
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: conic-gradient(var(--brand-red) calc(var(--progress) * 1%), #eef2fb 0);
  display: grid;
  place-items: center;
  position: relative;
}

.usage-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  background: white;
  border-radius: 50%;
}

.usage-ring-value {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.usage-card p {
  margin-bottom: 0;
  font-weight: 600;
}

.usage-card small {
  display: block;
  color: var(--brand-slate);
  margin-top: 0.35rem;
}

.esim-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.esim-meta-item {
  border: 1px dashed var(--card-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: white;
}

.esim-meta-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-slate);
  margin-bottom: 0.35rem;
}

.esim-meta-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  word-break: break-word;
}

.meta-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--brand-slate);
  font-style: italic;
}

@media (max-width: 600px) {
  .usage-ring {
    width: 130px;
  }
}

.steps-section {
  padding: 4rem 4vw 5rem;
  
}

.steps-section h3 {
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 35px rgba(10, 31, 68, 0.08);
}

.step-card h4 {
  margin-top: 0;
  min-height: 3rem;
}

.device-frame {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  border: 2px solid var(--card-border);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgb(150 206 0));
  margin: 1rem 0;
}

.step-card p {
  margin-bottom: 0;
  color: var(--brand-slate);
}

.site-footer {
  background: var(--brand-navy);
  color: white;
  padding: 3rem 0 2rem;
}


.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-columns h4 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-columns a {
  display: block;
  text-decoration: none;
  color: white;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.footer-columns .fa-apple,
.footer-columns .fa-google-play {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  transition: opacity 0.2s;
}

.footer-columns .fa-apple:hover,
.footer-columns .fa-google-play:hover {
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons span {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.footer-meta label {
  display: inline-flex;
  flex-direction: column;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}

.footer-meta select {
  margin-top: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: none;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #96ce00;
}

.legal a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-download-section {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--bg-neutral);
}

.app-download-section h3 {
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.app-download-section p {
  margin-bottom: 2rem;
  color: var(--brand-slate);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.app-store-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-store-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: white;
  text-decoration: none;
  color: var(--brand-navy);
  transition: all 0.2s ease;
  min-width: 160px;
}

.app-store-link:hover {
  border-color: var(--brand-red);
  box-shadow: 0 4px 12px rgba(150, 206, 0, 0.15);
  transform: translateY(-1px);
}

.app-store-link.apple {
  border-color: #000;
}

.app-store-link.apple:hover {
  border-color: #000;
  background: #000;
  color: white;
}

.app-store-link.google {
  border-color: #4285f4;
}

.app-store-link.google:hover {
  border-color: #4285f4;
  background: #4285f4;
  color: white;
}

.app-store-link i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.app-store-link div {
  text-align: left;
}

.download-text {
  display: block;
  font-size: 0.75rem;
  color: var(--brand-slate);
  margin-bottom: 0.125rem;
}

.app-store-link.apple .download-text,
.app-store-link.google .download-text {
  color: inherit;
}

.app-store-link strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .app-store-links {
    flex-direction: column;
    align-items: center;
  }

  .app-store-link {
    width: 100%;
    max-width: 280px;
  }
}

.detail-layout {
  padding: 2.5rem 4vw 4rem;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--brand-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crumbs a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
}

.bundle-title {
  margin: 1rem 0;
  font-size: 2.25rem;
  text-transform: uppercase;
}

.info-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--brand-ice);
  font-size: 0.9rem;
}

.info-banner + .info-banner {
  margin-top: 0.75rem;
}

.info-banner strong {
  font-weight: 600;
}

.info-banner a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
}

.panel-card {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(10, 31, 68, 0.08);
}

.panel-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.plan-tabs {
  display: flex;
  border-bottom: 2px solid var(--card-border);
  margin-top: 1.5rem;
}

.plan-tab {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.plan-tab.is-active {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.bundle-size-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.plan-card {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.plan-card .tag {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  background: var(--brand-red);
  color: white;
  font-size: 0.7rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card.is-selected {
  border-color: var(--brand-red);
  box-shadow: 0 12px 32px rgb(205 220 57 / 19%);
}

.plan-card h4 {
  margin: 0;
  font-size: 0.95rem;
}

.plan-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.35rem 0 0.75rem;
}

.currency-symbol {
  font-size: 0.8em;
  font-weight: 400;
}

.price-amount {
  font-size: 1em;
  font-weight: 700;
}

.plan-card small {
  color: var(--brand-slate);
      width: 100%;
    position: absolute;
    padding-top: 10px;
}

.plan-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--brand-navy);
}

.primary-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  border: none;
  border-radius: 999px;
  background: var(--brand-red);
  color: white;
  font-weight: 600;
  padding: 0.9rem 2.75rem;
  cursor: pointer;
  margin-top: 22px;
  font-size: 0.9rem;
  justify-content: center;
}

.details-section {
  margin-top: 3rem;
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
}

.details-section h4 {
  margin-bottom: 0.35rem;
}

.details-section p {
  margin-top: 0;
  color: var(--brand-slate);
  max-width: 720px;
}

.details-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.select-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.select-field select,
.select-field input {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.faq-list {
  margin-top: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  font-weight: 500;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item span {
  color: var(--brand-slate);
  font-weight: 700;
}

.faq-item a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
}

#esim-card {
  margin-top: 2rem;
}

#esim-card .panel-headline {
  margin-bottom: 1rem;
}

.esim-detail-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
}

.qr-wrapper {
  border: 1px dashed var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-neutral);
}

.qr-wrapper img {
  width: 220px;
  max-width: 100%;
  margin: 0 auto 1rem;
}

.qr-caption {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--brand-slate);
}

.activation-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: white;
  word-break: break-all;
}

.activation-chip span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-slate);
}

.activation-chip strong {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.esim-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.25rem;
  background: white;
  min-height: 220px;
}

.esim-fields p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.esim-fields span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-slate);
}

.esim-fields strong {
  font-size: 1rem;
  color: var(--brand-navy);
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .search-bar {
    flex-direction: column;
    border-radius: 24px;
  }

  .search-bar button,
  .search-bar input {
    width: 100%;
    border-radius: 18px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plan-tabs {
    flex-direction: column;
  }

  .info-banner {
    flex-direction: column;
    text-align: center;
  }

  .faq-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Filter styles */
.filters-section {
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-neutral);
  border-radius: 8px;
}

.filters-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--brand-navy);
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--brand-slate);
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--card-border);
  background: white;
  color: var(--brand-navy);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.filter-btn:hover {
  background: var(--brand-red);
  color: white;
}

.filter-btn.active {
  background: var(--brand-red);
  color: white;
}

.loading {
  text-align: center;
  padding: 2rem;
  font-size: 1.2rem;
  color: var(--brand-slate);
}

#qr-code-container {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  place-items: anchor-center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
}

#qr-code-container p {
  font-size: 0.8rem;
}

.qr-close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.qr-close-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #333;
}

/* About Page Styles */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--brand-slate);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--brand-ice);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.stat-item i {
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
  display: block;
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--brand-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-slate);
  margin-bottom: 1rem;
}

.about-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.about-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--brand-ice);
  border-radius: 8px;
  border: 1px solid var(--card-border);
}

.coverage-item .fi {
  font-size: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.feature-card p {
  color: var(--brand-slate);
  line-height: 1.5;
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--brand-ice) 0%, white 100%);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--brand-slate);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.primary-btn {
  background: var(--brand-red);
  color: white;
  border: 2px solid var(--brand-red);
}

.primary-btn:hover {
  background: #7ab800;
  border-color: #7ab800;
}

.secondary-btn {
  background: white;
  color: var(--brand-navy);
  border: 2px solid var(--card-border);
}

.secondary-btn:hover {
  background: var(--brand-ice);
  border-color: var(--brand-slate);
}

@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Installation Guide Styles */
.install-content {
  max-width: 1200px;
  margin: 0 auto;
}

.install-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--brand-slate);
}

.install-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tip-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--brand-ice);
  border-radius: 8px;
  border: 1px solid var(--card-border);
}

.tip-card i {
  font-size: 1.5rem;
  color: var(--brand-red);
}

.tip-card strong {
  display: block;
  color: var(--brand-navy);
  font-size: 0.9rem;
}

.tip-card span {
  color: var(--brand-slate);
  font-size: 0.8rem;
}

.install-steps {
  margin-bottom: 3rem;
}

.install-steps h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.step-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.step-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--brand-slate);
}

.step-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.step-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.step-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--brand-ice);
  border-radius: 8px;
  border-left: 4px solid var(--brand-red);
  font-size: 0.9rem;
  color: var(--brand-slate);
}

.step-note.success {
  background: #e8f5e8;
  border-left-color: #4caf50;
  color: #2e7d32;
}

.step-note i {
  color: var(--brand-red);
  margin-top: 0.1rem;
}

.step-note.success i {
  color: #4caf50;
}

.device-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--card-border);
}

.device-tab {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--brand-slate);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.device-tab.active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

.device-tab:hover {
  color: var(--brand-navy);
}

.device-content {
  display: none;
}

.device-content.active {
  display: block;
}

.device-content h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.device-steps {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.device-steps li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.device-note {
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #856404;
}

.troubleshooting-section {
  margin-bottom: 3rem;
}

.troubleshooting-section h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trouble-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
}

.trouble-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trouble-card i {
  color: var(--brand-red);
}

.trouble-card p {
  margin-bottom: 1rem;
  color: var(--brand-slate);
}

.trouble-card ul {
  text-align: left;
  padding-left: 1.5rem;
}

.trouble-card li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.support-section {
  margin-bottom: 3rem;
  text-align: center;
}

.support-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.support-section p {
  margin-bottom: 2rem;
  color: var(--brand-slate);
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.support-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-card i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.support-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.support-card p {
  margin-bottom: 1rem;
  color: var(--brand-slate);
  font-size: 0.9rem;
}

.support-link {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.support-link:hover {
  text-decoration: underline;
}

.install-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--brand-ice) 0%, white 100%);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}

.install-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.install-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--brand-slate);
}

.install-cta .primary-btn {
  padding: 0.75rem 2rem;
  background: var(--brand-red);
  color: white;
  border: 2px solid var(--brand-red);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.install-cta .primary-btn:hover {
  background: #7ab800;
  border-color: #7ab800;
}

@media (max-width: 768px) {
  .install-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-number {
    align-self: flex-start;
  }

  .troubleshooting-grid {
    grid-template-columns: 1fr;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .device-tabs {
    flex-wrap: wrap;
  }

  .device-tab {
    flex: 1;
    min-width: 120px;
  }
}

/* What is eSIM Page Styles */
.esim-content {
  max-width: 1200px;
  margin: 0 auto;
}

.esim-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--brand-slate);
}

.esim-comparison {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.sim-card {
  flex: 1;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--card-border);
  transition: all 0.3s ease;
}

.physical-sim {
  background: var(--bg-neutral);
  border-color: var(--card-border);
}

.esim-card {
  background: linear-gradient(135deg, var(--brand-red), #7ab800);
  color: white;
  border-color: var(--brand-red);
}

.sim-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sim-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.sim-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.vs-divider {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-slate);
}

.esim-section {
  margin-bottom: 3rem;
}

.esim-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.esim-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-slate);
  margin-bottom: 1rem;
}

.esim-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.esim-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.work-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  position: relative;
}

.work-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brand-red);
  background: white;
  padding: 0.5rem;
  border-radius: 50%;
 /* border: 1px solid var(--card-border); */
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.work-step h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.work-step p {
  color: var(--brand-slate);
  font-size: 0.9rem;
  line-height: 1.4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.benefit-card p {
  color: var(--brand-slate);
  line-height: 1.5;
}

.comparison-table {
  margin-top: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--brand-navy);
  color: white;
}

.comparison-header h4 {
  padding: 1rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-red);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--card-border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row span {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.comparison-row span:nth-child(odd) {
  background: var(--bg-neutral);
  font-weight: 600;
  color: var(--brand-navy);
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.compatibility-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.compatibility-card i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.compatibility-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.compatibility-card p {
  color: var(--brand-slate);
  line-height: 1.5;
  font-size: 0.9rem;
}

.compatibility-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  margin-top: 2rem;
}

.compatibility-note i {
  color: #856404;
  margin-top: 0.1rem;
}

.compatibility-note p {
  margin: 0;
  color: #856404;
  font-size: 0.9rem;
}

.esim-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--brand-ice) 0%, white 100%);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}

.esim-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.esim-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--brand-slate);
}

@media (max-width: 768px) {
  .esim-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .esim-comparison {
    flex-direction: column;
    gap: 1rem;
  }

  .vs-divider {
    order: 2;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .compatibility-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-header h4,
  .comparison-row span {
    padding: 0.75rem 0.5rem;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .work-step:not(:last-child)::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -1rem;
    transform: translateX(50%);
  }
}

/* Device Compatibility Page Styles */
.compatibility-content {
  max-width: 1200px;
  margin: 0 auto;
}

.compatibility-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--brand-slate);
}

.compatibility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--brand-ice);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.stat-item i {
  font-size: 2rem;
  color: var(--brand-red);
}

.stat-item strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.1rem;
}

.stat-item span {
  color: var(--brand-slate);
  font-size: 0.9rem;
}

.quick-check {
  margin-bottom: 3rem;
}

.quick-check h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.check-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.check-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.check-step .step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.check-step .step-content p {
  color: var(--brand-slate);
  font-size: 0.9rem;
  line-height: 1.4;
}

.device-section {
  margin-bottom: 3rem;
}

.device-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.device-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-slate);
  margin-bottom: 2rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.model-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.model-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.model-card ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.model-card li {
  margin-bottom: 0.5rem;
  color: var(--brand-slate);
  font-size: 0.9rem;
}

.model-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #e8f5e8;
  border-radius: 8px;
  border: 1px solid #4caf50;
}

.model-status i {
  color: #4caf50;
}

.model-status span {
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.9rem;
}

.android-brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.brand-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-section h4 i {
  color: var(--brand-red);
}

.model-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.model-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--brand-ice);
  border-radius: 8px;
  border: 1px solid var(--card-border);
}

.model-item span {
  color: var(--brand-navy);
  font-size: 0.9rem;
}

.model-item i {
  color: #4caf50;
  font-size: 1.1rem;
}

.tablet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.tablet-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.tablet-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tablet-card h4 i {
  color: var(--brand-red);
}

.tablet-card ul {
  padding-left: 1.5rem;
}

.tablet-card li {
  margin-bottom: 0.5rem;
  color: var(--brand-slate);
  font-size: 0.9rem;
}

.wearable-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.wearable-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 8px;
}

.wearable-item span {
  color: var(--brand-navy);
  font-size: 0.95rem;
}

.wearable-item i {
  color: #4caf50;
  font-size: 1.1rem;
}

.device-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  margin-top: 2rem;
}

.device-note i {
  color: #856404;
  margin-top: 0.1rem;
}

.device-note p {
  margin: 0;
  color: #856404;
  font-size: 0.95rem;
}

.compatibility-check {
  margin-bottom: 3rem;
}

.compatibility-check h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.check-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.check-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.check-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-card h4 i {
  color: var(--brand-red);
}

.check-card ol {
  padding-left: 1.5rem;
}

.check-card li {
  margin-bottom: 0.75rem;
  color: var(--brand-slate);
  font-size: 0.9rem;
  line-height: 1.4;
}

.check-card p {
  color: var(--brand-slate);
  line-height: 1.5;
}

.troubleshooting-section {
  margin-bottom: 3rem;
}

.troubleshooting-section h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.issue-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.issue-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.issue-card p {
  color: var(--brand-slate);
  line-height: 1.5;
}

.compatibility-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--brand-ice) 0%, white 100%);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}

.compatibility-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.compatibility-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--brand-slate);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.primary-btn {
  background: var(--brand-red);
  color: white;
  border: 2px solid var(--brand-red);
}

.primary-btn:hover {
  background: #7ab800;
  border-color: #7ab800;
}

.secondary-btn {
  background: white;
  color: var(--brand-navy);
  border: 2px solid var(--card-border);
}

.secondary-btn:hover {
  background: var(--brand-ice);
  border-color: var(--brand-slate);
}

@media (max-width: 768px) {
  .compatibility-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .compatibility-stats {
    grid-template-columns: 1fr;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .android-brands {
    grid-template-columns: 1fr;
  }

  .tablet-grid {
    grid-template-columns: 1fr;
  }

  .check-methods {
    grid-template-columns: 1fr;
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }

  .check-steps {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Contact Page Styles */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--brand-slate);
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--brand-ice);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.stat-item i {
  font-size: 2rem;
  color: var(--brand-red);
}

.stat-item strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1.1rem;
}

.stat-item span {
  color: var(--brand-slate);
  font-size: 0.9rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-methods h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.contact-card p {
  color: var(--brand-slate);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--brand-red);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-link:hover {
  background: #7ab800;
  color: white;
  text-decoration: none;
}

.contact-link.whatsapp {
  background: #25d366;
}

.contact-link.whatsapp:hover {
  background: #1da851;
}

.contact-form-section {
  margin-bottom: 3rem;
}

.form-container {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
}

.form-header {
  padding: 2rem;
  background: var(--brand-ice);
  border-bottom: 1px solid var(--card-border);
}

.form-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.form-header p {
  color: var(--brand-slate);
  font-size: 1rem;
}

.contact-form {
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--card-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

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

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

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: var(--brand-slate);
  font-size: 0.8rem;
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brand-slate);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--brand-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: #7ab800;
}

.submit-btn:disabled {
  background: var(--brand-slate);
  cursor: not-allowed;
}

.form-message {
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin-top: 1rem;
}

.form-message.success {
  background: #e8f5e8;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.form-message.error {
  background: #ffeaea;
  border: 1px solid #f44336;
  color: #c62828;
}

.form-message i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-message h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.company-info {
  margin-bottom: 3rem;
}

.company-info h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.info-card i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.info-details p {
  margin-bottom: 0.5rem;
  color: var(--brand-slate);
  font-size: 0.9rem;
}

.info-details p strong {
  color: var(--brand-navy);
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--brand-navy);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
  margin: 10px;
}

.faq-item p {
  color: var(--brand-slate);
  line-height: 1.5;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
#qr-code-container{
  display: none;
}
  .contact-stats {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 0.875rem;
  }
}

/* Legal Pages Styles */
.privacy-content,
.refund-content,
.terms-content {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

.privacy-content h1,
.refund-content h1,
.terms-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
  text-align: center;
}

.privacy-content .last-updated,
.refund-content .last-updated,
.terms-content .last-updated {
  text-align: center;
  color: var(--brand-slate);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-content h2,
.refund-content h2,
.terms-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--brand-navy);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 0.5rem;
}

.privacy-content h3,
.refund-content h3,
.terms-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--brand-navy);
}

.privacy-content p,
.refund-content p,
.terms-content p {
  margin-bottom: 1rem;
  color: var(--brand-slate);
}

.privacy-content ul,
.refund-content ul,
.terms-content ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.privacy-content li,
.refund-content li,
.terms-content li {
  margin-bottom: 0.5rem;
  color: var(--brand-slate);
}

.privacy-content .contact-info,
.refund-content .contact-info,
.terms-content .contact-info {
  background: var(--brand-ice);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.privacy-content .contact-info h3,
.refund-content .contact-info h3,
.terms-content .contact-info h3 {
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.privacy-content .contact-info p,
.refund-content .contact-info p,
.terms-content .contact-info p {
  margin-bottom: 0.5rem;
}

.privacy-content .contact-info a,
.refund-content .contact-info a,
.terms-content .contact-info a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
}

.privacy-content .contact-info a:hover,
.refund-content .contact-info a:hover,
.terms-content .contact-info a:hover {
  text-decoration: underline;
}

/* Refund specific styles */
.refund-content .refund-eligibility {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.refund-eligibility-item {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refund-eligibility-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.refund-eligibility-item i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.refund-eligibility-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.refund-eligibility-item p {
  color: var(--brand-slate);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.refund-content .refund-process {
  margin: 2rem 0;
}

.refund-process h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.refund-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.refund-step {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.refund-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brand-red);
  background: white;
  padding: 0.5rem;
  border-radius: 50%;
  border: 1px solid var(--card-border);
}

.refund-step-number {
  width: 60px;
  height: 60px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.refund-step h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.refund-step p {
  color: var(--brand-slate);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.refund-content .contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-option {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-option i {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.contact-option h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.contact-option p {
  color: var(--brand-slate);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-option a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--brand-red);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-option a:hover {
  background: #7ab800;
  color: white;
  text-decoration: none;
}

.contact-option .whatsapp {
  background: #25d366;
}

.contact-option .whatsapp:hover {
  background: #1da851;
}

.refund-content .cta-section {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--brand-ice) 0%, white 100%);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  margin: 3rem 0;
}

.refund-content .cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.refund-content .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--brand-slate);
}

.refund-content .cta-section .primary-btn {
  padding: 0.75rem 2rem;
  background: var(--brand-red);
  color: white;
  border: 2px solid var(--brand-red);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.refund-content .cta-section .primary-btn:hover {
  background: #7ab800;
  border-color: #7ab800;
}

/* Terms specific styles */
.terms-content .acceptance-section {
  background: var(--brand-ice);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.terms-content .acceptance-section h3 {
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.terms-content .acceptance-section p {
  margin-bottom: 0;
  color: var(--brand-slate);
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
  .privacy-content h1,
  .refund-content h1,
  .terms-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2,
  .refund-content h2,
  .terms-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content .contact-info,
  .refund-content .contact-info,
  .terms-content .contact-info {
    padding: 1.5rem;
  }

  .refund-content .refund-eligibility {
    grid-template-columns: 1fr;
  }

  .refund-steps {
    grid-template-columns: 1fr;
  }

  .refund-step:not(:last-child)::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -1rem;
    transform: translateX(50%);
  }

  .refund-content .contact-options {
    grid-template-columns: 1fr;
  }

  .refund-content .cta-section {
    padding: 2rem;
  }

  .refund-content .cta-section h3 {
    font-size: 1.75rem;
  }
}

/* Bundle Notes Section */
.bundle-notes-section {
  margin-bottom: 1rem;
}

.bundle-notes-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--brand-ice);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--brand-slate);
}

.note-item i {
  color: var(--brand-red);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Loading States */
#result-label.loading {
  color: var(--brand-red);
  font-weight: 500;
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem;
  color: var(--brand-slate);
  font-size: 1.1rem;
}

.loading-spinner i {
  color: var(--brand-red);
  font-size: 1.5rem;
}