/* 365hosting.org — basic bright theme (light gray + red accents) */

:root{
  --bg: #f3f4f6;           /* light gray */
  --surface: #ffffff;      /* white */
  --text: #111827;         /* near-black */
  --muted: #6b7280;        /* gray */
  --border: #e5e7eb;       /* light border */
  --accent: #e11d2e;       /* red accent */
  --accent-2: #b81222;     /* darker red */
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.container{
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  padding: .6rem .8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus{ left: 8px; }

.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(225, 29, 46, 0.22);
}
.btn:hover{ background: var(--accent-2); text-decoration: none; }
.btn:focus{ outline: 3px solid rgba(225, 29, 46, 0.28); outline-offset: 2px; }

.btn--ghost{
  background: transparent;
  border-color: rgba(225, 29, 46, 0.35);
  color: var(--accent);
  box-shadow: none;
}
.btn--ghost:hover{
  background: rgba(225, 29, 46, 0.08);
  color: var(--accent-2);
}

.btn--small{ padding: .65rem .9rem; font-weight: 700; }
.btn--wide{ width: 100%; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 244, 246, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(225, 29, 46, 0.25);
}
.brand-name{ font-weight: 800; }
.brand-tagline{ font-size: .92rem; color: var(--muted); }

.site-nav{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-nav a{
  padding: .55rem .7rem;
  border-radius: 999px;
}
.site-nav a:hover{
  background: rgba(17,24,39,0.04);
  text-decoration: none;
}
.site-nav .btn{ text-decoration: none; }

.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: .6rem .7rem;
  border-radius: 12px;
}
.nav-toggle-bars{
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--text);
}
.nav-toggle-bars::before{ top: -7px; }
.nav-toggle-bars::after{ top: 7px; }

.notice{
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.notice-inner{
  padding: .75rem 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero{
  padding: 3.2rem 0 2.2rem;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 2rem;
  align-items: start;
}
.hero h1{
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}
.hero p{
  margin: 0 0 1.3rem;
  color: rgba(17,24,39,0.85);
  font-size: 1.06rem;
}
.hero-actions{ display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-meta{
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.meta-chip{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem .65rem;
  font-size: .92rem;
}
.dot{
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: .35rem;
  vertical-align: middle;
}

.hero-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.2rem 1rem;
}
.hero-card-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}
.kicker{
  color: var(--muted);
  font-size: .9rem;
}
.hero-card-title{
  font-weight: 800;
  font-size: 1.1rem;
}
.pill{
  display: inline-flex;
  align-items: center;
  padding: .4rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 46, 0.25);
  color: var(--accent);
  font-weight: 700;
  background: rgba(225, 29, 46, 0.06);
}

.section{
  padding: 2.4rem 0;
}
.section--alt{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{
  margin-bottom: 1.25rem;
}
.section-head h2{
  margin: 0 0 .4rem;
  font-size: 1.6rem;
}
.section-head p{ margin: 0; }

.grid{
  display: grid;
  gap: 1rem;
}
.cards{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
}
.card--accent{
  border-color: rgba(225,29,46,0.28);
  box-shadow: 0 10px 25px rgba(225, 29, 46, 0.12);
}
.card-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(225,29,46,0.10);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: .85rem;
}
.card h3{ margin: 0 0 .45rem; font-size: 1.1rem; }
.card p{ margin: 0 0 .85rem; color: rgba(17,24,39,0.85); }
.card-list{
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}
.card-list li{ margin: .25rem 0; }

.pricing{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.price-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card--featured{
  border-color: rgba(225,29,46,0.38);
  transform: translateY(-6px);
}
.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .85rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(225,29,46,0.10);
  border: 1px solid rgba(225,29,46,0.25);
  border-radius: 999px;
  padding: .35rem .6rem;
}
.price-top h3{ margin: 0 0 .2rem; }
.price{ display: flex; align-items: baseline; gap: .25rem; margin: .2rem 0 .5rem; }
.price-amount{ font-weight: 900; font-size: 1.8rem; }
.price-term{ color: var(--muted); }

.checklist{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  color: rgba(17,24,39,0.86);
}
.checklist li{
  padding-left: 1.45rem;
  position: relative;
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.callout{
  margin-top: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(17,24,39,0.06);
}
.callout-inner{
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.callout h3{ margin: 0 0 .15rem; }
.callout p{ margin: 0; }

.timeline{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}
.timeline li{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 18px rgba(17,24,39,0.06);
  position: relative;
}
.step-title{
  font-weight: 900;
  margin-bottom: .25rem;
}
.step-desc{ color: rgba(17,24,39,0.82); }

.faq details{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  box-shadow: 0 8px 18px rgba(17,24,39,0.05);
  margin-bottom: .75rem;
}
.faq summary{
  cursor: pointer;
  font-weight: 800;
}
.faq p{ margin: .6rem 0 0; color: rgba(17,24,39,0.82); }

.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: start;
}
.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.contact-form label{
  display: grid;
  gap: .35rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
input, select, textarea{
  width: 100%;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
}
input:focus, select:focus, textarea:focus{
  outline: 3px solid rgba(225,29,46,0.22);
  border-color: rgba(225,29,46,0.35);
}
.contact-aside{
  display: grid;
  gap: 1rem;
}
.aside-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: 0 8px 18px rgba(17,24,39,0.05);
}
.aside-card h3{ margin: 0 0 .6rem; }
.aside-list{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.aside-list li{ margin: .25rem 0; }

.text-link{
  color: var(--accent);
  font-weight: 800;
}
.text-link:hover{ color: var(--accent-2); text-decoration: underline; }

.site-footer{
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand{ font-weight: 900; }
.footer-links{
  display: flex;
  gap: 1rem;
}
.footer-links a:hover{ color: var(--accent-2); }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .price-card--featured{ transform: none; }
}
@media (max-width: 640px){
  .site-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .site-nav.is-open{
    display: grid;
    position: absolute;
    top: 64px;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: .65rem;
    gap: .35rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open a{ padding: .65rem .8rem; }
  .cards{ grid-template-columns: 1fr; }
}
