/* =========================
   RESET
========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  font-size:15px;
  line-height:1.6;
  color:#111111;
  background:#ffffff;
}

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

a{
  text-decoration:none;
  color:inherit;
}

ul{
  margin:0;
  padding:0;
  list-style:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

/* =========================
   ROOT
========================= */
:root{
  --primary:#0f4fd6;
  --primary-hover:#2563eb;
  --primary-dark:#0b3fb1;

  --text:#111111;
  --text-strong:#0f172a;
  --muted:#5b6472;

  --border:#e5e7eb;
  --border-soft:#e6edf7;
  --border-input:#dbe3f0;

  --bg-soft:#f7faff;
  --bg-soft-2:#f8fbff;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:18px;
  --radius-xl:22px;
  --radius-2xl:24px;
  --radius-3xl:28px;
  --radius-pill:999px;

  --shadow-sm:0 8px 18px rgba(15,23,42,0.04);
  --shadow-md:0 14px 30px rgba(15,23,42,0.06);
  --shadow-lg:0 18px 40px rgba(15,23,42,0.08);
  --shadow-blue:0 25px 50px rgba(15,79,214,0.18);

  --topbar-height:44px;
  --header-height:78px;

  --transition:all .25s ease;
}

/* =========================
   LAYOUT
========================= */
.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

/* =========================
   TOPBAR
========================= */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  min-height:44px;
  background:linear-gradient(90deg,#0f172a,#020617);
  color:#94a3b8;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10px 14px;
  z-index:1100;
}

/* =========================
   HEADER / NAV
========================= */
.site-header{
  position:fixed;
  top:44px;
  left:0;
  width:100%;
  height:78px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  z-index:1090;
  transition:var(--transition);
}

.site-header.scrolled{
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
}

.header-inner{
  height:100%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  height:44px;
  width:auto;
  transition:transform .2s ease;
}

.logo:hover img{
  transform:scale(1.05);
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
}

.main-nav a{
  position:relative;
  font-weight:600;
  color:var(--text-strong);
  transition:var(--transition);
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:var(--transition);
}

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

.main-nav a:hover::after{
  width:100%;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

/* =========================
   BUTTON SYSTEM
========================= */
.btn,
button,
.domain-search-wrap button,
.login-link,
.cart-link{
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease,
    opacity .22s ease;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border:none;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
}

.btn-primary,
.domain-search-wrap button{
  background:linear-gradient(135deg, #0f4fd6 0%, #2563eb 100%);
  color:#ffffff;
  box-shadow:0 10px 22px rgba(15,79,214,0.16);
}

.btn-primary:hover,
.domain-search-wrap button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(15,79,214,0.24);
  background:linear-gradient(135deg, #0b3fb1 0%, #1d4ed8 100%);
}

.btn-outline,
.login-link,
.cart-link{
  background:#ffffff;
  border:1px solid #dbe2ea;
  color:#111111;
}

.btn-outline:hover,
.login-link:hover,
.cart-link:hover{
  transform:translateY(-2px);
  border-color:rgba(15,79,214,0.26);
  color:#0f4fd6;
  background:#f8fbff;
  box-shadow:0 12px 24px rgba(15,23,42,0.06);
}

.btn-dark{
  background:#0a0a0a;
  color:#ffffff;
  box-shadow:0 10px 20px rgba(0,0,0,0.14);
}

.btn-dark:hover{
  background:#111111;
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(0,0,0,0.20);
}

.btn:focus-visible,
button:focus-visible,
.login-link:focus-visible,
.cart-link:focus-visible,
.domain-search-wrap button:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 4px rgba(15,79,214,0.12),
    0 12px 24px rgba(15,79,214,0.16);
}

.login-link{
  padding:10px 16px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.cart-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  font-weight:600;
  border-radius:var(--radius-pill);
}

.cart-link-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.cart-link-icon svg{
  width:18px;
  height:18px;
}

.cart-count{
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:#ffffff;
  font-size:12px;
  font-weight:700;
  line-height:1;
}

/* =========================
   MAIN OFFSET
========================= */
.site-main{
  padding-top:122px;
}

/* =========================
   SECTION HEADING
========================= */
.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.section-heading.center{
  text-align:center;
  margin-bottom:46px;
}

.section-heading h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.12;
  color:var(--text-strong);
  font-weight:800;
}

.section-heading p{
  margin:0 auto;
  max-width:760px;
  color:#475569;
  font-size:18px;
  line-height:1.7;
  font-weight:500;
}

/* =========================
   HERO HOME
========================= */
.hero{
  position:relative;
  overflow:hidden;
  padding:90px 0;
  background:linear-gradient(135deg,#f9fbff,#eef5ff,#e0ecff);
}

.hero::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle at 20% 0%, rgba(99,102,241,0.15), transparent 40%)
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.hero h1{
  margin:0 0 16px;
  font-size:44px;
  line-height:1.15;
  font-weight:700;
  color:var(--text-strong);
}

.hero-subtitle{
  margin:0 0 25px;
  font-size:18px;
  color:var(--muted);
}

.hero-bg-logo{
  position:absolute;
  right:-140px;
  top:50%;
  transform:translateY(-50%);
  width:480px;
  opacity:0.035;
  pointer-events:none;
  z-index:0;
}

.hero-bg-logo img{
  width:100%;
  height:auto;
}

.hero-card{
  position:absolute;
  right:80px;
  bottom:60px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}
/* =========================
   SEARCH
========================= */
.domain-search-form{
  margin:0;
}

.domain-search-wrap{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:var(--radius-pill);
  padding:8px;
  box-shadow:var(--shadow-blue);
}

.domain-search-wrap input{
  flex:1;
  border:none;
  padding:14px;
  outline:none;
  background:transparent;
}

.domain-search-wrap button{
  padding:14px 20px;
  border-radius:var(--radius-pill);
}

