:root{
  --bluegray:#0C1D33;
  --navy:#0f172a;
  --gray:#C7CED6;
  --orange:#ff6a00;
  --button:#21C4D5;
  --smoothWhite:#F2F4F7;
  --white:#f9f9f9;
  --pill:24px;
  --max:min(1220px,92vw);
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  --utilityHeight:27px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;}
body{font-family:var(--sans);color:var(--navy);background:var(--bluegray); padding-top: calc(var(--utilityHeight) + 72px);} 
html,body{ -ms-overflow-style: none; scrollbar-width: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar{ width:0; height:0; display:none; }

/* ---------- top utility bar ---------- */
.utility{
  background:var(--bluegray);
  border-bottom:1px solid #0A2342;
  padding:6px 0;
  font-size:11px;
  letter-spacing:.4px;
  text-transform:uppercase;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1100;
}
.utility .wrap{
  width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.utility ul{
  display:flex;
  gap:24px;
  list-style:none;
}
.utility a{
  color:var(--white);
  text-decoration:none;
}
.utility a:hover{opacity:.7;}
.utility .side{
  display:flex;
  align-items:center;
  gap:18px;
}
.utility .globe{
  width:14px;
  height:14px;
}

/* ---------- main nav (pill) ---------- */
nav.pill{
  width:var(--max);
  margin:16px auto 0;
  margin-top: 0;
  background:var(--white);
  border-radius:var(--pill);
  box-shadow:0 8px 24px rgba(15,23,42,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 20px;
  position:fixed;
  top:var(--utilityHeight);
  left:0;
  right:0;
  z-index:1000;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--navy);
  font-weight:700;
  font-size:20px;
}
.brand img{ width: 120px; }
.nav-links{
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:28px;
  font-size:15px;
  font-weight:500;
}
.nav-item{ position:relative; display:inline-flex; align-items:center; }
/* 鼠标移动到下拉面板过程中的缓冲带，避免瞬时丢失 :hover */
.nav-item::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:10px; /* 缓冲高度 */
}
.nav-links a{
  color:var(--navy);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.nav-links a:hover{opacity:.65;}
.caret{
  width:0;
  height:0;
  border-left:3px solid transparent;
  border-right:3px solid transparent;
  border-top:4px solid var(--navy);
  transition: transform .2s ease;
}
.nav-item:hover .caret{ transform: rotate(180deg); }

/* ---------- dropdown panel for Products ---------- */
.dropdown-panel{
  position:absolute;
  top:100%;
  left:0;
  width:320px;
  background:var(--white);
  border-radius:14px;
  box-shadow:0 12px 32px rgba(15,23,42,.18);
  border:1px solid #e5e7eb;
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:20;
  overflow:hidden;
}
.nav-item:hover .dropdown-panel{ opacity:1; transform:translateY(0); pointer-events:auto; }
.dropdown-header{
  background:#C7CED6;
  color:#fff;
  font-weight:700;
  padding:10px 14px;
}
.dropdown-list{ list-style:none; margin:0; padding:8px 0; }
/* .dropdown-item{ } */
.dropdown-item + .dropdown-item{ border-top:1px solid #f1f5f9; }
.dropdown-link{ display:flex; align-items:flex-start; gap:12px; padding:10px 14px; text-decoration:none; color:#0f172a; }
/* .dropdown-link:hover{ background:#f8fafc; } */
.dropdown-link .icon{ width:24px; height:24px; display:inline-grid; place-items:center; font-size:18px; }
.dropdown-link .text{ display:flex; flex-direction:column; gap:4px; }
.dropdown-link .title{ font-weight:600; color:#0f172a; }
.dropdown-link .desc{ font-size:12px; color:#64748b; }
.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:32px;
}
.nav-actions svg{
  width:18px;
  height:18px;
  stroke:var(--navy);
  stroke-width:2;
  cursor:pointer;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 20px;
  border-radius:var(--pill);
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  white-space:nowrap;
  /* position: sticky; */
}
.btn.orange{
  background:var(--button);
  color:var(--white);
  box-shadow:0 4px 14px rgba(33,196,213,.24);
}
.btn.ghost{
  background:transparent;
  color:var(--navy);
  border:1px solid #cbd5e1;
}
.btn:hover{opacity:.92;}

/* inline text link for tab actions */
.link-small{ width: fit-content; display:inline-flex; align-items:center; gap:6px; font-size:13px; color:#F2F4F7; text-decoration:none; margin-left: 10px; }
.link-small:hover{ opacity:.9; }
.link-small svg{ transform-origin: 50% 50%; transform: translate(0, 1px) rotate(-35deg);}

/* ---------- hero ---------- */
.hero{
  padding:40px 0 100px;
  text-align:left;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}
.hero-inner{
  flex:0 1 52%;
  margin:0;
  position:relative;
  z-index:2;
}
.hero-art{
  flex:0 1 48%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.hero-art .phone{
  width:85%;
  max-width:350px;
  height:auto;
  border-radius:18px;
}
.hero-art .msg{
  position:absolute;
  z-index:3;
  width:46%;
  max-width:300px;
  left:27.3%;
  top:25%;
  transform:translateX(-30%);
  border-radius:12px;
}

/* 飞机容器（以 hero-art 为定位基准）开始 */
.plane-item {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 3;
}

.plane-visible { opacity: 1; }
.plane-hidden { opacity: 0; }

.plane-img {
  width: 100px; /* 飞机缩小一点 */
  height: auto;
  display: block;
  transform-origin: center;
}

/* ----------- 白色拖尾 ----------- */
.plane-trail {
  position: absolute;
  width: 26px;
  height: 4px;
  background: white;
  border-radius: 4px;
  opacity: 0.6;
  filter: blur(0.8px);
  pointer-events: none;
}
/* 飞机结束 */

h1{
  font-size:clamp(40px,5.2vw,64px);
  color: var(--smoothWhite);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.6px;
  max-width:840px;
  margin:0;
}

.sub{
  font-size:clamp(16px,2.2vw,20px);
  color:var(--gray);
  margin:24px 0 0;
  max-width:680px;
  line-height:2.0;
}
.subs::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  background: #afedf4;
  border-radius:50%;
  margin-right:12px;
}
.cta-row{
  display:flex;
  justify-content:flex-start;
  gap:16px;
  margin-top:36px;
}
.cta-row .btn{
  padding:14px 28px;
  font-size:15px;
}
.cta-row svg{
  width:16px;
  height:16px;
  stroke:currentColor;
  stroke-width:2.5;
  fill:none;
  margin-left:4px;
}
/* plane-fixed start*/
.hero-art .plane-fixed{
  position:absolute;
  z-index:2;
  width:25%;
  max-width:300px;
  left: 0;
  top:100px;
  --rot: 5deg;
  transform: rotate(var(--rot));
  animation: planeFlyIn 900ms ease-out 120ms both;
  border-radius:12px;
}
.hero-art .planetwo-fixed{
  position:absolute;
  z-index:2;
  width:20%;
  max-width:300px;
  left: 75%;
  top: 55%;
  --rot: -35deg;
  transform: rotate(var(--rot));
  animation: planeFlyIn 900ms ease-out 280ms both;
  border-radius:12px;
}
/* plane-fixed end */

@keyframes planeFlyIn {
  0% {
    opacity: 0;
    transform: translateX(-160px) rotate(var(--rot));
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(var(--rot));
  }
}

/* mgs开始 */
.hero-art .msg {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
}

.hero-art .msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-art .msg.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.hero-art .phoneLogo{
  position:absolute;
  z-index:2;
  width:150px;
  max-width:180px;
  left:50%;
  bottom:18%;
  transform:translateX(-50%);
}

/* mgs结束 */

/* ---------- responsive ---------- */
@media(max-width:992px){
  .nav-links{display:none;}
  .nav-actions .btn:not(.orange){display:none;}
}
@media(max-width:640px){
  .cta-row{flex-direction:column;align-items:center;}
}
    .decor-right {
      width: 320px; height: 320px; right: -80px; bottom: -40px;
      background: radial-gradient(160px 160px at 40% 60%, #d9f99d 0%, #ecfccb 40%, transparent 75%);
    }

    /* 页脚 */
    .footer { border-top: 1px solid var(--border); background: #fff; }
    .footer-inner {
      display: flex; gap: 18px; align-items: center; justify-content: flex-start;
      padding: 22px 0; color: var(--text-muted);
    }
    .footer-inner a { color: inherit; text-decoration: none; }
    .footer-inner a:hover { color: var(--text-strong); }

    /* 响应式 */
    @media (max-width: 1200px) { .row { gap: 18px; } }
    @media (max-width: 992px) {
      .nav { position: fixed; inset: 64px 0 0 0; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); transform: translateY(-110%); transition: transform .25s ease; }
      .nav.open { transform: translateY(0); }
      .no-scroll { overflow: hidden; }
      .nav-list { flex-direction: column; gap: 0; }
      .nav-list a { padding: 18px 24px; border-bottom: 1px solid var(--border); }
      .menu-toggle { display: inline-grid; place-items: center; }
      .actions .btn.outline { display: none; }
    }
    @media (max-width: 640px) {
      .hero { padding: 64px 0 96px; }
      .cta-group { flex-direction: column; }
    }
@media (max-width: 992px){
  .hero-grid{ display:block; }
  .hero-inner{ flex:none; }
  .hero-art{ display:none; }
}

.hero-art .msg { transform: translate(-50%,-60px); opacity:0; transition: transform .6s ease, opacity .4s ease; }
.hero-art .msg.top  { transform: translate(-50%,-10px);  opacity:1; }
.hero-art .msg.topper {transform: translate(-50%,-35px);  opacity:1;}
.hero-art .msg.mid  { transform: translate(-50%,45px);  opacity:1; }
.hero-art .msg.bottom{ transform: translate(-50%,130px); opacity:1; }
.hero-art .msg.hideTop { transform: translate(-50%,-230px); opacity:0; }
.hero-art .msg.hide { transform: translate(-50%,260px); opacity:0; }


/* ---------- SMS PRODUCTS section ---------- */
.sms{
  padding:64px 0 96px;
  padding-top: 30px;
  margin-top: 50px;
}
.sms-head{
  width:var(--max);
  margin:0 auto 18px;
  text-align: center;
}
.sms-grid{
  width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:10px;
  max-width:980px;
}
.sms-left{ flex:0 1 48%; display:block; }
.sms-right{ flex:0 1 44%; display:flex; padding-left: 100px;}

.sms-overline{ color:#94a3b8; font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:8px; }
.sms-title{ font-size:clamp(28px,4.4vw,40px); color:var(--smoothWhite); font-weight:800; margin-bottom:10px; }
.sms-desc{ color:var(--gray); max-width:1020px; text-align: center; margin:0 auto; line-height:1.6; margin-bottom: 30px;}

.sms-content{ max-width:560px; }

.sms-tags{ display:flex; gap:26px; align-items:flex-start; margin:24px 0 18px; flex-wrap:wrap;}
.sms-tag{ display:flex; align-items:center; gap:12px; }
.sms-icon{ width:44px; height:44px; border-radius:50%; background:#1e293b; display:inline-grid; place-items:center; font-weight:800; }
.sms-label{ color:#e2e8f0; font-weight:700; }

/* 切换栏样式 */
.sms-tabs{ display:flex; gap:48px; align-items:center; justify-content:center; flex-wrap:wrap; margin:18px auto 10px; }
.sms-tab{ display:inline-flex; align-items:center; gap:12px; background:transparent; border:0; color:#0f172a; cursor:pointer; padding:8px 4px; border-bottom:2px solid transparent; transition: border-color .2s ease; }
.sms-tab .tab-icon{ width:24px; height:24px; border-radius:50%; display:inline-grid; place-items:center; color:#fff; font-weight:800; }
.sms-tab .tab-label{ font-weight:700; color:#111827; font-size: 20px;}
.sms-tab:hover{ border-color:#F2F4F7; }
.sms-tab.active{ border-bottom: #21C4D5 3px solid;}
/* .sms-tabs-line{ height:1px; background:#e5e7eb; width:100%; } */

/* 面板显示控制 */
.sms-panels{ margin-top:14px; }
.sms-panel{ display:none; }
.sms-panel.active{ display:block; }

/* ---------- Testimonials below tabs ---------- */
.sms-feedback{ background: #0C1D33; padding:64px 0; }
.feedback-wrap{ width:var(--max); margin:0 auto; }
.feedback-heading{ text-align:center; font-weight:800; font-size:clamp(28px,4.4vw,40px); color:#F2F4F7; margin-bottom:28px; }
.feedback-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
/* feedback card bgc */
.feedback-card{ background:#c6dbdd; border-radius:16px; padding:24px; box-shadow: 0 8px 24px rgba(15,23,42,.10); border:1px solid rgba(15,23,42,.06); }
.feedback-icon{ width:72px; height:72px; border-radius:50%; background:#fff; display:grid; place-items:center; font-size:32px; margin:0 auto 14px; }
.feedback-title{ font-size:22px; font-weight:800; color:#111827; line-height:1.3; text-align:left; margin-bottom:12px; }
.feedback-desc{ color:#334155; font-size:14px; line-height:1.6; margin-bottom:16px; }
.feedback-metric{ display:flex; align-items:baseline; gap:10px; }
.metric-value{ font-size:32px; font-weight:800; color:#0f172a; }
.metric-label{ font-size:13px; color:#475569; }

@media(max-width:992px){
  .feedback-grid{ grid-template-columns:1fr; }
}

/* ---------- Partners section ---------- */
.partners{ background: #0C1D33; padding:64px 0; }
.partners-wrap{ width:var(--max); margin:0 auto; }
.partners-heading{ text-align:center; font-weight:800; font-size:clamp(28px,4.2vw,40px); color:#F2F4F7; margin-bottom:26px; }
.partners-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:36px; list-style:none; padding:0; margin:0; align-items:start; }
.partner{ text-align:center; }
.partner-logo{ width:96px; height:96px; border-radius:50%; background:#fff; box-shadow:0 8px 20px rgba(15,23,42,.12); display:grid; place-items:center; margin:0 auto 12px; }
.partner-logo img{ width:56px; height:56px; }
.partner-text{ color:#F2F4F7; font-weight:700; line-height:1.35; }

@media(max-width:1200px){ .partners-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:640px){
  .partners-grid{ grid-template-columns:repeat(2,1fr); }
  .partner-logo{ width:84px; height:84px; }
  .partner-logo img{ width:48px; height:48px; }
}

/* ---------- Footer bar ---------- */
.site-footer{ background:transparent; padding:22px 0 42px; }
.footer-bar{ width:var(--max); margin:0 auto; background:#313336; color:#F2F4F7; border-radius:12px; padding:14px 18px; display:flex; align-items:center; justify-content:space-between; gap:14px; }
.footer-left{ font-size:12px; opacity:.92; }
.footer-links{ display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.footer-links a{ color:#F2F4F7; text-decoration:none; font-size:12px; opacity:.9; }
.footer-links a:hover{ opacity:1; }
.footer-actions{ display:flex; align-items:center; gap:10px; }
.social{ display:inline-grid; place-items:center; width:26px; height:26px; border-radius:50%; color:#F2F4F7; font-size:12px; text-decoration:none; }
/* .social:hover{ background:#34383c; } */
.lang-btn{ display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:18px; color:#F2F4F7; text-decoration:none; font-size:12px; }
.lang-btn .lang-icon{ width:14px; height:14px; }

@media(max-width:992px){
  .footer-bar{ flex-direction:column; align-items:flex-start; gap:10px; }
}

/* ---------- Pre-Footer (sitemap) ---------- */
.prefooter{ background:#0C1D33; border-top:2px solid #21C4D5; padding:28px 0; width: fit-content; margin: 0 auto;}
.prefooter-inner{ width:var(--max); margin:0 auto; display:grid; grid-template-columns:1.2fr repeat(4,1fr); gap:28px; align-items:flex-start; color:#F2F4F7; }
.prefooter-brand{ display:flex; flex-direction:column; gap:18px; }
.prefooter-logo{ width: 150px; }
.prefooter-title{ font-weight:700; color:#F2F4F7; margin-bottom:12px; }
.prefooter-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.prefooter-list a{ color:#F2F4F7; opacity:.85; text-decoration:none; }
.prefooter-list a:hover{ opacity:1; text-decoration:underline; }

@media(max-width:992px){
  .prefooter-inner{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px){
  .prefooter-inner{ grid-template-columns:1fr; }
}
.sms-card{ width:68%; max-width:460px; height:460px; border-radius:24px; background:#0f172a; box-shadow:0 20px 40px rgba(15,23,42,.45); position:relative; overflow:hidden; }
.sms-card .dots{ position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.06) 2px, transparent 2.5px); background-size: 18px 18px; opacity:.35; }
.sms-card .screen{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:70%; height:100%; background:#f8fafc; border-radius:22px; box-shadow:0 6px 18px rgba(0,0,0,.2); }

.sms-points{ display:flex; flex-direction:column; gap:20px; color:#e2e8f0; margin-top:16px; margin-left:0;}
.sms-point{ display:flex; gap:14px; align-items:flex-start; }
.sms-point .icon{ width:28px; height:28px; border-radius:50%; display:inline-grid; place-items:center; }
.sms-point .text{ display:flex; flex-direction:column; }
.sms-point .title{ font-weight:700; color:#f1f5f9; margin-bottom:4px; }
.sms-point .desc{ font-size:13px; color:#94a3b8; line-height:1.7; }

@media(max-width:992px){
  .sms-grid{ display:block; }
  .sms-left,.sms-right{ flex:none; }
  .sms-card{ width:100%; max-width:none; }
}

.icon{
  width:24px;
  height:24px;
  margin-right:10px;
}

.social img{
  width:18px;
  height:18px;
}

.feedback-icon img{
  width:48px;
  height:48px;
}

/* ---------- Pricing page ---------- */
.pricing-page{ background: var(--bluegray); }

/* Pricing cards */
.pricing-cards{ padding:40px 0; }
.plans-grid{ width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.plan-card{ background:#fff; border-radius:22px; box-shadow:0 2px 8px rgba(15,23,42,.06); padding:24px; }
.plan-title{ font-size:40px; color: var(--smoothWhite); margin:0 0 10px; }
.plan-price{ color:#475569; margin-bottom:10px; }
.plan-price .euro{ color:#21C4D5; font-size:24px; font-weight:700; }
.plan-cap.pill{ display:inline-block; background:#e9effd; color:#334155; border-radius:10px; padding:8px 12px; font-size:12px; }
.plan-meta{ color:#55607a; margin:12px 0; }
.plan-hr{ border:0; height:1px; background:#e5e7eb; margin:16px 0; }
.plan-sub{ color: var(--smoothWhite); font-size:16px; margin:0 0 8px; }
.plan-features{ list-style:none; padding:0; margin:0; display:grid; gap:8px; color:#1f2937; }
.plan-features li{ position:relative; padding-left:20px; }
.plan-features li::before{ content:"✓"; position:absolute; left:0; top:0; color:#21C4D5; }
.plan-btn{ display:inline-block; margin-top:14px; background:#21C4D5; color:#fff; text-decoration:none; border-radius:12px; padding:10px 14px; font-weight:600; }
.plan-btn:hover{ opacity:.92; }

/* SMS standard */
.sms-standard{ padding:32px 0; }
.sms-header{ text-align:center; margin-bottom:10px; }
.sms-badge{ display:inline-block; background:#21C4D5; color:#fff; border-radius:999px; padding:6px 12px; font-size:12px; letter-spacing:.04em; }
.sms-title{ margin:10px 0 30px; font-size:32px; color: var(--smoothWhite); text-align:center; }
.sms-search{ width:var(--max); margin:0 auto 16px; display:flex; gap:12px; justify-content:center; }
.search-wrap{ position:relative; background:#fff; border:1px solid #e8eef5; border-radius:14px; padding:0 12px 0 32px; width:560px; height:44px; display:flex; align-items:center; }
.search-wrap .search-icon img{ width: 18px; height: 18px; position:absolute; left:10px; top:50%; transform:translateY(-50%); color:#94a3b8; }
.search-wrap input{ width:100%; border:0; outline:none; font-size:14px; }
.consult-btn{ display:inline-block; background:#21C4D5; color:#fff; text-decoration:none; border-radius:12px; padding:10px 16px; }
.consult-btn:hover{ opacity:.95; }
.sms-card{ width:var(--max); height: fit-content; margin:0 auto; background:#fff; border-radius:16px; box-shadow:0 2px 8px rgba(15,23,42,.06); display:flex; flex-direction:column; padding-bottom: 20px; }
/* pricing page specific tweaks */
.pricing-page .sms-card{ max-width:1220px; width:96%; border:1px solid #e8eef5; }
.pricing-page .sms-search{ max-width:1220px; width:96%; }
.sms-table{ height: clamp(280px, 47vh, 520px); overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.sms-table::-webkit-scrollbar{ width:0; height:0; }
.sms-row{ display:grid; grid-template-columns:1.6fr 1.5fr 0.9fr 0.8fr; gap:8px; padding:15px 30px; align-items:center; color:#0f172a; padding-left: 80px;}
/* .sms-row > div:last-child{ text-align:center; } */
.sms-row > div{ text-align:left; }
.sms-row + .sms-row{ border-top:1px solid #e5e7eb; }
.sms-row.sms-head{ font-weight:700; color:#334155; background:#f8fafc; border-top-left-radius:16px; border-top-right-radius:16px; position: sticky; top:0; z-index:2; }
.country{ display:flex; align-items:center; gap:8px; }
.flag{ display:inline-grid; place-items:center; width:32px; height:32px; color:#0f172a; font-size:12px; font-weight:700; }
.flag-img{ width: 24px; margin-right: 8px; border: 1px solid #e5e7eb;}
.en{ font-weight:600; }
.sms-notes{ padding:8px 16px 12px; color:#334155; }
.sms-notes p{ margin:6px 0; }

/* Country grid */
.country-grid{ padding:24px 0; }
.country-grid .grid{ width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.country-card{ background:#fff; border-radius:16px; box-shadow:0 2px 8px rgba(15,23,42,.06); padding:20px; text-align:center; }
.flag-badge{ margin:0 auto 10px; display:grid; place-items:center; }
.flag-badge img{ width:30px; border:1px solid #e5e7eb; object-fit:cover; }
.country-name{ font-weight:700; color:#0f172a; }
.country-price{ color:#475569; margin-top:6px; }
.country-code{ color:#64748b; font-size:12px; margin:6px 0 10px; }
.select-btn{ display:inline-block; border:1px solid #cbd5e1; border-radius:10px; padding:4px 15px; color:#334155; text-decoration:none; font-size: 14px; font-weight: 500;}
.select-btn:hover{ background:#f1f5f9; }

/* FAQ */
.faq{ padding:36px 0; }
.faq-inner{ width:var(--max); margin:0 auto; display:grid; grid-template-columns:0.8fr 1.2fr; gap:32px; align-items:start; }
.faq-badge{ display:inline-block; background:#21C4D5; color:#fff; border-radius:999px; padding:6px 10px; font-size:12px; }
.faq-title{ font-size:38px; color: var(--smoothWhite); margin:10px 0; }
.faq-desc{ color:#55607a; }
.faq-actions{ display:flex; gap:12px; margin-top:12px; }
.faq-list{ background:transparent; border-radius:0; box-shadow:none; padding:0; }
.faq-item{ border-radius:12px; margin:8px 0; }
.faq-item + .faq-item{ border-top:none; }
.faq-q{ width:100%; text-align:left; padding:18px 40px 18px 18px; background:none; border:0; font-size:17px; font-weight:600; color: var(--smoothWhite); cursor:pointer; position:relative; }
.faq-q::after{ content:"+"; position:absolute; right:16px; top:50%; transform:translateY(-50%); color: var(--smoothWhite); font-weight:700; }
.faq-item.open .faq-q::after{ content:"-"; }
.faq-a{ display:none; padding:0 18px 18px; margin-top:-6px; color: var(--gray); }
.faq-item.open .faq-a{ display:block; }

@media(max-width:992px){
  .plans-grid{ grid-template-columns:1fr; }
  .sms-row{ grid-template-columns:1.2fr 1.2fr 0.8fr 0.8fr; }
  .country-grid .grid{ grid-template-columns:repeat(3,1fr); }
  .faq-inner{ grid-template-columns:1fr; }
  .coverage-wrap{ padding-left:0; }
}
@media(max-width:640px){
  .country-grid .grid{ grid-template-columns:repeat(2,1fr); }
}
.sms-illustrations{ width:100%; height:100%; display:grid; }
.sms-illu{ display:none; width:100%; height:100%; border-radius:16px; box-shadow:0 20px 40px rgba(15,23,42,.12); object-fit:cover; max-width: 320px;}
.sms-illu.active{ display:block; }
/* ---------- Coverage section ---------- */
.coverage{ padding:40px 0; }
.coverage-wrap{ width:var(--max); margin:0 auto; padding-left:120px; }
.coverage-grid{ display:grid; grid-template-columns:1.2fr 1.0fr; gap:22px; align-items:center; }
.coverage-map{ width:100%; border-radius:16px; box-shadow:0 20px 40px rgba(15,23,42,.08); background:#0C1D33; object-fit:contain; }
.coverage-badge{ display:inline-block; background:#21C4D5; color:#fff; border-radius:999px; padding:6px 12px; font-size:12px; letter-spacing:.04em; }
.coverage-title{ margin:8px 0 12px; font-size:30px; color:#F2F4F7; }
.coverage-subtitle{ font-size:18px; font-weight:700; color:#0f172a; margin-top:4px; }
.coverage-desc{ color:#475569; line-height:1.6; max-width:520px; margin-top:4px; }
.title-coverage::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  background: #afedf4;
  border-radius:50%;
  margin-right:12px;
}
.desc-coverage{ margin-left: 20px; }


.coverage .sms-points{ margin-left:0; }
.coverage-left{ position:relative; }
.coverage-pin{ position:absolute; width:20px; height:20px; transform:translate(-50%,-50%); filter:drop-shadow(0 2px 4px rgba(15,23,42,.35)); opacity:.95; z-index:1; animation:pulse-pin 2.6s ease-in-out infinite; animation-delay:var(--d,0s); pointer-events:none; }
@keyframes pulse-pin{ 0%,100%{ transform:translate(-50%,-50%) scale(1);} 50%{ transform:translate(-50%,-50%) scale(1.15);} }
@media (max-width: 992px){
  .coverage-grid{ grid-template-columns:1fr; }
}
/* ---------------- Contact page ---------------- */
.contact-page{ background:#0C1D33; min-height:100vh; padding:0 16px; color:#21C4D5; }
.contact-container{ max-width:860px; margin:50px auto; }
.contact-page .prefooter{ margin-top:60px; }
.contact-card{ background:#f9f9f9; border:1px solid #e5e7eb; border-radius:18px; box-shadow:0 6px 24px rgba(15,23,42,.06); padding:40px 40px 36px; }
.contact-card{ will-change: height; }
.contact-progress{ width:82%; margin:0 auto 16px; display:flex; gap:18px; padding-top:8px; }
/* .contact-progress .bar{ flex:1; height:6px; background: var(--gray); border-radius:999px; }
.contact-progress .bar.active{ background:#21C4D5; } */
.contact-title{ text-align:center; font-size:32px; font-weight:700; color:#0C1D33; margin: auto 0 28px 0; letter-spacing:.2px; }
.contact-step{ display:block; }
.contact-step[hidden]{ display:none !important; }
.contact-step{ transition: opacity 380ms ease, transform 380ms ease; }
.contact-step.entering{ opacity:0; transform:translateY(8px); }
.contact-step.leaving{ opacity:1; transform:translateY(0); }
.contact-step.leaving.leave-active{ opacity:0; transform:translateY(-8px); }
.field{ margin-bottom:16px; }
.phone-row{ display:grid; grid-template-columns:120px 1fr; gap:0; }
.phone-row .field:first-child .input{ border-top-right-radius:0; border-bottom-right-radius:0; border-right:0; position:relative; }
.phone-row .field:last-child .input{ border-top-left-radius:0; border-bottom-left-radius:0; }
.phone-row .field:first-child .input::after{ content:""; display:none; }
.phone-row .input{ border-radius:16px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.label{ display:none; }
.input{ display:flex; align-items:center; gap:8px; background:#f9f9f9; border:1px solid #dae2ed; border-radius:12px; height:52px; padding:0 16px; box-shadow:0 1px 0 rgba(15,23,42,.02); }
.input:focus-within{ border-color:#21C4D5; box-shadow:0 0 0 3px rgba(33,196,213,.12); }
.contact-page input.input{ outline:none; }
.contact-page input.input:focus, .contact-page input.input:focus-visible{
  border-color:#21C4D5; box-shadow:0 0 0 3px rgba(33,196,213,.12); outline:none;
}
.field .input{ width:100%; }
.input-ghost{ flex:1; height:100%; border:none; background:transparent; outline:none; font-size:16px; color:#0f172a; }
.input-ghost::placeholder{ color: var(--gray); }
select.input-ghost{ appearance:none; -webkit-appearance:none; -moz-appearance:none; padding-right:24px; color:#0f172a; }
.input-ghost::placeholder{ color:#94a3b8; }
.with-prefix .prefix{ margin-right:8px; font-size:18px; width:26px; height:26px; display:inline-grid; place-items:center; background:#f1f5f9; border-radius:8px; }
.phone-row .with-prefix .prefix{ background:transparent; border-radius:0; width:22px; height:22px; }
.with-prefix .endicon{ margin-left:auto; color:#94a3b8; font-size:16px; }
.with-endicon .endicon{ margin-left:auto; color:#94a3b8; font-size:16px; }
.narrow{ width:76px; }
.checkbox{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#334155; background:#f9f9f9; border:1px solid #e5e7eb; border-radius:12px; padding:14px 16px; }
.checkbox input{ width:16px; height:16px; margin-top:2px; }
.checkbox .link{ color:#21C4D5; text-decoration:none; }
.contact-actions{ display:flex; justify-content:center; gap:24px; align-items:center; margin-top:22px; }
.btn{ border:none; outline:none; border-radius:999px; height:46px; padding:0 22px; font-weight:600; cursor:pointer; }
.btn-secondary{ background:#f9f9f9; border:1.5px solid #94a3b8; color:#0A2342; box-shadow:0 2px 0 rgba(15,23,42,.02); }
.btn-primary{ background:#21C4D5; color:#f9f9f9; box-shadow:0 10px 22px rgba(33,196,213,.25); min-width:160px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }
.contact-actions .btn{ display:inline-flex; align-items:center; justify-content:center; }

/* ---- Custom dropdown (contact) ---- */
.dd{ position:relative; }
.dd .input{ cursor:pointer; }
.dd.open .input{ border-color:#21C4D5; box-shadow:0 0 0 3px rgba(33,196,213,.12); }
.dd .selected-label{ flex:1; color:#0f172a; }
.dd .endicon.clear{ color:#94a3b8; cursor:pointer; }
.dd .endicon.caret{ color:#94a3b8; transition: transform .2s ease; }
.dd.open .endicon.caret{ transform: rotate(180deg); }
.dd .dd-panel{ position:absolute; left:0; right:0; top:calc(100% + 8px); background:#f9f9f9; border:1px solid #e5e7eb; border-radius:12px; box-shadow:0 12px 28px rgba(33,196,213,.12); z-index:60; display:none; overflow:hidden; }
.dd.open .dd-panel{ display:block; }
.dd .dd-head{ background:#cbd5e1; color:#f9f9f9; font-weight:800; font-size:20px; padding:12px 18px; }
.dd .dd-search{ display:flex; align-items:center; padding:8px 5px; background:#f9f9f9; gap:0; }
.dd .dd-search .icon{ margin-right:2px; }
.dd .dd-search .icon img{ width:20px; height:20px; display:inline-grid; place-items:center; font-size:18px; color:#c5cdd8; transform:none; }
.dd .dd-search input{ flex:1; border:0; outline:none; background:#e4e5e9; border:1px solid #e5e7eb; border-radius:8px; height:36px; padding:0 8px; margin-left:0; width:auto; width: 45px;}
.dd .dd-list{ max-height:220px; overflow:auto; }
.dd .dd-list{ -ms-overflow-style: none; scrollbar-width: none; }
.dd .dd-list::-webkit-scrollbar{ width:0; height:0; display:none; }
.dd .dd-option{
  width:100%; text-align:left; background:#f9f9f9; border:0;
  padding:8px 6px; cursor:pointer; color:#0f172a;
  display:flex; align-items:center; gap:8px; font-size:12px;
  margin-left: 10px;
}
.dd .dd-option:last-child{ border-bottom:0; }
.dd .dd-icon{ font-size:18px; width:24px; display:inline-grid; place-items:center; color:#21C4D5; }
.dd .dd-content{ display:flex; flex-direction:column; transition: all 0.1s ease-in-out;}
.dd .dd-content .title{ font-weight:800; font-size:16px; }
.dd .dd-content .sub{ color:#64748b; font-size:12px; margin-top:2px; }
.dd .dd-option:hover{ color: #21C4D5; }
.dd .dd-option.selected{ color:#21C4D5; }


/* sticky right-side actions */
.sticky-side{ position:fixed; right:8px; top:80%; transform:translateY(-50%); display:flex; flex-direction:column; gap:8px; z-index:1300; }
.sticky-side .side-btn{ width:44px; height:44px; border-radius:10px; background:#c6dbdd; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 28px rgba(30,107,255,.25); text-decoration:none; }
.sticky-side .side-btn img{ width:20px; height:20px; }
@media (max-width:640px){ .sticky-side{ right:6px; } .sticky-side .side-btn{ width:38px; height:38px; } }

