/* ====================================================
   SOFTSUNRISE DESIGN SYSTEM v2
   Single source of truth for all public-facing styles
   ==================================================== */

/* ---- 1. CSS VARIABLES ---- */
:root {
  --brand-orange:  #f2643b;
  --brand-orange-d:#d94f29;
  --brand-blue:    #1f6b9a;
  --brand-blue-d:  #0d4a6e;
  --navy:          #081a35;
  --navy-2:        #0d233e;
  --navy-3:        #123f70;
  --teal:          #2ec4b6;

  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#eef2f6;
  --gray-400:#cbd5e1;
  --gray-500:#94a3b8;
  --gray-600:#64748b;
  --gray-800:#1e293b;

  --text:        var(--gray-800);
  --text-muted:  var(--gray-600);
  --border:      var(--gray-200);
  --surface:     var(--white);
  --surface-alt: var(--gray-50);

  --font: 'Inter', 'Montserrat', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow:    0 8px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.12);
  --transition: .25s ease;
  --transition-slow: .4s cubic-bezier(.165,.84,.44,1);
}

/* ---- 2. RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- 3. TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.topbar a:hover { color: var(--brand-orange); }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-contacts { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar-contacts span { display: flex; align-items: center; gap: .4rem; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-login {
  display: flex; align-items: center; gap: .35rem;
  font-weight: 600; color: var(--brand-orange) !important;
  border: 1px solid rgba(242,100,59,.4);
  padding: 3px 10px; border-radius: 20px;
  font-size: .75rem;
  transition: all var(--transition);
}
.topbar-login:hover { background: var(--brand-orange); color: #fff !important; border-color: var(--brand-orange); }

/* ---- 4. HEADER / NAV ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 60px; gap: 1.5rem;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }

/* Nav */
.nav-list {
  display: flex; align-items: center;
  list-style: none; gap: .25rem;
}
.nav-list > li > a {
  display: flex; align-items: center; gap: .25rem;
  padding: .5rem .85rem;
  font-size: .9rem; font-weight: 600;
  color: var(--navy-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--brand-orange); background: rgba(242,100,59,.06); }
.nav-list > li > a i { font-size: .7rem; transition: transform var(--transition); }
.nav-list > li:hover > a > i { transform: rotate(180deg); }

/* Dropdown */
.nav-list li { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}
.nav-list li:hover > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; flex-direction: column;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--brand-orange); }
.nav-dropdown .item-title { font-weight: 600; color: var(--navy-2); font-size: .875rem; }
.nav-dropdown .item-desc  { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.nav-dropdown .view-all {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); margin-top: .25rem; padding-top: .5rem;
  color: var(--brand-orange); font-weight: 700; font-size: .8rem;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brand-orange); color: #fff;
  padding: .5rem 1.25rem; border-radius: 50px;
  font-size: .875rem; font-weight: 700;
  border: 2px solid var(--brand-orange);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--brand-orange-d); border-color: var(--brand-orange-d); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy-2);
  border-radius: 2px; transition: all var(--transition);
  display: block;
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: var(--white); overflow-y: auto; padding: 1.5rem;
  transform: translateX(-100%); transition: transform .35s ease;
}
.mobile-nav.open { transform: translateX(0); display: block; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mobile-nav-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy-2); }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-list a { display: block; padding: .75rem 1rem; border-radius: var(--radius-sm); font-weight: 600; color: var(--navy-2); font-size: .95rem; transition: all var(--transition); }
.mobile-nav-list a:hover { background: var(--gray-50); color: var(--brand-orange); }
.mobile-submenu { display: none; padding-left: 1rem; }
.mobile-submenu.open { display: block; }
.mobile-sub-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: .75rem 1rem; font-size: .95rem; font-weight: 600; color: var(--navy-2); cursor: pointer; border-radius: var(--radius-sm); }
.mobile-sub-toggle:hover { background: var(--gray-50); color: var(--brand-orange); }

