/* ===== Base ===== */
:root {
  --brand-red: #ee0000;
  --brand-red-dark: #cd040b;
  --brand-black: #000000;
  --brand-cream: #f4ede4;
  --brand-yellow: #f6ef1d;
  --brand-gray: #6f6f6f;
  --brand-border: #d8d8d8;
  --max-width: 1280px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid currentColor;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-white {
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-pill-outline {
  border-color: #000;
  color: #000;
  background: #fff;
}
.btn-pill-outline:hover { background: #000; color: #fff; }

.btn-pill-white {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.btn-pill-white:hover { background: #eee; }

.btn-pill-red {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.btn-pill-red:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }

.section-title {
  font-size: 34px;
  margin-bottom: 32px;
}
.section-title.center { text-align: center; }

/* ===== Utility bar ===== */
.utility-bar {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  font-size: 13px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.utility-left a,
.utility-right a {
  margin-right: 18px;
  color: #444;
}
.utility-right a:last-child { margin-right: 0; }
.utility-left a.active {
  color: var(--brand-red);
  font-weight: 700;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  color: #444;
}

/* ===== Main header ===== */
.main-header {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a.active {
  color: var(--brand-red);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-red);
  white-space: nowrap;
}
.header-phone:hover {
  color: var(--brand-red-dark);
}

/* ===== Promo banner ===== */
.promo-banner {
  background: var(--brand-yellow);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
}
.promo-banner a {
  text-decoration: underline;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Big search bar ===== */
.search-bar-section {
  background: #000;
  padding: 22px 0;
}
.big-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 4px 6px 4px 22px;
  max-width: 640px;
  margin: 0 auto;
}
.big-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 10px 0;
}
.big-search button {
  background: var(--brand-black);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== Solutions section ===== */
.solutions-section {
  background: var(--brand-cream);
  padding: 64px 0;
}
.tabs {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  gap: 2px;
  margin-bottom: 40px;
}
.tab {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
}
.tab.active {
  background: var(--brand-red);
  color: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.solutions-left h3 {
  color: var(--brand-red);
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.solutions-left > p {
  color: #333;
  font-size: 16px;
  margin-bottom: 32px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.solution-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 30px;
}
.solution-card .tag {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.solution-card h4 {
  font-size: 23px;
  margin-bottom: 12px;
}
.solution-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.45;
}
.link-arrow {
  font-weight: 700;
  font-size: 15px;
  color: #000;
}
.link-arrow span { margin-left: 2px; }

.solutions-right img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== Keep your business connected ===== */
.connected-section {
  background: #fff;
  padding: 64px 0;
}
.connected-section .section-title {
  text-align: center;
}

.biz-plan-banner {
  position: relative;
  margin-bottom: 64px;
}
.biz-plan-banner img {
  width: 57%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.biz-plan-card {
  position: absolute;
  top: 50%;
  left: 45%;
  right: 0;
  transform: translateY(-50%);
  background: var(--brand-red);
  color: #fff;
  padding: 44px 48px;
  border-radius: 6px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}
.biz-plan-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
}
.biz-plan-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--brand-cream);
  padding: 28px 28px 22px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 176px;
}
.category-card .label {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1.2;
}
.category-card .arrow {
  align-self: flex-end;
}

/* ===== Success stories ===== */
.stories-section {
  background: var(--brand-cream);
  padding: 64px 0;
}
.story-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.story-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.story-overlay {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 64px;
  max-width: 500px;
}
.story-overlay h3 {
  font-size: 34px;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.story-overlay p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 26px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ===== Stats ===== */
.stats-section {
  background: #fff;
  padding: 56px 0 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat h4 {
  color: var(--brand-red);
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.stat p {
  font-size: 13px;
  color: var(--brand-gray);
}

/* ===== Let's connect ===== */
.connect-section {
  background: #000;
  color: #fff;
  padding: 56px 0 32px;
}
.connect-section h2 {
  font-size: 30px;
  margin-bottom: 36px;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.connect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.connect-item svg { flex-shrink: 0; margin-top: 2px; }
.connect-label {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 4px;
}
.connect-item a.connect-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  text-decoration: none;
}
.connect-item a.connect-value:hover {
  text-decoration: underline;
}
.connect-item a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
.connect-cta {
  font-size: 20px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block;
  margin-top: 4px;
}

.footnotes {
  border-top: 1px solid #333;
  padding-top: 24px;
  font-size: 11px;
  line-height: 1.6;
  color: #999;
}

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  padding-top: 56px;
  border-top: 1px solid var(--brand-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
}
.footer-col h5 {
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-col h5.sub {
  margin-top: 20px;
}
.footer-col a {
  color: #333;
  margin-bottom: 11px;
}
.footer-col a:hover { text-decoration: underline; }

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons svg {
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--brand-border);
  padding: 36px 0 40px;
  margin-top: 40px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.footer-bottom-logo {
  height: 44px;
  flex-shrink: 0;
}
.footer-bottom-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
}
.footer-bottom-links:last-child { margin-bottom: 0; }
.footer-bottom-links a:hover { text-decoration: underline; }
.privacy-choices {
  display: flex;
  align-items: center;
  gap: 8px;
}
.copyright {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
}

.feedback-tab {
  position: fixed;
  right: 0;
  top: 60%;
  background: #f0f0f0;
  border: 1px solid var(--brand-border);
  padding: 10px 6px;
  font-size: 12px;
  writing-mode: vertical-rl;
  border-radius: 4px 0 0 4px;
  color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-right { order: -1; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .biz-plan-banner img { width: 50%; }
  .biz-plan-card { left: 40%; padding: 32px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero h1 { font-size: 32px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .biz-plan-banner { margin-bottom: 32px; }
  .biz-plan-banner img { width: 100%; height: 220px; border-radius: 6px 6px 0 0; }
  .biz-plan-card {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 28px 24px;
    border-radius: 0 0 6px 6px;
    box-shadow: none;
  }
  .utility-right a:not(.icon-link) { display: none; }
}

/* ===== Static content pages (About, Privacy Policy, Terms) ===== */
.page-hero {
  background: var(--brand-cream);
  padding: 64px 0 48px;
}
.page-hero h1 {
  font-size: 44px;
}
.page-hero p {
  font-size: 16px;
  color: #444;
  margin-top: 12px;
}
.page-content {
  background: #fff;
  padding: 56px 0 88px;
}
.page-content-inner {
  max-width: 760px;
}
.page-content h2 {
  font-size: 24px;
  color: var(--brand-red);
  margin: 40px 0 14px;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.page-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.page-content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 8px;
}
.page-content .updated {
  font-size: 13.5px;
  color: var(--brand-gray);
  margin-bottom: 32px;
}