/* =========================
   DOMAIN LIST HOME
========================= */
.domain-list{
  display:grid;
  grid-template-columns:repeat(2, auto);
  gap:14px 60px;
  margin-top:20px;
}

.domain-list a{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  font-size:18px;
  font-weight:600;
  color:var(--text);
  transition:var(--transition);
}

.domain-list a::after{
  content:"";
  position:absolute;
  bottom:-3px;
  left:0;
  width:0;
  height:2px;
  background:var(--primary);
  transition:var(--transition);
}

.domain-list span{
  color:var(--primary);
  font-weight:600;
  font-size:16px;
}

.domain-list a:hover{
  color:var(--primary);
  transform:translateX(4px);
}

.domain-list a:hover::after{
  width:100%;
}

/* =========================
   SUBHERO GENERIC
========================= */
.subhero{
  position:relative;
  overflow:hidden;
  padding:96px 0 84px;
  background:linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.subhero::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events:none;
}

.subhero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.subhero h1{
  margin:0 0 16px;
  font-size:46px;
  line-height:1.12;
  font-weight:800;
  color:#0f172a;
}

.subhero-text{
  margin:0 0 24px;
  max-width:720px;
  font-size:18px;
  line-height:1.7;
  color:#475569;
}

.subhero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:26px;
}

.subhero-points span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #e5edf7;
  box-shadow:0 8px 18px rgba(15,23,42,0.04);
  color:#0f4fd6;
  font-size:14px;
  font-weight:700;
}

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

.subhero-visual{
  display:flex;
  justify-content:center;
}

.subhero-card{
  width:100%;
  max-width:400px;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:24px;
  padding:32px 28px;
  text-align:center;
  box-shadow:0 18px 40px rgba(15,23,42,0.08);
}

.subhero-card-icon{
  width:78px;
  height:78px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:linear-gradient(135deg, #edf4ff 0%, #f4f8ff 100%);
  color:#0f4fd6;
  box-shadow:0 10px 24px rgba(15,79,214,0.08);
}

.subhero-card-icon svg{
  width:34px;
  height:34px;
}

.subhero-card h3{
  margin:0 0 10px;
  font-size:24px;
  color:#0f172a;
}

.subhero-card p{
  margin:0;
  color:#5b6472;
  line-height:1.7;
}

/* =========================
   HOSTING PLANS
========================= */
.hosting-section{
  background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
  padding:90px 0;
}

.hosting-plans-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:30px;
  align-items:stretch;
}

.hosting-plan-card{
  position:relative;
  background:#ffffff;
  border:1px solid #d8dee9;
  border-radius:18px;
  box-shadow:0 14px 30px rgba(15,23,42,0.06);
  padding:34px 30px 30px;
  min-height:100%;
  transition:var(--transition);
}

.hosting-plan-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 36px rgba(15,23,42,0.10);
}

.hosting-plan-card.featured{
  transform:translateY(-10px) scale(1.03);
  z-index:2;
  box-shadow:0 25px 70px rgba(15,79,214,0.18);
}

.plan-badge-top{
  position:absolute;
  top:16px;
  right:16px;
  background:#0f4fd6;
  color:#ffffff;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
  letter-spacing:0.3px;
}

.plan-head{
  margin-bottom:26px;
}

.plan-head h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.15;
  color:#111111;
}

.plan-head p{
  margin:0;
  color:#667085;
  font-size:16px;
}

.plan-price-wrap{
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:1px solid #e6ebf2;
}

.plan-price{
  font-size:56px;
  line-height:1;
  font-weight:800;
  color:#111111;
  margin-bottom:10px;
}

.plan-price-bgn{
  font-size:16px;
  font-weight:700;
  color:#0f4fd6;
}

.plan-features{
  margin:0 0 30px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.plan-features li{
  position:relative;
  padding-left:24px;
  margin:0;
  color:#334155;
  font-size:15px;
  line-height:1.5;
}

.plan-features li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#2563eb;
}

.plan-btn{
  width:100%;
  min-height:52px;
  font-size:18px;
  font-weight:700;
}

.plan-trust{
  margin-top:14px;
  font-size:13px;
  color:#64748b;
  text-align:center;
}

/* =========================
   COMPARISON TABLE
========================= */
.comparison-section{
  padding:96px 0;
  background:#ffffff;
}

.comparison-wrap{
  overflow-x:auto;
}

.comparison-table{
  min-width:860px;
  border:1px solid #e6edf7;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  background:#ffffff;
}

.comparison-row{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  align-items:center;
}

.comparison-row > div{
  padding:18px 20px;
  border-bottom:1px solid #edf2f7;
  color:#334155;
  font-size:15px;
}

.comparison-row > div:not(:last-child){
  border-right:1px solid #edf2f7;
}

.comparison-head{
  background:linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}

.comparison-head > div{
  font-weight:800;
  color:#0f172a;
}

.comparison-feature{
  font-weight:700;
  color:#0f172a;
}

/* =========================
   USE CASES
========================= */
.use-cases-section{
  padding:96px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.use-cases-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.use-case-card{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.use-case-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.16);
}

.use-case-card h3{
  margin:0 0 10px;
  font-size:22px;
  color:#0f172a;
}

.use-case-card p{
  margin:0;
  color:#5b6472;
  line-height:1.7;
}

/* =========================
   TRUST CARDS
========================= */
.hosting-trust-section,
.contact-trust-section{
  padding:84px 0 96px;
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hosting-trust-grid,
.contact-trust-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.hosting-trust-card,
.contact-trust-card{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:26px 22px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.hosting-trust-card:hover,
.contact-trust-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.16);
}

.hosting-trust-card h3,
.contact-trust-card h3{
  margin:0 0 10px;
  font-size:21px;
  color:#0f172a;
}

.hosting-trust-card p,
.contact-trust-card p{
  margin:0;
  color:#5b6472;
  line-height:1.7;
}