/* ---- 5. HERO ---- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(242,100,59,.22), transparent 38%),
    radial-gradient(circle at 92% 80%, rgba(46,196,182,.18), transparent 35%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-3) 52%, #1f7ca8 100%);
  color: #fff;
  padding: 2.25rem 0 2rem;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero > .container { width: 100%; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(242,100,59,.15); border: 1px solid rgba(242,100,59,.35);
  color: #ff9f68; font-size: .75rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 50px; margin-bottom: .85rem;
}
.hero-title {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: .85rem;
}
.hero-title .accent { color: #ff9f68; }
.hero-sub {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.75); max-width: 540px;
  line-height: 1.65; margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-stat .num { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* Page hero (internal pages) */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(242,100,59,.18), transparent 36%),
    radial-gradient(circle at 90% 85%, rgba(46,196,182,.16), transparent 32%),
    linear-gradient(145deg, var(--navy), var(--navy-3) 55%, #1f7ca8);
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: .75rem;
}
.page-hero-title .accent { color: #ff9f68; }
.page-hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.72); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
.hero-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--brand-orange), var(--teal)); border-radius: 2px; margin: .85rem auto .9rem; }

/* ---- 6. BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; font-weight: 700; font-size: .9rem;
  border-radius: 50px; padding: .7rem 1.6rem;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-primary   { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }
.btn-primary:hover { background: var(--brand-orange-d); border-color: var(--brand-orange-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(242,100,59,.3); }
.btn-outline   { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--brand-orange); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--navy-2); border-color: var(--navy-2); }
.btn-outline-dark:hover { background: var(--navy-2); color: #fff; }
.btn-blue  { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.btn-blue:hover { background: var(--brand-blue-d); border-color: var(--brand-blue-d); transform: translateY(-2px); }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }

/* ---- 7. LAYOUT UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.row { display: grid; gap: 1.5rem; }
.row-2 { grid-template-columns: repeat(2, 1fr); }
.row-3 { grid-template-columns: repeat(3, 1fr); }
.row-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---- 8. SECTION HEADING ---- */
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-orange);
  margin-bottom: .5rem;
}
.section-tag::before {
  content: ""; display: inline-block;
  width: 18px; height: 2px; background: var(--brand-orange); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--navy-2);
  letter-spacing: -.025em; line-height: 1.15;
  margin-bottom: .5rem;
}
.section-title .accent { color: var(--brand-orange); }
.section-desc {
  font-size: clamp(.9rem, 1.6vw, 1rem);
  color: var(--text-muted); line-height: 1.7;
  max-width: 600px;
}
.section-head.center .section-desc { margin: 0 auto; }

/* ---- 9. CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(242,100,59,.2); }
.card-body { padding: 1.75rem; }
.card-icon {
  width: 56px; height: 56px;
  background: rgba(242,100,59,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brand-orange);
  margin-bottom: 1rem; transition: all var(--transition);
}
.card:hover .card-icon { background: var(--brand-orange); color: #fff; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy-2); margin-bottom: .5rem; }
.card-text  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.card-link  { display: inline-flex; align-items: center; gap: .35rem; color: var(--brand-orange); font-weight: 700; font-size: .85rem; margin-top: 1rem; transition: gap var(--transition); }
.card-link:hover { gap: .65rem; }

/* Pricing card */
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  text-align: center; transition: all var(--transition-slow);
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--brand-orange); background: linear-gradient(145deg, #fff, #fff8f5);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  position: absolute; top: 16px; right: -30px;
  background: var(--brand-orange); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 36px; transform: rotate(45deg);
}
.price-name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-blue); margin-bottom: .75rem; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--navy-2); line-height: 1; margin-bottom: .25rem; }
.price-amount sup { font-size: 1rem; vertical-align: top; margin-top: .4rem; }
.price-period { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; text-align: left; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.price-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--text-muted); }
.price-features li i { color: var(--brand-orange); margin-top: 2px; flex-shrink: 0; }

/* Hosting card */
.host-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--transition-slow);
}
.host-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(242,100,59,.2); }
.host-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(31,107,154,.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--brand-blue);
}
.host-card:hover .host-icon { background: var(--brand-blue); color: #fff; }
.host-info .name { font-size: 1rem; font-weight: 700; color: var(--navy-2); margin-bottom: .3rem; }
.host-info .desc { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.host-info .from { font-size: .8rem; font-weight: 700; color: var(--brand-orange); margin-top: .5rem; }

/* Blog card */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition-slow); height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand-orange); margin-bottom: .5rem; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--navy-2); margin-bottom: .5rem; line-height: 1.4; }
.blog-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: .75rem; margin-top: auto; }
.blog-read { color: var(--brand-orange); font-weight: 700; display: flex; align-items: center; gap: .3rem; transition: gap var(--transition); }
.blog-read:hover { gap: .55rem; }

