* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #172033;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  max-width: 2400px !important;
}

.nav-logo {
  height: 75px;
  width: 75px;
}

.navbar h2 {
  color: #2563eb;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #172033;
  font-weight: bold;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.hero-content {
  max-width: 760px;
}

.tagline {
  color: #2563eb;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 20px;
  color: #4b5563;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 80px 8%;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.section > p {
  max-width: 800px;
  margin: 0 auto 18px;
  color: #4b5563;
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.card p {
  color: #4b5563;
}

.price {
  font-size: 28px;
  color: #2563eb !important;
  font-weight: bold;
  margin-bottom: 12px;
}

.featured {
  border: 2px solid #2563eb;
}

.dark {
  background: #172033;
  color: white;
}

.dark p {
  color: #d1d5db;
}

.contact {
  background: white;
}

.site-footer {
  background:
    radial-gradient(
      circle at top right,
      rgba(194, 65, 12, 0.16),
      transparent 34%
    ),
    #101827;

  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 65px;

  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 6% 58px;
}

.footer-brand-block {
  max-width: 390px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 20px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  padding: 3px;
  border-radius: 8px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand span {
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-brand small {
  margin-top: 2px;

  color: #94a3b8;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-block > p {
  margin-bottom: 25px;

  color: #cbd5e1;
  line-height: 1.75;
}

.footer-cta {
  display: inline-flex;

  padding: 12px 18px;

  background: var(--primary);
  color: white;

  border-radius: 9px;

  font-size: 0.86rem;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.footer-cta:hover {
  background: #9f3208;
  transform: translateY(-2px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 7px;

  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #aeb9c8;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-column a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 6%;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #7f8ca0;
  font-size: 0.76rem;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: #9aa7b8;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;

    padding: 60px 20px 42px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    padding: 22px 20px;
  }
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .navbar a {
    margin: 0 8px;
  }

  .hero h1 {
    font-size: 38px;
  }

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

.hero{
    min-height:90vh;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;

    padding:80px 8%;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:4rem;
    line-height:1.1;
    margin:20px 0;
}

.hero-text p{
    font-size:1.15rem;
    color:#555;
    max-width:600px;
}

.tagline{
    color:#2563eb;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn,
.btn-secondary{

    padding:15px 30px;
    border-radius:12px;

    text-decoration:none;
    font-weight:600;

    transition:.25s;
}

.btn{
    background:#2563eb;
    color:white;
}

.btn:hover{
    background:#1d4ed8;
}

.btn-secondary{

    border:2px solid #2563eb;
    color:#2563eb;
}

.btn-secondary:hover{

    background:#2563eb;
    color:white;
}

.hero-image{

    flex:1;

    display:flex;
    justify-content:center;
}

.blob{

    width:450px;
    height:520px;

    background:linear-gradient(135deg,#60a5fa,#2563eb);

    border-radius:
        52% 48% 38% 62% /
        52% 35% 65% 48%;

    overflow:hidden;

    box-shadow:
        0 25px 60px rgba(37,99,235,.35);

    animation:blob 10s ease-in-out infinite;
}

.blob img{

    width:100%;
    height:100%;

    object-fit:cover;
}

@keyframes blob{

    0%{
        border-radius:
        52% 48% 38% 62% /
        52% 35% 65% 48%;
    }

    50%{
        border-radius:
        61% 39% 56% 44% /
        39% 58% 42% 61%;
    }

    100%{
        border-radius:
        52% 48% 38% 62% /
        52% 35% 65% 48%;
    }

}

/* ===========================
   Tablets
=========================== */
@media (max-width: 768px) {

    .hero{
        flex-direction: column-reverse;
        text-align:center;
        gap:50px;
        padding:70px 8%;
    }

    .hero-text h1{
        font-size:2.8rem;
    }

    .hero-text p{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .blob{
        width:320px;
        height:390px;
    }

}

/* ===========================
   Large Phones
=========================== */
@media (max-width:576px){

    .hero{
        padding:55px 7%;
    }

    .hero-text h1{
        font-size:2.2rem;
    }

    .hero-text p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    .btn,
    .btn-secondary{

        width:100%;
        max-width:320px;
    }

    .blob{
        width:250px;
        height:300px;
    }

}

/* ===========================
   Small Phones
=========================== */
@media (max-width:375px){

    .hero{
        padding:45px 20px;
        gap:35px;
    }

    .tagline{
        font-size:.75rem;
    }

    .hero-text h1{
        font-size:1.8rem;
        line-height:1.15;
    }

    .hero-text p{
        font-size:.95rem;
    }

    .blob{
        width:210px;
        height:255px;
    }

    .btn,
    .btn-secondary{
        font-size:.95rem;
        padding:14px 20px;
    }

}

/* =====================================
   CHARCOAL + BURNT ORANGE THEME
===================================== */

:root{
    --primary:#c2410c;
    --primary-dark:#9a3412;
    --primary-light:#fff7ed;

    --dark:#1f2937;
    --text:#374151;
    --light:#f8fafc;
}

body{
    background:var(--light);
    color:var(--dark);
}

.navbar{
    background:white;
}

.navbar h2{
    color:var(--primary);
}

.navbar a{
    color:var(--dark);
    transition:.25s;
}

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

.hero{
    background:linear-gradient(135deg,var(--primary-light),#ffffff);
}

.tagline{
    color:var(--primary);
}

.hero-text p{
    color:var(--text);
}

.btn{
    background:var(--primary);
    color:white;
}

.btn:hover{
    background:var(--primary-dark);
}

.btn-secondary{
    color:var(--primary);
    border:2px solid var(--primary);
}

.btn-secondary:hover{
    background:var(--primary);
    color:white;
}

.price{
    color:var(--primary) !important;
}

.featured{
    border:2px solid var(--primary);
}

.blob{
    background:linear-gradient(135deg,#fdba74,var(--primary));
    box-shadow:0 25px 60px rgba(194,65,12,.35);
}

.card{
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.dark{
    background:#111827;
}

.dark p{
    color:#d1d5db;
}

::selection{
    background:var(--primary);
    color:white;
}

/* ===========================
   CONTACT SECTION
=========================== */

.contact-section {
  background: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.contact-info h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.contact-info > p {
  color: #4b5563;
  font-size: 1.1rem;
  max-width: 520px;
}

.contact-points {
  margin-top: 28px;
}

.contact-points p {
  margin-bottom: 12px;
  color: #374151;
  font-weight: 600;
}

.contact-form {
  background: #f8fafc;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #172033;
  font: inherit;
  cursor: pointer;
}

.contact-form select:focus {
  outline: none;
  border-color: #c2410c;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

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

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194,65,12,.12);
}

.form-group textarea {
  resize: vertical;
}

.form-btn {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  grid-column: span 2;
}

.form-note {
  grid-column: span 2;
  font-size: .9rem;
  color: #6b7280;
  text-align: center;
}

/* Tablet */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info > p {
    margin: auto;
  }
}

/* Phones */
@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .form-group.full,
  .form-btn,
  .form-note {
    grid-column: span 1;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

.hidden-field {
  display: none;
}

.message-wrapper {
  grid-column: span 2;
  width: 100%;
  margin-bottom: 20px;
}

.message-wrapper {
    margin-bottom: 2rem;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid;
}

/* Success */
.message.success {
    background: #edf8f1;
    border-color: #8fd6a5;
    color: #1d5d36;
}

/* Error */
.message.error {
    background: #fff3f2;
    border-color: #f5b5ac;
    color: #b93828;
}

/* Warning */
.message.warning {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fdba74;
}

/* Info */
.message.info {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #93c5fd;
}

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.announcement-bar {
    background: #172033;
    color: white;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    text-align: center;
}

.announcement-bar strong {
    color: #f7b267;
}

.announcement-bar button {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: .8;
}

.announcement-bar button:hover {
    opacity: 1;
}

/* ===========================
   WHAT YOU GET
=========================== */

.what-you-get {
  background: #ffffff;
}

.what-you-get-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: #c2410c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.what-you-get-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.what-you-get-header p {
  color: #4b5563;
  font-size: 1.05rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fdfaf7;
  border: 1px solid #f1e7dc;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.checkmark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #c2410c;
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: bold;
}

.benefit-item h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: #172033;
}

.benefit-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .what-you-get-header h2 {
    font-size: 2rem;
  }

  .benefit-item {
    padding: 20px;
  }
}

/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works {
  padding: 90px 8%;
  background: #fdfaf7;
}

.how-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.how-header .section-label {
  display: inline-block;
  color: #c2410c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.how-header h2 {
  font-size: 2.5rem;
  color: #172033;
  margin-bottom: 14px;
}

.how-header p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Steps container */
.steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 29px;
  width: 2px;
  background: #e8c7b3;
}

/* Individual step */
.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  margin-bottom: 24px;
}

.step:last-child {
  margin-bottom: 0;
}

/* Number circle */
.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #c2410c;
  color: white;

  border-radius: 50%;

  font-size: 1.25rem;
  font-weight: 700;

  position: relative;
  z-index: 2;

  box-shadow: 0 5px 15px rgba(194, 65, 12, 0.2);
}

/* Step card */
.step-content {
  flex: 1;
  background: white;
  padding: 24px 28px;
  border-radius: 14px;
  border: 1px solid #f1e7dc;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.step-content:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.step-content h3 {
  color: #172033;
  font-size: 1.2rem;
  margin-bottom: 7px;
}

.step-content p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Bottom CTA */
.how-cta {
  text-align: center;
  margin-top: 55px;
}

.how-cta p {
  color: #172033;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

  .how-it-works {
    padding: 70px 7%;
  }

  .how-header {
    margin-bottom: 45px;
  }

  .how-header h2 {
    font-size: 2rem;
  }

  .steps::before {
    left: 23px;
  }

  .step {
    gap: 16px;
    margin-bottom: 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1rem;
  }

  .step-content {
    padding: 20px;
  }

  .step-content:hover {
    transform: none;
  }
}


/* ===========================
   SMALL PHONES
=========================== */

@media (max-width: 400px) {

  .how-it-works {
    padding: 60px 20px;
  }

  .how-header h2 {
    font-size: 1.8rem;
  }

  .how-header p {
    font-size: 0.95rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    gap: 12px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.9rem;
  }

  .step-content {
    padding: 17px;
  }

  .step-content h3 {
    font-size: 1.05rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
}

/* =====================================
   STATIC PREMIUM WEBSITE PREVIEW
===================================== */

.premium-preview {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;

  padding: 110px 8%;
  background:
    radial-gradient(circle at 80% 45%, rgba(194, 65, 12, 0.12), transparent 28%),
    #0f1724;

  color: white;
}

.premium-preview-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.premium-preview-copy .section-label {
  color: #fb923c;
}

.premium-preview-copy h2 {
  margin: 14px 0 22px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.premium-preview-copy > p {
  max-width: 560px;
  margin-bottom: 30px;

  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.75;
}

.preview-points {
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
}

.preview-points div {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #e2e8f0;
  font-weight: 700;
}

.preview-points span,
.preview-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;
  background: #c2410c;
  color: white;
  font-size: 0.85rem;
}

.premium-preview-visual {
  position: relative;
  min-width: 0;
  padding: 40px 0;
}

.preview-glow {
  position: absolute;
  inset: 12% 8%;

  border-radius: 50%;
  background: rgba(194, 65, 12, 0.28);
  filter: blur(80px);
}

.preview-browser {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 10;

  margin-left: auto;

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: white;

  transform: rotate(-2deg);

  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.025);
}

.preview-browser-bar {
  height: 48px;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 0 18px;
  background: #edf0f4;
  border-bottom: 1px solid #d9dee5;
}

.preview-dots {
  display: flex;
  gap: 7px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-dots span:first-child {
  background: #fb7185;
}

.preview-dots span:nth-child(2) {
  background: #facc15;
}

.preview-dots span:nth-child(3) {
  background: #4ade80;
}

.preview-address {
  flex: 1;
  max-width: 350px;

  margin: 0 auto;
  padding: 6px 14px;

  border-radius: 8px;
  background: white;
  color: #64748b;

  text-align: center;
  font-size: 0.72rem;
}

.preview-page {
  height: calc(100% - 48px);
  background: #fffaf6;
  color: #172033;
}

.preview-nav {
  height: 14%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 7%;
  background: white;
  border-bottom: 1px solid #f0e4db;
}

.preview-nav strong {
  font-size: clamp(0.55rem, 1vw, 0.9rem);
  letter-spacing: 0.08em;
}

.preview-nav-links {
  display: flex;
  gap: 12px;
}

.preview-nav-links span {
  width: 38px;
  height: 5px;

  border-radius: 999px;
  background: #d4dae2;
}

.preview-hero {
  height: 86%;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 8%;

  padding: 8%;
}

.preview-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.preview-accent {
  width: 34%;
  height: 8px;

  margin-bottom: 16px;
  border-radius: 999px;
  background: #c2410c;
}

.preview-line {
  display: block;
  height: 15px;

  margin-bottom: 10px;
  border-radius: 999px;
  background: #172033;
}

.preview-line-lg {
  width: 92%;
}

.preview-line-md {
  width: 72%;
  margin-bottom: 22px;
}

.preview-line-sm,
.preview-line-xs {
  height: 7px;
  background: #aab2bf;
}

.preview-line-sm {
  width: 88%;
}

.preview-line-xs {
  width: 65%;
  margin-bottom: 23px;
}

.preview-button {
  width: 38%;
  height: 30px;

  border-radius: 8px;
  background: #c2410c;
}

.preview-image {
  height: 85%;

  border-radius:
    52% 48% 38% 62% /
    52% 35% 65% 48%;

  background: linear-gradient(145deg, #fdba74, #c2410c);

  box-shadow: 0 24px 50px rgba(194, 65, 12, 0.28);
}

.preview-card {
  position: absolute;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px 17px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.94);
  color: #172033;

  font-size: 0.88rem;
  font-weight: 800;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.preview-card-one {
  top: 12%;
  right: -2%;
}

.preview-card-two {
  bottom: 9%;
  left: -4%;
}

/* Tablet */
@media (max-width: 950px) {
  .premium-preview {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 90px 7%;
    text-align: center;
  }

  .premium-preview-copy {
    margin: 0 auto;
  }

  .premium-preview-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .preview-points {
    justify-content: center;
  }

  .preview-points div {
    justify-content: center;
  }

  .preview-browser {
    margin: 0 auto;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .premium-preview {
    gap: 34px;
    padding: 70px 20px;
  }

  .premium-preview-copy h2 {
    font-size: 2.35rem;
  }

  .premium-preview-copy > p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .premium-preview-visual {
    width: 100%;
    padding: 15px 0 35px;
  }

  .preview-browser {
    width: 100%;
    border-radius: 14px;
  }

  .preview-browser-bar {
    height: 34px;
    padding: 0 10px;
    gap: 8px;
  }

  .preview-page {
    height: calc(100% - 34px);
  }

  .preview-dots {
    gap: 5px;
  }

  .preview-dots span {
    width: 7px;
    height: 7px;
  }

  .preview-address {
    max-width: 70%;
    padding: 3px 7px;
    font-size: 0.52rem;
  }

  .preview-nav-links {
    gap: 6px;
  }

  .preview-nav-links span {
    width: 18px;
    height: 4px;
  }

  .preview-card {
    padding: 9px 11px;
    font-size: 0.7rem;
  }

  .preview-card span {
    width: 21px;
    height: 21px;
    font-size: 0.7rem;
  }

  .preview-card-one {
    top: 1%;
    right: -2%;
  }

  .preview-card-two {
    bottom: 5%;
    left: -1%;
  }

  .preview-glow {
    display: none;
  }
}

@media (max-width: 390px) {
  .preview-card {
    display: none;
  }
}

/* State selector */
.form-group select {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 42px 14px 16px;

  border: 1px solid #d1d5db;
  border-radius: 12px;

  background-color: #ffffff;
  color: #1f2937;

  font-family: inherit;
  font-size: 1rem;

  appearance: auto;
  -webkit-appearance: menulist;

  opacity: 1;
  visibility: visible;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

@media (max-width: 600px) {
  .form-group select {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
}

/* =====================================
   PORTFOLIO SECTION
===================================== */

.portfolio-section {
  background: #ffffff;
}

.portfolio-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.portfolio-heading h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.portfolio-heading p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

.portfolio-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 65px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;

  background: #fdfaf7;
  border: 1px solid #f0e5dc;
  border-radius: 28px;

  box-shadow: 0 25px 70px rgba(17, 24, 39, 0.08);
}

.portfolio-visual {
  min-width: 0;
}

.portfolio-browser {
  overflow: hidden;
  background: white;
  border: 1px solid #dfe3e8;
  border-radius: 18px;

  box-shadow:
    0 25px 55px rgba(17, 24, 39, 0.17),
    0 0 0 7px rgba(255, 255, 255, 0.55);

  transform: rotate(-1.5deg);
}

.portfolio-browser-bar {
  display: flex;
  align-items: center;
  gap: 18px;

  height: 44px;
  padding: 0 15px;

  background: #edf0f4;
  border-bottom: 1px solid #dfe3e8;
}

.portfolio-dots {
  display: flex;
  gap: 6px;
}

.portfolio-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.portfolio-dots span:first-child {
  background: #fb7185;
}

.portfolio-dots span:nth-child(2) {
  background: #facc15;
}

.portfolio-dots span:nth-child(3) {
  background: #4ade80;
}

.portfolio-address {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  padding: 5px 12px;

  border-radius: 7px;
  background: white;
  color: #64748b;

  font-size: 0.7rem;
  text-align: center;
}

.portfolio-image-link {
  display: block;
  overflow: hidden;
}

.portfolio-image-link img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.portfolio-image-link:hover img {
  transform: scale(1.025);
}

.portfolio-type {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  margin-bottom: 18px;

  color: #172033;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.portfolio-copy > p {
  margin-bottom: 17px;

  color: #4b5563;
  line-height: 1.72;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin: 28px 0 32px;
}

.portfolio-features span {
  padding: 8px 12px;

  border: 1px solid #e6d8ce;
  border-radius: 999px;

  background: white;
  color: #374151;

  font-size: 0.78rem;
  font-weight: 700;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.portfolio-text-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;

  transition: transform 0.25s ease;
}

.portfolio-text-link:hover {
  transform: translateX(4px);
}


/* Tablet */
@media (max-width: 950px) {

  .portfolio-feature {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 38px;
  }

  .portfolio-browser {
    max-width: 760px;
    margin: 0 auto;
    transform: none;
  }

  .portfolio-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .portfolio-features,
  .portfolio-actions {
    justify-content: center;
  }

}


/* Mobile */
@media (max-width: 600px) {

  .portfolio-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .portfolio-heading {
    margin-bottom: 38px;
  }

  .portfolio-heading h2 {
    font-size: 2.25rem;
  }

  .portfolio-feature {
    gap: 34px;
    padding: 18px;
    border-radius: 20px;
  }

  .portfolio-browser {
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  }

  .portfolio-browser-bar {
    height: 34px;
    padding: 0 9px;
    gap: 8px;
  }

  .portfolio-dots {
    gap: 4px;
  }

  .portfolio-dots span {
    width: 7px;
    height: 7px;
  }

  .portfolio-address {
    max-width: 72%;
    padding: 3px 7px;
    font-size: 0.54rem;
  }

  .portfolio-copy {
    padding: 0 6px 10px;
  }

  .portfolio-copy h3 {
    font-size: 2rem;
  }

  .portfolio-actions {
    flex-direction: column;
    gap: 15px;
  }

  .portfolio-actions .btn {
    width: 100%;
  }

}

/* Landing page card illustration */

.landing-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 38px;
}

.css-phone {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.phone-screen {
  width: 190px;
  height: 320px;
  overflow: hidden;

  background: #f4f4f4;
  border: 2px solid #111827;
  border-radius: 32px;

  box-shadow:
    0 18px 35px rgba(15, 23, 42, 0.14),
    inset 0 0 0 5px #ffffff;
}

.phone-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 15px;

  border-bottom: 1px solid #111827;
  background: #f4f4f4;
}

.phone-pill {
  width: 68px;
  height: 22px;

  background: #f4b468;
  border: 1.5px solid #111827;
  border-radius: 999px;
}

.phone-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-menu span {
  display: block;
  width: 28px;
  height: 4px;

  background: #111111;
  border-radius: 999px;
}

.phone-content {
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 14px;

  padding: 22px 18px 18px;
}

.phone-copy {
  min-width: 0;
}

.phone-line {
  display: block;
  height: 11px;
  margin-bottom: 8px;

  background: #b86408;
  border: 1px solid #111827;
  border-radius: 2px;
}

.line-one {
  width: 80px;
}

.line-two {
  width: 61px;
}

.line-three {
  width: 82px;
}

.phone-buttons {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.phone-button {
  width: 40px;
  height: 19px;

  border: 1px solid #111827;
  border-radius: 4px;
}

.phone-button.primary {
  background: #ff9800;
}

.phone-button.secondary {
  background: #ffffff;
}

.phone-portrait {
  width: 49px;
  height: 88px;

  margin-top: 14px;

  background: #c9def1;
  border: 1.5px solid #111827;

  border-radius:
    50% 50% 44% 56% /
    46% 54% 46% 54%;
}

.phone-section {
  width: 122px;
  height: 75px;
  margin: 12px auto 0;

  background: #4078d4;
  border: 1.5px solid #111827;
}

/* Slight movement on hover */
.landing-card:hover .css-phone {
  transform: translateY(-4px);
}

.css-phone {
  transition: transform 0.25s ease;
}

/* Mobile sizing */
@media (max-width: 600px) {
  .phone-screen {
    width: 165px;
    height: 280px;
    border-radius: 27px;
  }

  .phone-topbar {
    height: 37px;
  }

  .phone-pill {
    width: 58px;
    height: 19px;
  }

  .phone-content {
    grid-template-columns: 1fr 52px;
    padding: 18px 15px 14px;
  }

  .phone-portrait {
    width: 43px;
    height: 77px;
  }

  .phone-section {
    width: 105px;
    height: 66px;
  }
}

/* =====================================
   SERVICE CARD ILLUSTRATIONS
===================================== */

.service-build-card {
  display: flex;
  flex-direction: column;
  min-height: 525px;
  overflow: hidden;
}

.service-build-card > p {
  margin-bottom: 0;
}

.service-art {
  margin-top: auto;
  padding-top: 35px;
}


/* =====================================
   BUSINESS WEBSITE ILLUSTRATION
===================================== */

.business-site-art {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin-right: auto;
  margin-left: auto;
}

.desktop-browser {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;

  background: #f8fafc;
  border: 2px solid #111827;
  border-radius: 14px;

  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14);
}

.desktop-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;

  height: 30px;
  padding: 0 10px;

  background: #e5e7eb;
  border-bottom: 1px solid #111827;
}

.desktop-dots {
  display: flex;
  gap: 4px;
}

.desktop-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid #111827;
  border-radius: 50%;
}

.desktop-dots span:first-child {
  background: #fb7185;
}

.desktop-dots span:nth-child(2) {
  background: #facc15;
}

.desktop-dots span:nth-child(3) {
  background: #4ade80;
}

.desktop-address {
  width: 54%;
  height: 12px;
  margin: 0 auto;

  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
}

.desktop-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 35px;
  padding: 0 16px;

  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.desktop-logo {
  width: 45px;
  height: 9px;
  background: #c2410c;
  border-radius: 999px;
}

.desktop-links {
  display: flex;
  gap: 7px;
}

.desktop-links span {
  width: 23px;
  height: 5px;

  background: #94a3b8;
  border-radius: 999px;
}

.desktop-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 15px;

  height: 105px;
  padding: 14px 18px;

  background: #fffaf6;
}

.desktop-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.desktop-line,
.desktop-text-line {
  display: block;
  border-radius: 999px;
}

.desktop-line-small {
  width: 38%;
  height: 5px;
  margin-bottom: 8px;
  background: #c2410c;
}

.desktop-line-large {
  width: 92%;
  height: 11px;
  margin-bottom: 6px;
  background: #172033;
}

.desktop-line-medium {
  width: 72%;
  height: 11px;
  margin-bottom: 11px;
  background: #172033;
}

.desktop-text-line {
  width: 88%;
  height: 5px;
  margin-bottom: 5px;
  background: #9ca3af;
}

.desktop-text-line.short {
  width: 64%;
  margin-bottom: 10px;
}

.desktop-button {
  width: 43px;
  height: 14px;

  background: #c2410c;
  border-radius: 4px;
}

.desktop-image {
  width: 68px;
  height: 76px;

  background: #bfd7ee;
  border: 1px solid #111827;

  border-radius:
    48% 52% 39% 61% /
    46% 39% 61% 54%;
}

.desktop-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;

  padding: 10px 18px 14px;
  background: #ffffff;
}

.desktop-feature-row span {
  height: 35px;

  background: #4078d4;
  border: 1px solid #111827;
  border-radius: 5px;
}

.desktop-stand {
  position: relative;
  width: 90px;
  height: 24px;
  margin: 0 auto;
}

.desktop-stand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 18px;
  height: 18px;

  background: #cbd5e1;
  border-right: 2px solid #111827;
  border-left: 2px solid #111827;

  transform: translateX(-50%);
}

.desktop-stand span {
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 80px;
  height: 7px;

  background: #cbd5e1;
  border: 2px solid #111827;
  border-radius: 999px;

  transform: translateX(-50%);
}


/* =====================================
   HOSTING ILLUSTRATION
===================================== */

.hosting-art {
  position: relative;
  width: 260px;
  height: 280px;
  margin-right: auto;
  margin-left: auto;
}

.hosting-cloud {
  position: absolute;
  top: 12px;
  left: 50%;

  width: 135px;
  height: 48px;

  background: #c9def1;
  border: 2px solid #111827;
  border-radius: 999px;

  transform: translateX(-50%);
}

.hosting-cloud span {
  position: absolute;

  background: #c9def1;
  border: 2px solid #111827;
  border-radius: 50%;
}

.hosting-cloud span:first-child {
  top: -25px;
  left: 20px;
  width: 52px;
  height: 52px;
}

.hosting-cloud span:nth-child(2) {
  top: -35px;
  left: 55px;
  width: 68px;
  height: 68px;
}

.hosting-cloud span:nth-child(3) {
  top: -18px;
  right: 6px;
  width: 44px;
  height: 44px;
}

.server-stack {
  position: absolute;
  top: 82px;
  left: 50%;

  width: 175px;

  transform: translateX(-50%);
}

.server-unit {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 48px;
  margin-bottom: 8px;
  padding: 0 13px;

  background: #f3f4f6;
  border: 2px solid #111827;
  border-radius: 7px;

  box-shadow: 0 5px 0 rgba(15, 23, 42, 0.08);
}

.server-lights {
  display: flex;
  gap: 6px;
}

.server-lights span {
  width: 9px;
  height: 9px;

  background: #4ade80;
  border: 1px solid #111827;
  border-radius: 50%;
}

.server-lights span:last-child {
  background: #facc15;
}

.server-slots {
  display: flex;
  gap: 5px;
}

.server-slots span {
  width: 22px;
  height: 5px;

  background: #64748b;
  border-radius: 999px;
}

.hosting-gear {
  position: absolute;
  right: 7px;
  bottom: 24px;

  width: 68px;
  height: 68px;

  background: #f59e0b;
  border: 2px solid #111827;
  border-radius: 50%;

  box-shadow:
    0 -37px 0 -26px #f59e0b,
    0 37px 0 -26px #f59e0b,
    37px 0 0 -26px #f59e0b,
    -37px 0 0 -26px #f59e0b,
    26px 26px 0 -26px #f59e0b,
    -26px -26px 0 -26px #f59e0b,
    26px -26px 0 -26px #f59e0b,
    -26px 26px 0 -26px #f59e0b;
}

.gear-center {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 24px;
  height: 24px;

  background: #ffffff;
  border: 2px solid #111827;
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.hosting-status {
  position: absolute;
  bottom: 12px;
  left: 8px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 11px;

  background: #ffffff;
  border: 1px solid #111827;
  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 700;

  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.hosting-status span {
  width: 9px;
  height: 9px;

  background: #22c55e;
  border: 1px solid #111827;
  border-radius: 50%;
}


/* =====================================
   SCROLL-IN ANIMATION
===================================== */

.scroll-card {
  opacity: 0;
  transform: translateY(65px);
}

.scroll-card.is-visible {
  animation: serviceCardSlideUp 0.75s
    cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scroll-card:nth-child(2).is-visible {
  animation-delay: 0.12s;
}

.scroll-card:nth-child(3).is-visible {
  animation-delay: 0.24s;
}

@keyframes serviceCardSlideUp {
  from {
    opacity: 0;
    transform: translateY(65px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Optional illustration effects */

.service-build-card:hover .css-phone,
.service-build-card:hover .business-site-art {
  transform: translateY(-5px);
}

.service-build-card:hover .hosting-gear {
  animation: rotateHostingGear 5s linear infinite;
}

.css-phone,
.business-site-art {
  transition: transform 0.3s ease;
}

@keyframes rotateHostingGear {
  to {
    transform: rotate(360deg);
  }
}


/* Mobile */

@media (max-width: 600px) {
  .service-build-card {
    min-height: auto;
  }

  .business-site-art {
    max-width: 285px;
  }

  .hosting-art {
    transform: scale(0.9);
    transform-origin: center top;
    margin-bottom: -15px;
  }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .scroll-card {
    opacity: 1;
    transform: none;
  }

  .scroll-card.is-visible {
    animation: none;
  }

  .service-build-card:hover .hosting-gear {
    animation: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1280px;
  min-height: 92px;
  margin: 0 auto;
  padding: 16px 6%;
}

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

.nav-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-brand > div {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  color: #172033;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-brand-tagline {
  margin-top: 2px;

  color: #64748b;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links > a:not(.nav-cta) {
  position: relative;

  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--primary);
  border-radius: 999px;

  transition: width 0.25s ease;
}

.nav-links > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 20px;

  background: var(--primary);
  color: white !important;

  border-radius: 10px;

  font-size: 0.88rem;
  font-weight: 800;

  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.2);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  background: #9f3208;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;

  width: 42px;
  height: 42px;
  padding: 8px;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.nav-toggle span {
  display: block;

  width: 24px;
  height: 2px;
  margin: 5px auto;

  background: #172033;
  border-radius: 999px;
}

@media (max-width: 850px) {
  .navbar {
    min-height: 76px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-brand img {
    width: 44px;
    height: 44px;
  }

  .nav-brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    width: 100%;
    max-height: 0;
    padding: 0 20px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;

    opacity: 0;
    visibility: hidden;

    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-links.open {
    max-height: 500px;
    padding-top: 14px;
    padding-bottom: 22px;

    border-bottom-color: rgba(15, 23, 42, 0.08);

    opacity: 1;
    visibility: visible;
  }

  .nav-links > a:not(.nav-cta) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links a:hover{
    color: #9f3208;
  }

  .nav-links a:active{
    color: #9f3208;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
  }
}

@media (max-width: 850px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    position: relative;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 76px;
    padding: 10px 22px;
  }

  .nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .nav-brand img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  .nav-brand-name {
    font-size: 1rem;
  }

  .nav-brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 42px;

    width: 42px;
    height: 42px;
    margin: 0;
    padding: 8px;

    position: static;
    transform: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;
    margin: 0;
  }
}

/* Final footer polish */

.footer-brand,
.footer-brand:visited,
.footer-brand:hover,
.footer-brand:active {
  color: inherit;
  text-decoration: none;
}

.footer-brand span {
  color: #ffffff;
  text-decoration: none;
}

.footer-brand small {
  color: #94a3b8;
  text-decoration: none;
}

.footer-column a,
.footer-bottom a,
.footer-cta {
  text-decoration: none;
}

.footer-main {
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column span,
.footer-column a {
  max-width: 180px;
}

.footer-bottom {
  margin-top: 0;
}

/* Slightly tighter desktop layout */
@media (min-width: 901px) {
  .footer-main {
    grid-template-columns: 1.35fr 0.7fr 0.85fr 0.9fr;
    gap: 48px;
  }
}

.page-hero {
  padding: 110px 20px 65px;
  background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
  text-align: center;
}

.page-hero h1 {
  margin: 10px 0;
  color: #172033;
  font-size: clamp(2.7rem, 7vw, 4.7rem);
  line-height: 1.05;
}

.page-hero > div > p:last-child {
  color: #64748b;
}

.legal-page {
  padding: 75px 20px 110px;
  background: #ffffff;
}

.legal-container {
  width: min(850px, 100%);
  margin: 0 auto;
}

.legal-page h2 {
  margin: 42px 0 12px;
  color: #172033;
  font-size: 1.45rem;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page p {
  color: #475569;
  line-height: 1.8;
}

.legal-page a {
  color: var(--primary);
  font-weight: 700;
}

/* =====================================
   LEGAL PAGES
===================================== */

.legal-hero {
  position: relative;
  overflow: hidden;

  padding: 115px 20px 75px;

  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(194, 65, 12, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);

  text-align: center;
}

.legal-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -120px;

  width: 340px;
  height: 340px;

  border: 1px solid rgba(194, 65, 12, 0.1);
  border-radius: 50%;
}

.legal-hero .legal-container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 10px 0 14px;

  color: #172033;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-updated {
  color: #64748b;
  font-size: 0.92rem;
}

.legal-page {
  padding: 85px 20px 120px;
  background: #ffffff;
}

.legal-container {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-document {
  color: #475569;
}

.legal-intro {
  margin-bottom: 52px;
  padding: 28px 30px;

  background: #fffaf6;
  border: 1px solid #f0e1d6;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
}

.legal-intro p {
  margin: 0;
}

.legal-intro p + p {
  margin-top: 14px;
}

.legal-section {
  padding: 36px 0;
  border-bottom: 1px solid #e8edf2;
}

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0 0 17px;

  color: #172033;
  font-size: 1.45rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal-section h2 span {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  background: rgba(194, 65, 12, 0.1);
  color: var(--primary);

  border-radius: 9px;

  font-size: 0.78rem;
  font-weight: 800;
}

.legal-section p {
  margin: 0;

  color: #475569;
  font-size: 0.98rem;
  line-height: 1.85;
}

.legal-section p + p {
  margin-top: 15px;
}

.legal-section ul {
  display: grid;
  gap: 10px;

  margin: 20px 0;
  padding: 0;

  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 29px;

  color: #475569;
  line-height: 1.7;
}

.legal-section li::before {
  content: "✓";

  position: absolute;
  top: 0;
  left: 0;

  color: var(--primary);
  font-weight: 900;
}

.legal-section a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-contact {
  border-bottom: 0;
}

.legal-contact address {
  margin-top: 18px;

  color: #475569;
  font-style: normal;
  line-height: 1.9;
}

.legal-notice {
  margin-top: 45px;
  padding: 24px 26px;

  background: #101827;
  color: #dbe4ef;

  border-radius: 14px;

  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-notice strong {
  color: #fff2e8;
}

@media (max-width: 600px) {
  .legal-hero {
    padding: 85px 20px 55px;
  }

  .legal-page {
    padding: 60px 20px 85px;
  }

  .legal-intro {
    padding: 22px 20px;
  }

  .legal-section {
    padding: 29px 0;
  }

  .legal-section h2 {
    align-items: flex-start;
    font-size: 1.25rem;
  }

  .legal-section h2 span {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
}

/* ==========================
   Contact Form Agreement
========================== */

.checkbox-group {
    margin-top: 10px;
    margin-bottom: 22px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #475569;
    font-size: .92rem;
    line-height: 1.6;

    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;

    width: 18px;
    height: 18px;

    accent-color: var(--primary);

    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}