/* =========================
   WHY GOM
========================= */
.why-gom-section{
  position:relative;
  padding:96px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  overflow:hidden;
}

.why-gom-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events:none;
}

.why-gom-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.why-gom-card{
  background:rgba(255,255,255,0.92);
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.why-gom-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 50px rgba(15,23,42,0.12);
  border-color:rgba(15,79,214,0.2);
}

.why-gom-icon,
.security-modern-icon{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:18px;
  background:linear-gradient(135deg, #edf4ff 0%, #f4f8ff 100%);
  color:#0f4fd6;
  box-shadow:
    0 8px 18px rgba(15,79,214,0.08),
    inset 0 0 0 1px rgba(15,79,214,0.06);
  transition:var(--transition);
}

.why-gom-card:hover .why-gom-icon,
.security-modern-card:hover .security-modern-icon{
  background:#0f4fd6;
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(15,79,214,0.25);
}

.why-gom-icon svg,
.security-modern-icon svg{
  width:26px;
  height:26px;
  transition:transform .25s ease;
}

.why-gom-card:hover .why-gom-icon svg,
.security-modern-card:hover .security-modern-icon svg{
  transform:scale(1.08);
}

.why-gom-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
  color:#0f172a;
}

.why-gom-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#5b6472;
}

/* =========================
   MIGRATION
========================= */
.migration-section{
  position:relative;
  padding:96px 0;
  background:linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  overflow:hidden;
}

.migration-section::before{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events:none;
}

.migration-section::after{
  content:"";
  position:absolute;
  right:-150px;
  top:50%;
  width:400px;
  height:400px;
  background:radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
  transform:translateY(-50%);
}

.migration-wrap{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.migration-content h2{
  margin:0 0 16px;
  font-size:42px;
  line-height:1.12;
  color:#0f172a;
}

.migration-text{
  margin:0 0 30px;
  max-width:680px;
  font-size:18px;
  line-height:1.7;
  color:#475569;
}

.migration-points{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:30px;
}

.migration-point{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px 20px;
  border:1px solid rgba(15,79,214,0.08);
  border-radius:18px;
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.04);
  transition:var(--transition);
}

.migration-point:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(15,23,42,0.08);
  border-color:rgba(15,79,214,0.18);
}

.migration-point-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg, #edf4ff 0%, #f4f8ff 100%);
  color:#0f4fd6;
  box-shadow:inset 0 0 0 1px rgba(15,79,214,0.05);
  transition:var(--transition);
}

.migration-point:hover .migration-point-icon{
  color:#1d4ed8;
  background:linear-gradient(135deg, #e6f0ff 0%, #eef5ff 100%);
  transform:translateY(-2px);
  box-shadow:
    0 8px 18px rgba(15,79,214,0.12),
    0 0 0 6px rgba(15,79,214,0.05);
}

.migration-point-icon svg{
  width:24px;
  height:24px;
}

.migration-point h3{
  margin:0 0 6px;
  font-size:21px;
  color:#0f172a;
  font-weight:700;
}

.migration-point p{
  margin:0;
  color:#5b6472;
  line-height:1.65;
  font-size:15px;
}

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

.migration-visual{
  display:flex;
  justify-content:center;
}

.migration-card{
  width:100%;
  max-width:420px;
  background:#ffffff;
  border:1px solid #e5edf7;
  border-radius:28px;
  padding:34px 30px;
  text-align:center;
  box-shadow:0 20px 42px rgba(15,23,42,0.08);
  position:relative;
  transform:translateY(-10px);
  transition:var(--transition);
}

.migration-card:hover{
  transform:translateY(-6px);
}

.migration-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  padding:1px;
  background:linear-gradient(135deg, rgba(15,79,214,0.18), rgba(37,99,235,0.02));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  pointer-events:none;
}

.migration-card-icon{
  width:82px;
  height:82px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:22px;
  background:linear-gradient(135deg, #edf4ff 0%, #f4f8ff 100%);
  color:#0f4fd6;
  box-shadow:0 10px 24px rgba(15,79,214,0.08);
}

.migration-card-icon svg{
  width:38px;
  height:38px;
}

.migration-card h3{
  margin:0 0 10px;
  font-size:26px;
  color:#0f172a;
}

.migration-card p{
  margin:0 0 22px;
  color:#5b6472;
  line-height:1.7;
}

.migration-mini-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.migration-mini-list span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#f5f9ff;
  border:1px solid #e5edf7;
  color:#0f4fd6;
  font-size:14px;
  font-weight:700;
}

/* =========================
   SECURITY MODERN
========================= */
.security-section-modern{
  position:relative;
  padding:96px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  overflow:hidden;
}

.security-section-modern::before{
  content:"";
  position:absolute;
  top:-140px;
  left:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events:none;
}

.security-modern-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.security-modern-card{
  background:rgba(255,255,255,0.94);
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 22px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.security-modern-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.18);
}

.security-modern-card h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.2;
  color:#0f172a;
}

.security-modern-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#5b6472;
}

.security-modern-strip{
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.security-modern-strip-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #e6edf7;
  box-shadow:0 8px 18px rgba(15,23,42,0.04);
  color:#0f4fd6;
  font-size:14px;
  font-weight:700;
}

/* =========================
   DOMAINS PAGE
========================= */
.subhero-domains{
  background:linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.domain-search-large{
  margin-top:8px;
}

.domains-pricing-section{
  padding:96px 0;
  background:#ffffff;
}

.domains-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.domain-card{
  position:relative;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.domain-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.18);
}

.domain-card.featured{
  border:2px solid #0f4fd6;
  box-shadow:0 22px 45px rgba(15,79,214,0.12);
}

.domain-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.domain-ext{
  font-size:30px;
  line-height:1;
  font-weight:800;
  color:#0f172a;
}