/* Course card */
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition-slow); height: 100%;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-img { height: 180px; overflow: hidden; background: var(--gray-100); position: relative; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course-card:hover .course-img img { transform: scale(1.06); }
.course-type-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--brand-blue); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 50px;
}
.course-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.course-name { font-size: 1rem; font-weight: 700; color: var(--navy-2); margin-bottom: .5rem; line-height: 1.35; }
.course-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--text-muted); margin-bottom: 1rem; }
.course-meta span { display: flex; align-items: center; gap: .3rem; }
.course-price { font-size: 1.2rem; font-weight: 800; color: var(--brand-orange); margin-top: auto; }
.course-price-old { text-decoration: line-through; color: var(--gray-500); font-size: .85rem; font-weight: 400; }

/* ---- 10. CTA BAND ---- */
.cta-band {
  background:
    radial-gradient(circle at 15% 50%, rgba(242,100,59,.25), transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(46,196,182,.2), transparent 45%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  padding: 4rem 0;
  color: #fff; text-align: center;
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.72); margin-bottom: 2rem; }

/* ---- 11. TESTIMONIAL ---- */
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: all var(--transition-slow); height: 100%;
}
.testi-card:hover { box-shadow: var(--shadow); border-color: rgba(242,100,59,.2); transform: translateY(-4px); }
.testi-stars { color: #f59e0b; font-size: .95rem; }
.testi-text  { font-size: .9rem; color: var(--text); line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: .75rem; border-top: 1px solid var(--border); padding-top: .75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--gray-200); flex-shrink: 0; }
.testi-name    { font-size: .875rem; font-weight: 700; color: var(--navy-2); }
.testi-company { font-size: .75rem; color: var(--text-muted); }

/* ---- 12. DOMAIN SEARCH ---- */
.domain-search {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); padding: .5rem;
  display: flex; max-width: 640px; width: 100%;
}
.domain-search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: .95rem; padding: .6rem 1rem;
}
.domain-search input::placeholder { color: rgba(255,255,255,.5); }
.domain-search button {
  background: var(--brand-orange); color: #fff;
  border: none; border-radius: var(--radius-lg); padding: .65rem 1.5rem;
  font-weight: 700; font-size: .9rem; cursor: pointer; flex-shrink: 0;
  transition: background var(--transition);
}
.domain-search button:hover { background: var(--brand-orange-d); }

/* ---- 13. FEATURES LIST ---- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text-muted); }
.feature-list li i { color: var(--brand-orange); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.feature-list li strong { color: var(--navy-2); }

/* ---- 14. ACCORDION / FAQ ---- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .65rem; overflow: hidden; }
.faq-btn {
  width: 100%; background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; font-size: .95rem; font-weight: 600; color: var(--navy-2);
  transition: all var(--transition); text-align: left;
}
.faq-btn:hover, .faq-btn.active { background: rgba(242,100,59,.04); color: var(--brand-orange); }
.faq-btn i { transition: transform var(--transition); flex-shrink: 0; }
.faq-btn.active i { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 1.4rem 1.1rem; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.faq-body.open { display: block; }

/* ---- 15. BREADCRUMB ---- */
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.6); flex-wrap: wrap;
  margin-bottom: .9rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: #ff9f68; }
.breadcrumb .sep { opacity: .4; }

/* ---- 16. BADGES ---- */
.badge {
  display: inline-flex; align-items: center;
  padding: .25rem .65rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}
