:root{
  --bg:#f7f7f7;
  --metal-1:linear-gradient(180deg,#f4f6f7,#e9ecef);
  --accent:#c7c9cc;
  --text:#222;
  --muted:#6b6f74;
  --brand:#2b3a40;
  --shadow: 0 6px 18px rgba(13,18,22,0.08);
  --glass: rgba(255,255,255,0.6);
  --accent-hover: #c40000;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, "Open Sans", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

.page-content{
  min-height: 90vh;
}
.site-main {
  max-width: var(--max-width);
  margin: 22px auto; /* center horizontally with vertical spacing */
  padding-top: 2px;  /* horizontal padding for small screen breathing room */
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 4px;
  min-height: 60vh;  /* optional, to keep footer pushed down */
  background: white; /* optional, if you want white background */
  box-shadow: var(--shadow); /* reuse your shadow var for subtle elevation */
}

.site-header {
  background: #0d0d0d;
  width: 100%;
}

.header-inner {
  display: flex;
  flex-direction: column;
  padding: 0;
  max-width: 100%;
  margin: 0;
  border-top: 1px solid #aaa;
}

/* Logo + Navigation */
.header-toptop {
  display: flex;
  height: 128px;
  background-image: repeating-linear-gradient(
    -45deg,
    #f0f0f0,
    #f0f0f0 4px,
    #e0e0e0 4px,
    #e0e0e0 6px
  );
}

.header-top {
  display: flex;
  justify-content: end;
  align-items: center;
 background: linear-gradient(to bottom, #d8d8d8, #ffffff 50%, #b8b8b8);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #aaa;
  padding: 0 50px;
  height: 46px;
  width: 100%;
}

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

.brand img { 
  height: 96px; 
  width: auto; 
  display: block; 
  margin-left: 30px;
  object-fit: contain; 
}

/* Phone + Login */
.header-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
   background: linear-gradient(to bottom, #1a1a1a , #545454 );
  padding: 8px 50px;
  height: 32px;
  border-bottom: 1px solid #222;
  width: 100%;
}

.phone-support {
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
}

.phone-support a {
  color: #fff;
  margin-left: 6px;
  text-decoration: none;
}

.phone-support a:hover {
  text-decoration: underline;
}

.header-login a {
  color: #d4af37;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 3px;
  background: #1a1a1a;
  border: 1px solid #333;
  transition: all 0.2s ease;
  display: inline-block;
}

.header-login a:hover {
  background: #252525;
  border-color: #444;
}
/*silver nav*/
.main-nav {
  display: flex;
  gap: 0;
  margin: 0;
}

.nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.nav-item {
  position: relative;
  margin: 0;
}

.nav-item:first-child{
  border-left: 1px solid #aaa;
}

.nav-item > a {
  display: block;
  padding: 14px 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333 !important;
  border-right: 1px solid #aaa;
  border-left: 1px solid #fff;
  position: relative;

 background: linear-gradient(to bottom, #d8d8d8, #ffffff 50%, #b8b8b8) !important;
  transition: all 0.2s ease;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.nav-item > a:hover,
.nav-item > a:focus {
  background: linear-gradient(to bottom, #e0e0e0, #ffffff 50%, #c0c0c0) !important;
  color: #000 !important;
  outline: none;
}

/*
.nav-item > a:hover::before,
.nav-item > a:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c03131;
  z-index: 10;
}
*/

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2a2a2a;
  border: 1px solid #444;
  border-bottom: 1px solid #444; 
/*  border-bottom: 1px solid #c03131; */
  min-width: 220px;
  padding: 0;
  z-index: 100;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.dropdown-menu li {
  list-style: none;
  position: relative;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
/*  border-bottom: 1px solid #333; */
  color: #ddd !important;
  font-size: 13px;
  background: #2a2a2a !important;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  background: #353535 !important;
  color: #fff !important;
}

.dropdown-menu li a:hover::before,
.dropdown-menu li a:focus::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #c03131;
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 6px;
}


.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-nav.open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.main-nav.open .hamburger span:nth-child(2) {
  opacity: 0;
}

.main-nav.open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


.hero {
  position: relative;
  max-width: 1100px;
  margin: 34px auto;
  padding: 60px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--brand);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 360px; /* Ensure some height so bg image is visible */
}

.hero-inner {
  max-width: 380px;
  background: rgba(255, 255, 255, 0.85);
  padding: 24px 18px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.hero-content h1 { 
  margin:0 0 8px 0; 
  font-size:24px; 
  font-weight:700; 
  color:var(--brand); 
}

.tagline { 
  font-weight:700; 
  font-size:18px; 
  margin:8px 0 4px 0; 
  color:var(--brand); 
}

.support-note { 
  font-size:14px; 
  color:var(--muted); 
  margin:0 0 12px 0; 
}

.domain-cta { 
  display:flex; 
  gap:8px; 
  margin:16px 0; 
}

.domain-cta input { 
  flex:1; 
  padding:10px; 
  border-radius:4px; 
  border:1px solid #cfcfcf; 
  background:white; 
  font-size:1rem; 
}

.domain-cta button { 
  padding:10px 12px; 
  border-radius:4px; 
  border:none; 
  background:var(--brand); 
  color:white; 
  font-weight:600; 
  cursor:pointer; 
}

.hero-features {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0 0;
  list-style: none;
}

.hero-features li {
  background: linear-gradient(145deg, #d1d5db, #a3a8af);
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 700;
  color: #5a3e00;
  box-shadow: inset 0 1px 2px rgba(255 255 255 / 0.7),
    inset 0 -1px 2px rgba(0 0 0 / 0.15);
  text-shadow: 0 1px 0 rgba(255 255 255 / 0.8);
  user-select: none;
  cursor: default;
  transition: background 0.25s ease;
}

.hero-features li:hover { 
  background: linear-gradient(145deg,#e0e3e7,#b0b5bb); 
  color:#1a1a1a; 
}


.plans {
  max-width: 1100px;
  margin: 34px auto;
  padding: 10px 18px;
  position: relative;
}

.plans::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) rotate(5deg);
  pointer-events: none;
  z-index: 0;
}

.plans-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-image: repeating-linear-gradient(
    45deg,
    #f0f0f0,
    #f0f0f0 5px,
    #e0e0e0 5px,
    #e0e0e0 6px
  );
  border-radius: 8px;
  padding: 14px;
}

.plan-card {
  flex: 1 1 0;
  max-width: calc((100% - 20px) / 3);
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e2e4e6;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.plan-card h3 { 
  margin:0 0 8px 0; 
}

.plan-card .price { 
  font-weight:700; 
  margin:10px 0; 
}

.plan-card .specs {
  display: block;
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0 12px;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  transform-origin: top;
}

.plan-card .specs.show {
  max-height: 500px;
  opacity: 1;
  margin: 12px 0;
  padding: 12px;
  border-color: #e9ecef;
  transform: translateY(0);
}

.plan-card {
  flex: 1 1 0;
  max-width: calc((100% - 20px) / 3);
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e2e4e6;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}


.btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #6c757d;
}

.btn-secondary:hover {
  background: #5a6268;
}

.footer { 
  background:#111; 
  padding:20px 0; 
  color:#aaa; 
  font-size:14px; 
}

.footer-inner { 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 18px; 
  max-width:var(--max-width); 
  margin:0 auto; 
}


@media (max-width: 880px) {
  .hamburger {
    display: flex;
  }

  .header-top {
    height: auto;
    padding: 10px 20px;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: #d0d0d0;
    border-bottom: 1px solid #999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 200;
  }

  .main-nav.open .nav-list {
    display: flex;
  }

  .nav-item > a {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #aaa;
    border-top: 1px solid #fff;
  }

  .dropdown-menu {
    position: static;
    border: none;
    border-top: 1px solid #555;
    box-shadow: none;
    background: #2a2a2a;
    display: none;
  }

  .nav-item.dropdown-open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding-left: 32px;
  }

  .header-bottom {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
    gap: 8px;
  }

  .hero-inner { 
    max-width:100%; 
  }

  .plans-grid { 
    gap:14px; 
  }

  .plan-card { 
    max-width:100%; 
  }
}