.domain-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:#edf4ff;
  color:#0f4fd6;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.3px;
}

.domain-price-eur{
  font-size:40px;
  line-height:1.05;
  font-weight:800;
  color:#0f172a;
  margin-bottom:8px;
}

.domain-price-bgn{
  font-size:16px;
  font-weight:700;
  color:#0f4fd6;
  margin-bottom:14px;
}

.domain-card p{
  margin:0 0 20px;
  color:#5b6472;
  line-height:1.7;
}

.domain-table-section{
  padding:96px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.domain-table-wrap{
  overflow-x:auto;
}

.domain-table{
  min-width:860px;
  border:1px solid #e6edf7;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  background:#ffffff;
}

.domain-table-row{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.6fr;
  align-items:center;
}

.domain-table-row > div{
  padding:18px 20px;
  border-bottom:1px solid #edf2f7;
  color:#334155;
  font-size:15px;
}

.domain-table-row > div:not(:last-child){
  border-right:1px solid #edf2f7;
}

.domain-table-head{
  background:linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}

.domain-table-head > div{
  font-weight:800;
  color:#0f172a;
}

.domain-benefits-section{
  padding:96px 0;
  background:#ffffff;
}

.domain-benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.domain-benefit-card{
  background:#f8fbff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.domain-benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.16);
}

.domain-benefit-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
  color:#0f172a;
}

.domain-benefit-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#5b6472;
}

/* =========================
   SSL PAGE
========================= */
.subhero-ssl{
  background:linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.ssl-plans-section{
  padding:96px 0;
  background:#ffffff;
}

.ssl-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.ssl-card{
  position:relative;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.ssl-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.18);
}

.ssl-card.featured{
  border:2px solid #0f4fd6;
  box-shadow:0 22px 45px rgba(15,79,214,0.12);
}

.ssl-badge{
  position:absolute;
  top:16px;
  right:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:#edf4ff;
  color:#0f4fd6;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
}

.ssl-card-top{
  margin-bottom:18px;
}

.ssl-type{
  font-size:28px;
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
}

.ssl-price{
  font-size:38px;
  line-height:1.05;
  font-weight:800;
  color:#0f172a;
  margin-bottom:10px;
}

.ssl-subtext{
  margin:0 0 18px;
  color:#5b6472;
  line-height:1.7;
}

.ssl-features{
  margin:0 0 24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.ssl-features li{
  position:relative;
  padding-left:22px;
  color:#334155;
  line-height:1.55;
}

.ssl-features li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#2563eb;
}

.ssl-benefits-section{
  padding:96px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.ssl-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.ssl-benefit-card{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:26px 22px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.ssl-benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.16);
}

.ssl-benefit-card h3{
  margin:0 0 10px;
  font-size:21px;
  color:#0f172a;
}

.ssl-benefit-card p{
  margin:0;
  color:#5b6472;
  line-height:1.7;
}

.ssl-process-section{
  padding:96px 0;
  background:#ffffff;
}

.ssl-process-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.ssl-process-card{
  background:#f8fbff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
  transition:var(--transition);
}

.ssl-process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,0.10);
  border-color:rgba(15,79,214,0.16);
}

.ssl-step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  margin-bottom:16px;
  border-radius:50%;
  background:linear-gradient(135deg, #0f4fd6 0%, #2563eb 100%);
  color:#ffffff;
  font-size:16px;
  font-weight:800;
}

.ssl-process-card h3{
  margin:0 0 10px;
  font-size:22px;
  color:#0f172a;
}

.ssl-process-card p{
  margin:0;
  color:#5b6472;
  line-height:1.7;
}

/* =========================
   CONTACT PAGE
========================= */
.subhero-contacts{
  background:linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.contact-page-section{
  padding:96px 0;
  background:#ffffff;
}

.contact-page-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:32px;
  align-items:start;
}

.contact-info-box,
.contact-form-box{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:24px;
  padding:32px 28px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.contact-info-box h2,
.contact-form-box h2{
  margin:0 0 12px;
  font-size:32px;
  line-height:1.15;
  color:#0f172a;
}

.contact-info-text,
.contact-form-box p{
  margin:0 0 24px;
  color:#5b6472;
  line-height:1.7;
}

.contact-info-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-info-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 0;
  border-top:1px solid #eef2f7;
}

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

.contact-info-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg, #edf4ff 0%, #f4f8ff 100%);
  color:#0f4fd6;
  box-shadow:0 8px 18px rgba(15,79,214,0.08);
}

.contact-info-icon svg{
  width:24px;
  height:24px;
}

.contact-info-item h3{
  margin:0 0 6px;
  font-size:19px;
  color:#0f172a;
}

.contact-info-item p{
  margin:0;
  color:#5b6472;
}

.contact-info-item a:hover{
  color:#0f4fd6;
}

.contact-page-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group label{
  font-size:14px;
  font-weight:700;
  color:#0f172a;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #dbe3f0;
  border-radius:14px;
  padding:14px 16px;
  background:#ffffff;
  color:#111111;
  outline:none;
  transition:var(--transition);
}

.form-group textarea{
  resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:rgba(15,79,214,0.35);
  box-shadow:0 0 0 4px rgba(15,79,214,0.08);
}

.contact-submit-btn{
  min-height:52px;
  font-size:17px;
}

/* =========================
   FAQ
========================= */
.faq-section{
  padding:96px 0;
  background:linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.faq-list{
  max-width:920px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:18px;
  padding:0;
  box-shadow:0 10px 24px rgba(15,23,42,0.04);
  overflow:hidden;
}

.faq-item summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:20px 54px 20px 20px;
  font-size:17px;
  font-weight:700;
  color:#0f172a;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  line-height:1;
  color:#0f4fd6;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  margin:0;
  padding:0 20px 20px;
  color:#5b6472;
  line-height:1.7;
}