.badge-orange { background: rgba(242,100,59,.12); color: var(--brand-orange); }
.badge-blue   { background: rgba(31,107,154,.12);  color: var(--brand-blue); }
.badge-green  { background: rgba(16,185,129,.12);  color: #059669; }
.badge-gray   { background: var(--gray-100); color: var(--text-muted); }

/* ---- 17. TABS ---- */
.tab-list { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab-btn {
  padding: .5rem 1.1rem; border-radius: 50px; font-size: .85rem; font-weight: 600;
  border: 1px solid var(--border); background: var(--white); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- 18. SEARCH BAR ---- */
.search-bar {
  display: flex; gap: .5rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50px; padding: .35rem .35rem .35rem 1rem;
  max-width: 480px; transition: border-color var(--transition);
}
.search-bar:focus-within { border-color: var(--brand-orange); }
.search-bar input { flex: 1; border: none; outline: none; font-size: .9rem; background: transparent; }
.search-bar button { background: var(--brand-orange); color: #fff; border: none; border-radius: 50px; padding: .5rem 1.2rem; font-weight: 700; font-size: .85rem; cursor: pointer; }

/* ---- 19. STAT BOXES ---- */
.stat-box { text-align: center; padding: 1.5rem; }
.stat-num { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--brand-orange); line-height: 1; }
.stat-lbl { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-top: .35rem; }

/* ---- 20. PARTNER LOGOS ---- */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; }
.partner-item {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition);
}
.partner-item:hover { box-shadow: var(--shadow); border-color: rgba(242,100,59,.2); }
.partner-item img { max-height: 50px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: all var(--transition); }
.partner-item:hover img { filter: none; opacity: 1; }

/* ---- 21. FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand .logo { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-socials { display: flex; gap: .65rem; margin-top: 1.2rem; }
.footer-social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.65); transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--brand-orange); color: #fff; }
.footer-heading { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--brand-orange); }
.footer-contact-item { display: flex; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .65rem; align-items: flex-start; }
.footer-contact-item i { color: var(--brand-orange); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--brand-orange); }

/* ---- 22. FORM STYLES ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy-2); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: var(--font); color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(242,100,59,.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- 23. ALERT ---- */
.alert { padding: .85rem 1.2rem; border-radius: var(--radius-sm); font-size: .9rem; display: flex; align-items: flex-start; gap: .65rem; }
.alert-success { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25); color: #047857; }
.alert-error   { background: rgba(239,68,68,.08);  border: 1px solid rgba(239,68,68,.25);  color: #b91c1c; }

/* ---- 24. PAGINATION ---- */
.pagination { display: flex; gap: .4rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.page-btn {
  min-width: 40px; height: 40px; border: 1.5px solid var(--border);
  background: var(--white); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }

/* ---- 25. TABLE ---- */
.ss-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.ss-table th { background: var(--navy-2); color: #fff; padding: .85rem 1rem; text-align: left; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.ss-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.ss-table tr:last-child td { border-bottom: none; }
.ss-table tr:hover td { background: var(--gray-50); }

/* ---- 26. RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .row-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-list, .header-actions .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 3.5rem 0 3rem; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .row-3 { grid-template-columns: 1fr 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .topbar-contacts span:not(:first-child) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero-stats { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .page-hero-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .row-3, .row-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .domain-search { flex-direction: column; border-radius: var(--radius-lg); padding: .75rem; }
  .domain-search button { border-radius: var(--radius-sm); padding: .7rem; }
}

/* ---- 27. HERO HOME GRID (two-column) ---- */
@media (max-width: 900px) {
  .hero > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .hero > .container > div > div:last-child { display: none; }
}

/* ---- 28. PRODUCT DETAIL GRID ---- */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr !important; }
}

/* ---- 29. ABOUT / CONTACT two-col grids ---- */
@media (max-width: 860px) {
  section [style*="grid-template-columns:1fr 1fr"],
  section [style*="grid-template-columns: 1fr 1fr"],
  section [style*="grid-template-columns:1fr 380px"],
  section [style*="grid-template-columns:1fr 340px"],
  section [style*="grid-template-columns:1fr 360px"],
  section [style*="grid-template-columns:1fr 300px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---- 30. MOBILE NAV (display fix) ---- */
@media (max-width: 768px) {
  .mobile-nav { display: block; }
}

/* ---- 31. PRINT ---- */
@media print {
  .topbar, .site-header, .site-footer, .cta-band { display: none !important; }
  .page-hero { background: #fff !important; color: var(--navy-2) !important; }
  .page-hero-title, .page-hero-sub { color: var(--navy-2) !important; }
}