/* =========================
   FINAL CTA
========================= */
.final-cta-section{
  padding:96px 0;
  background:#ffffff;
}

.final-cta-box{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:56px 40px;
  text-align:center;
  background:linear-gradient(135deg, #0f4fd6 0%, #2563eb 100%);
  box-shadow:0 24px 50px rgba(15,79,214,0.20);
}

.final-cta-box::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
  pointer-events:none;
}

.final-cta-box .section-kicker{
  color:#dbeafe;
}

.final-cta-box h2{
  position:relative;
  z-index:1;
  margin:0 0 14px;
  font-size:40px;
  line-height:1.12;
  color:#ffffff;
}

.final-cta-box p{
  position:relative;
  z-index:1;
  max-width:760px;
  margin:0 auto 24px;
  color:#eaf2ff;
  font-size:18px;
  line-height:1.7;
}

.final-cta-actions{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.final-cta-box .btn-outline{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.18);
  color:#ffffff;
}

.final-cta-box .btn-outline:hover{
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.28);
  color:#ffffff;
}

/* =========================
   CART PAGE
========================= */
.subhero-cart{
  background:linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  padding:84px 0 60px;
}

.cart-title{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.12;
  color:#0f172a;
  font-weight:800;
}

.cart-section{
  padding:72px 0 96px;
  background:#ffffff;
}

.cart-grid{
  display:grid;
  grid-template-columns:1.25fr 0.75fr;
  gap:28px;
  align-items:start;
}

.cart-items{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.cart-item-card{
  display:flex;
  justify-content:space-between;
  gap:20px;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.cart-item-type{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  margin-bottom:12px;
  border-radius:999px;
  background:#edf4ff;
  color:#0f4fd6;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
}

.cart-item-card h3{
  margin:0 0 8px;
  font-size:24px;
  color:#0f172a;
}

.cart-item-card p{
  margin:0;
  color:#5b6472;
}

.cart-item-side{
  min-width:150px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:space-between;
}

.cart-price,
.cart-item-price{
  font-size:28px;
  font-weight:800;
  color:#0f172a;
}

.cart-remove,
.cart-remove-link{
  color:#dc2626;
  font-weight:600;
}

.cart-remove:hover,
.cart-remove-link:hover{
  text-decoration:underline;
}

.cart-summary-card{
  position:sticky;
  top:140px;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:22px;
  padding:24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.cart-summary-card h2{
  margin:0 0 20px;
  font-size:28px;
  color:#0f172a;
}

.cart-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding-bottom:16px;
  margin-bottom:16px;
  border-bottom:1px solid #edf2f7;
  font-size:18px;
}

.cart-summary-row strong{
  font-size:24px;
  color:#0f172a;
}

.cart-summary-note{
  margin:0 0 22px;
  color:#5b6472;
  line-height:1.7;
}

.cart-actions,
.cart-summary-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cart-empty{
  text-align:center;
  max-width:700px;
  margin:0 auto;
  padding:56px 24px;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.cart-empty h2{
  margin:0 0 12px;
  font-size:34px;
  color:#0f172a;
}

.cart-empty p{
  margin:0 0 24px;
  color:#5b6472;
  line-height:1.7;
}

.cart-empty-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:72px 0 24px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.2fr 1.8fr;
  gap:48px;
  align-items:start;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  margin-bottom:18px;
}

.footer-logo img{
  height:42px;
  width:auto;
  display:block;
}

.footer-brand-text{
  margin:0 0 20px;
  max-width:420px;
  color:#cbd5e1;
  line-height:1.8;
  font-size:15px;
}

.footer-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-trust span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:#e2e8f0;
  font-size:13px;
  font-weight:700;
  transition:var(--transition);
}

.footer-trust span:hover{
  background:rgba(15,79,214,0.12);
  border-color:rgba(15,79,214,0.25);
}

.footer-links-wrap{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.footer-col h4{
  margin:0 0 16px;
  color:#ffffff;
  font-size:17px;
}

.footer-col ul li{
  margin-bottom:12px;
}

.footer-col a{
  color:#cbd5e1;
  transition:var(--transition);
}

.footer-col a:hover{
  color:#ffffff;
  transform:translateX(3px);
}

.footer-contact-list li{
  color:#cbd5e1;
}

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

.footer-bottom p{
  margin:0;
  color:#94a3b8;
  font-size:14px;
}

.footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.footer-bottom-links a{
  color:#94a3b8;
  font-size:14px;
  transition:var(--transition);
}

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

/* =========================
   SCROLL TO TOP
========================= */
.scroll-top{
  position:fixed;
  right:24px;
  bottom:24px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg, #0f4fd6 0%, #2563eb 100%);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(15,79,214,0.25);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
  z-index:1200;
}

.scroll-top svg{
  width:20px;
  height:20px;
}

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

.scroll-top:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(15,79,214,0.32);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .hosting-plans-grid,
  .ssl-grid{
    grid-template-columns:1fr;
  }

  .why-gom-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .migration-wrap,
  .subhero-grid,
  .contact-page-grid{
    grid-template-columns:1fr;
  }

  .migration-visual{
    justify-content:flex-start;
  }

  .use-cases-grid,
  .domain-benefits-grid,
  .hosting-trust-grid,
  .contact-trust-grid,
  .ssl-process-grid{
    grid-template-columns:1fr;
  }

  .domains-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .security-modern-grid,
  .ssl-benefits-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-links-wrap{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 980px){
  .header-inner{
    grid-template-columns:1fr;
    gap:12px;
    padding:12px 0;
  }

  .site-header{
    height:auto;
  }

  .main-nav{
    flex-wrap:wrap;
    gap:18px;
  }

  .header-actions{
    justify-content:center;
    flex-wrap:wrap;
  }

  .site-main{
    padding-top:160px;
  }

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

  .cart-summary-card{
    position:static;
  }
}

@media (max-width: 700px){
  .subhero,
  .why-gom-section,
  .migration-section,
  .security-section-modern,
  .comparison-section,
  .use-cases-section,
  .faq-section,
  .final-cta-section,
  .domains-pricing-section,
  .domain-table-section,
  .domain-benefits-section,
  .ssl-plans-section,
  .ssl-benefits-section,
  .ssl-process-section,
  .contact-page-section,
  .contact-trust-section{
    padding:78px 0;
  }

  .hero{
    padding:70px 0;
  }

  .hero h1,
  .subhero h1{
    font-size:36px;
  }

  .section-heading h2,
  .migration-content h2{
    font-size:34px;
  }

  .section-heading p,
  .subhero-text,
  .migration-text,
  .final-cta-box p{
    font-size:17px;
  }

  .why-gom-grid,
  .domains-grid,
  .security-modern-grid,
  .ssl-benefits-grid{
    grid-template-columns:1fr;
  }

  .why-gom-card,
  .security-modern-card,
  .domain-card,
  .contact-info-box,
  .contact-form-box{
    padding:24px 20px;
  }

  .cart-item-card{
    flex-direction:column;
    padding:20px;
  }

  .cart-item-side{
    min-width:0;
    align-items:flex-start;
    gap:12px;
  }

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

  .final-cta-box{
    padding:40px 24px;
    border-radius:22px;
  }

  .final-cta-box h2{
    font-size:32px;
  }

  .faq-item summary{
    font-size:16px;
    padding:18px 50px 18px 18px;
  }

  .faq-item p{
    padding:0 18px 18px;
  }

  .site-footer{
    padding:58px 0 22px;
  }

  .footer-links-wrap{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  .topbar{
    font-size:12px;
    min-height:40px;
    padding:8px 12px;
  }

  .site-header{
    top:40px;
  }

  .site-main{
    padding-top:150px;
  }

  .container{
    width:min(100% - 24px, 1180px);
  }

  .logo img{
    height:40px;
  }

  .main-nav{
    gap:14px;
  }

  .main-nav a{
    font-size:14px;
  }

  .login-link{
    padding:9px 14px;
  }

  .cart-link{
    padding:9px 12px;
  }

  .cart-link-text{
    display:none;
  }

  .hero-bg-logo{
    display:none;
  }

  .domain-search-wrap{
    flex-direction:column;
    gap:10px;
    border-radius:20px;
  }

  .domain-search-wrap input{
    width:100%;
  }

  .domain-search-wrap button{
    width:100%;
  }

  .domain-list{
    grid-template-columns:1fr;
    gap:14px;
  }

  .plan-head h3{
    font-size:24px;
  }

  .plan-price{
    font-size:46px;
  }

  .domain-ext{
    font-size:26px;
  }

  .domain-price-eur,
  .ssl-price{
    font-size:32px;
  }

  .cart-title{
    font-size:34px;
  }

  .cart-empty h2{
    font-size:30px;
  }

  .scroll-top{
    right:16px;
    bottom:16px;
    width:42px;
    height:42px;
  }
}

.plan-cycle-select{
  margin:0 0 22px;
}

.plan-cycle-select label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
  color:#0f172a;
}

.plan-cycle-select select{
  width:100%;
  border:1px solid #dbe3f0;
  border-radius:14px;
  padding:12px 14px;
  background:#ffffff;
  color:#111111;
  outline:none;
  transition:all .25s ease;
}

.plan-cycle-select select:focus{
  border-color:rgba(15,79,214,0.35);
  box-shadow:0 0 0 4px rgba(15,79,214,0.08);
}

.plan-price-wrap{
  position:relative;
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:1px solid #e6ebf2;
}

.plan-price-old{
  margin-bottom:8px;
  font-size:18px;
  font-weight:700;
  color:#94a3b8;
  text-decoration:line-through;
}

.plan-discount-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:6px 12px;
  border-radius:999px;
  background:#edf4ff;
  color:#0f4fd6;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
}

.domain-card-active{
  border:2px solid #0f4fd6;
  box-shadow:0 24px 50px rgba(15,79,214,0.14);
}

.domain-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.domain-card-actions form{
  margin:0;
}

.domain-table-row-active{
  background:#f8fbff;
}

.subhero-points span a{
  display:inline-block;
}

.domain-search-select{
  border:none;
  background:transparent;
  padding:0 10px;
  min-width:90px;
  color:#0f172a;
  font-weight:700;
  outline:none;
  cursor:pointer;
}

.domain-card-active{
  border:2px solid #0f4fd6;
  box-shadow:0 24px 50px rgba(15,79,214,0.14);
}

.domain-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.domain-card-actions form{
  margin:0;
}

.domain-table-row-active{
  background:#f8fbff;
}

.subhero-points span a{
  display:inline-block;
}

.domain-search-fixed-tld{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:86px;
  padding:0 14px;
  font-weight:700;
  color:#0f172a;
  white-space:nowrap;
}

.domain-search-select{
  border:none;
  background:transparent;
  padding:0 10px;
  min-width:90px;
  color:#0f172a;
  font-weight:700;
  outline:none;
  cursor:pointer;
}

.domain-card-actions{
  display:flex;
  justify-content:flex-start;
  gap:10px;
}

.domain-table-row a{
  font-weight:700;
  color:#0f172a;
  transition:all .25s ease;
}

.domain-table-row a:hover{
  color:#0f4fd6;
}

.domain-search-form{
  transition:all .3s ease;
}

.domain-search-form:focus-within{
  box-shadow:0 0 0 3px rgba(15,79,214,0.15);
  transform:translateY(-2px);
}

.domain-card-active{
  border:2px solid #0f4fd6;
  box-shadow:0 24px 50px rgba(15,79,214,0.14);
}

.domain-card-actions{
  display:flex;
  justify-content:flex-start;
  gap:10px;
}

.domain-table-row-active{
  background:#f8fbff;
}

.domain-table-row a{
  font-weight:700;
  color:#0f172a;
  transition:all .25s ease;
}

.domain-table-row a:hover{
  color:#0f4fd6;
}

.subhero-points span a{
  display:inline-block;
}

.domain-search-fixed-tld{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:86px;
  padding:0 14px;
  font-weight:700;
  color:#0f172a;
  white-space:nowrap;
}

.domain-search-select{
  border:none;
  background:transparent;
  padding:0 10px;
  min-width:90px;
  color:#0f172a;
  font-weight:700;
  outline:none;
  cursor:pointer;
}

.domain-search-form{
  position:relative;
  transition:all .3s ease;
}

.domain-search-form:focus-within{
  transform:translateY(-2px);
}

.live-suggestions{
  margin-top:14px;
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:18px;
  box-shadow:0 16px 34px rgba(15,23,42,0.08);
  overflow:hidden;
}

.live-suggestion-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border-bottom:1px solid #edf2f7;
  transition:all .25s ease;
}

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

.live-suggestion-item:hover{
  background:#f8fbff;
}

.live-suggestion-domain{
  font-weight:700;
  color:#0f172a;
}

.live-suggestion-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.live-suggestion-status.available{
  background:#ecfdf3;
  color:#15803d;
}

.live-suggestion-status.taken{
  background:#fef2f2;
  color:#b91c1c;
}

.suggestion-results{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
  text-align:left;
}

.suggestion-result-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
  border:1px solid #e6edf7;
  border-radius:18px;
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.04);
}

.suggestion-domain{
  font-size:18px;
  font-weight:800;
  color:#0f172a;
}

.suggestion-price{
  margin-top:4px;
  color:#0f4fd6;
  font-weight:700;
}

@media (max-width: 700px){
  .suggestion-result-card{
    flex-direction:column;
    align-items:flex-start;
  }
}

.main-nav a{
  position:relative;
}

.main-nav a.active{
  color:#0f4fd6;
}

.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:2px;
  background:#0f4fd6;
  border-radius:999px;
}

.hero-home{
  position:relative;
  padding:72px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(15,79,214,0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow:hidden;
}

.hero-home-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

.hero-home-content{
  max-width:640px;
}

.hero-home-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#eaf2ff;
  color:#0f4fd6;
  font-size:13px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-home h1{
  margin:0 0 18px;
  font-size:54px;
  line-height:1.08;
  letter-spacing:-1.2px;
  color:#0f172a;
}

.hero-home h1 span{
  color:#0f4fd6;
}

.hero-home-text{
  margin:0 0 26px;
  font-size:18px;
  line-height:1.75;
  color:#475569;
  max-width:600px;
}

.hero-home-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:24px;
}

.hero-home-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero-home-points span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e6edf7;
  color:#334155;
  font-size:14px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(15,23,42,0.04);
}

.hero-home-visual{
  position:relative;
  min-height:440px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-home-card{
  background:#fff;
  border:1px solid #e6edf7;
  border-radius:28px;
  box-shadow:0 28px 60px rgba(15,23,42,0.10);
}

.hero-home-card-main{
  position:relative;
  width:min(100%, 430px);
  padding:28px;
  z-index:2;
}

.hero-home-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.hero-home-card-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:#edf4ff;
  color:#0f4fd6;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
}

.hero-home-card-top strong{
  font-size:18px;
  color:#0f172a;
}

.hero-home-card-main h3{
  margin:0 0 18px;
  font-size:26px;
  line-height:1.3;
  color:#0f172a;
}

.hero-home-card-list{
  margin:0 0 24px;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.hero-home-card-list li{
  position:relative;
  padding-left:24px;
  color:#475569;
  line-height:1.6;
}

.hero-home-card-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#0f4fd6;
}

.hero-home-card-btn{
  width:100%;
}

.hero-home-mini-card{
  position:absolute;
  background:#fff;
  border:1px solid #e6edf7;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(15,23,42,0.08);
  padding:16px 18px;
  min-width:180px;
}

.hero-home-mini-card strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  color:#0f172a;
}

.hero-home-mini-card span{
  display:block;
  color:#64748b;
  font-size:13px;
  line-height:1.5;
}

.hero-home-mini-card-one{
  top:18px;
  right:0;
  z-index:3;
}

.hero-home-mini-card-two{
  bottom:10px;
  left:10px;
  z-index:1;
}

@media (max-width: 1100px){
  .hero-home h1{
    font-size:46px;
  }
}

@media (max-width: 900px){
  .hero-home{
    padding:56px 0 46px;
  }

  .hero-home-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .hero-home-content{
    max-width:none;
  }

  .hero-home h1{
    font-size:40px;
  }

  .hero-home-text{
    font-size:17px;
  }

  .hero-home-visual{
    min-height:auto;
    justify-content:flex-start;
    padding-top:10px;
  }

  .hero-home-card-main{
    width:100%;
  }

  .hero-home-mini-card{
    position:static;
    margin-top:14px;
    width:100%;
  }
}

@media (max-width: 640px){
  .hero-home h1{
    font-size:34px;
  }

  .hero-home-text{
    font-size:16px;
  }

  .hero-home-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-home-actions .btn{
    width:100%;
  }
}

.status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}

.status.pending{
  background:#cce5ff;
  color:#004085;
}

.status.active{
  background:#d4edda;
  color:#155724;
}

.status.suspended{
  background:#fff3cd;
  color:#856404;
}

.status.cancelled{
  background:#f8d7da;
  color:#721c24;
}

.status.expired{
  background:#fff3cd;
  color:#856404;
}

/* =========================
   CLIENT PANEL
========================= */

.admin-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.admin-card{
  background:#fff;
  padding:24px;
  border-radius:20px;
  border:1px solid #e8eef7;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.admin-card h3{
  margin:0 0 10px;
  font-size:15px;
  color:#475569;
}

.admin-card p{
  margin:0;
  font-size:32px;
  font-weight:800;
  color:#0f172a;
}

.admin-card.highlight{
  border:1px solid rgba(15,79,214,0.22);
  box-shadow:0 18px 35px rgba(15,79,214,0.08);
}

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

.admin-table th,
.admin-table td{
  padding:12px 10px;
  text-align:left;
  border-bottom:1px solid #edf2f7;
  font-size:14px;
  vertical-align:middle;
}

.admin-table th{
  color:#64748b;
  font-weight:700;
  font-size:13px;
}

.status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  line-height:1;
}

.status.pending{
  background:#dbeafe;
  color:#1d4ed8;
}

.status.active{
  background:#dcfce7;
  color:#15803d;
}

.status.suspended{
  background:#fef3c7;
  color:#b45309;
}

.status.cancelled{
  background:#fee2e2;
  color:#b91c1c;
}

.status.expired{
  background:#ffe4e6;
  color:#be123c;
}

.status.paid{
  background:#dcfce7;
  color:#15803d;
}

.status.processing{
  background:#e0f2fe;
  color:#0369a1;
}

.status.completed{
  background:#dcfce7;
  color:#15803d;
}

/* warning badges */
.warning-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
}

.warning-badge.is-ok{
  background:#ecfdf5;
  color:#047857;
}

.warning-badge.is-soon{
  background:#fff7ed;
  color:#c2410c;
}

.warning-badge.is-urgent{
  background:#fef2f2;
  color:#dc2626;
}

.warning-badge.is-none{
  background:#f8fafc;
  color:#64748b;
}

.warning-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
}

.warning-badge.is-ok{
  background:#ecfdf5;
  color:#047857;
}

.warning-badge.is-soon{
  background:#fff7ed;
  color:#c2410c;
}

.warning-badge.is-urgent{
  background:#fef2f2;
  color:#dc2626;
}

.warning-badge.is-none{
  background:#f8fafc;
  color:#64748b;
}

/* =========================
   CLIENT PANEL / DASHBOARD
========================= */
.client-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
  flex-wrap:wrap;
}

.client-topbar-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.dashboard-stats-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-bottom:24px;
}

.dashboard-stat-card{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:20px;
  padding:22px;
  box-shadow:0 12px 28px rgba(15,23,42,0.05);
}

.dashboard-stat-label{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:#64748b;
  margin-bottom:10px;
}

.dashboard-stat-value{
  font-size:34px;
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
}

.dashboard-stat-meta{
  margin-top:8px;
  color:#64748b;
  font-size:14px;
}

.dashboard-grid-main{
  display:grid;
  grid-template-columns:minmax(0, 1.6fr) minmax(300px, .7fr);
  gap:24px;
  align-items:start;
}

.dashboard-main-column{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.dashboard-side-column{
  position:sticky;
  top:140px;
}

.dashboard-panel{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.dashboard-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.dashboard-panel-head h2{
  margin:0;
  font-size:24px;
  color:#0f172a;
}

.dashboard-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.dashboard-list-card{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:18px;
  border:1px solid #edf2f7;
  border-radius:18px;
  background:#fbfdff;
  flex-wrap:wrap;
}

.dashboard-list-main h3{
  margin:8px 0 8px;
  font-size:20px;
  color:#0f172a;
}

.dashboard-list-main p{
  margin:0;
  color:#475569;
}

.dashboard-list-meta{
  margin-top:8px;
  font-size:13px;
  color:#64748b;
}

.dashboard-list-side{
  display:flex;
  align-items:flex-end;
  gap:10px;
  flex-direction:column;
}

.dashboard-alerts-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.dashboard-alert-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border:1px solid #edf2f7;
  border-radius:16px;
  background:#fffdf8;
  flex-wrap:wrap;
}

.dashboard-alert-meta{
  margin-top:4px;
  color:#64748b;
  font-size:14px;
}

/* =========================
   SERVICES GRID
========================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.service-card{
  background:#ffffff;
  border:1px solid #e6edf7;
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 30px rgba(15,23,42,0.05);
}

.service-card-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.service-title{
  margin:10px 0 6px;
  font-size:24px;
  line-height:1.2;
  color:#0f172a;
}

.service-subtitle{
  margin:0;
  color:#64748b;
}

.service-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.service-domain{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#f1f6ff;
  color:#0f4fd6;
  font-weight:700;
  margin-bottom:18px;
}

.service-info-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.service-info-box{
  padding:14px 16px;
  border:1px solid #edf2f7;
  border-radius:16px;
  background:#fbfdff;
}

.service-info-label{
  font-size:13px;
  color:#64748b;
  margin-bottom:6px;
}

.service-notes{
  margin-top:18px;
  padding:16px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid #e8f0fb;
}

.service-credentials{
  margin-top:18px;
  padding:16px;
  border-radius:16px;
  background:#fffdf8;
  border:1px solid #f4e7b5;
}

.service-credentials-label{
  font-size:13px;
  color:#64748b;
  margin-bottom:8px;
}

.service-credentials code{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  background:#111827;
  color:#fff;
  font-size:14px;
  word-break:break-all;
}

.service-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .dashboard-stats-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid-main{
    grid-template-columns:1fr;
  }

  .dashboard-side-column{
    position:static;
  }

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

@media (max-width: 700px){
  .dashboard-stats-grid{
    grid-template-columns:1fr;
  }

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

  .dashboard-list-card,
  .dashboard-alert-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .dashboard-list-side{
    align-items:flex-start;
  }
}

.status.paid { background:#dcfce7; color:#166534; }
.status.pending { background:#fef3c7; color:#92400e; }
.status.unpaid { background:#fee2e2; color:#991b1b; }