/* =====================
   CSS RESET & NORMALIZE
   ===================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F6F2;
  color: #20232A;
  min-height: 100vh;
  line-height: 1.7;
  /* Optional subtle paper grain effect */
  background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="40" height="40" fill="%23f9f6f2"/%3E%3Ccircle cx="20" cy="20" r="1.5" fill="%23E8D6C1" fill-opacity="0.13"/%3E%3C/svg%3E');
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A77CA0;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #d194c0;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #403030;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #6D544B;
  background: rgba(232,212,193,0.19);
  border-left: 4px solid #A77CA0;
  padding: 16px 24px;
  border-radius: 8px;
  margin: 16px 0;
  font-style: italic;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*==============
  HEADER & NAV
  ==============*/
header {
  width: 100%;
  background: #F9F6F2;
  border-bottom: 2px dotted #E8D6C1;
  box-shadow: 0 3px 16px 0 rgba(60,40,20,0.04);
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header a img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  letter-spacing: .5px;
  color: #6D544B;
  padding: 4px 7px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0%;
  border-bottom: 2px solid #A77CA0;
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: 0;
}
header nav a:hover:after,
header nav a:focus:after {
  width: 92%;
}
header nav a:hover,
header nav a:focus {
  background: #E8D6C1;
  color: #A77CA0;
}

.cta-btn.btn-primary {
  background: #A77CA0;
  color: #FFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  padding: 10px 32px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(167,124,160,0.09);
  transition: background .18s, box-shadow .22s, color .2s;
  margin-left: 12px;
  letter-spacing: 1px;
  outline: none;
  position: relative;
  z-index: 10;
}
.cta-btn.btn-primary:hover,
.cta-btn.btn-primary:focus {
  background: #d194c0;
  color: #3a0036;
  box-shadow: 0 7px 16px 0 rgba(167,124,160,0.15);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: #A77CA0;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 8px 16px;
  margin-left: 18px;
  cursor: pointer;
  transition: background .12s;
  z-index: 51;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #d194c0;
  outline: 2px solid #20232A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF6ED;
  box-shadow: 0 4px 32px 0 rgba(80,64,60,0.20);
  padding: 40px 24px 24px 24px;
  transform: translateX(-102vw);
  transition: transform 0.38s cubic-bezier(.6,.06,.17,.97);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 300;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #A77CA0;
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  transition: color .18s, background .18s;
  border-radius: 50%;
  padding: 3px 16px 3px 16px;
  margin-bottom: 18px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #403030;
  background: #E8D6C1;
  outline: 2px solid #A77CA0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  margin-top: 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #6D544B;
  font-family: 'Playfair Display', serif;
  padding: 11px 0 11px 3px;
  width: 100%;
  border-radius: 6px;
  transition: background .14s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2E2E2;
  color: #A77CA0;
  outline: none;
}


/* ==========  SECTIONS & LAYOUT SPACING  ========== */
.section,
.hero-section,
.features-section,
.about-section,
.services-section,
.testimonials-section,
.cta-section,
.pricing-section,
.legal-section,
.confirmation-section,
.contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 900px) {
  .section,
  .hero-section,
  .features-section,
  .about-section,
  .services-section,
  .testimonials-section,
  .cta-section,
  .pricing-section,
  .legal-section,
  .confirmation-section,
  .contact-section {
    padding: 36px 6vw 36px 6vw;
    margin-bottom: 40px;
  }
}
@media (max-width: 500px){
  .section,
  .hero-section,
  .features-section,
  .about-section,
  .services-section,
  .testimonials-section,
  .cta-section,
  .pricing-section,
  .legal-section,
  .confirmation-section,
  .contact-section{
    padding: 21px 2vw 21px 2vw;
    margin-bottom: 24px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(40,20,8,0.08);
  padding: 32px 18px 32px 18px;
  transition: box-shadow 0.14s;
}
.card:hover {
  box-shadow: 0 9px 32px 0 rgba(160,130,120,0.15);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(60,30,30,0.08);
  margin-bottom: 20px;
  padding: 20px;
  min-width: 0;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 90px;
}
.testimonial-card blockquote {
  margin: 0 0 0 9px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1.08rem;
  color: #403030;
}
@media (max-width: 650px) {
  .testimonial-card{
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 13px;
  }
  .testimonial-card .stars{
    margin-bottom: 5px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #FFF;
  border: 2px dashed #E8D6C1;
  border-radius: 16px;
  box-shadow: 0 1px 9px 0 rgba(160,130,120,0.07);
  padding: 24px 18px 16px 18px;
  min-width: 0;
  margin-bottom: 0;
  text-align: left;
  transition: box-shadow .18s, border-color .2s, transform .2s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 22px 0 rgba(160,130,120,0.16);
  border-color: #A77CA0;
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 37px;
  height: 37px;
  margin-bottom: 11px;
}
@media (max-width: 930px) {
  .feature-grid{
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    width: 100%;
  }
}

/* USP, BENEFITS, HIGHLIGHT-LISTS */
.usp-list,
.benefit-list,
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 18px 0 6px 0;
  padding-left: 0;
}
.usp-list li, .benefit-list li, .highlight-list li {
  font-size: 1rem;
  color: #52383E;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #F3ECE5;
  border-radius: 12px;
  padding: 12px 16px 12px 10px;
  border-left: 4px solid #A77CA0;
  margin-bottom: 0;
}
.usp-list img,
.benefit-list img,
.highlight-list img{
  margin-right: 9px;
  width: 25px;
}

.value-statements p {
  background: #FFF;
  border-radius: 10px;
  padding: 16px 20px;
  color: #756358;
  border: 1px solid #E8D6C1;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
}
.text-section ul {
  margin: 8px 0 2px 0;
}
.text-section li {
  margin-bottom: 0.25em;
}

/* ===================
    TABLES (PRICING)
   =================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 26px 0;
  background: #fffdfa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 9px 0 rgba(60,40,20,0.08);
}
.pricing-table th,
.pricing-table td {
  padding: 18px 12px;
  text-align: left;
  font-size: 1.05rem;
}
.pricing-table th {
  background: #A77CA0;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.pricing-table tr {
  border-bottom: 1px solid #E8D6C1;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: #403030;
  vertical-align: top;
}
@media (max-width: 600px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table td, .pricing-table th {
    padding: 11px 8px;
  }
  .pricing-table th {
    border-radius: 0;
  }
}

.compare-features {
  margin: 18px 0 18px 0;
  background: #f3ece5;
  border: 1px solid #E8D6C1;
  border-radius: 10px;
  padding: 14px 20px;
}
.compare-features ul {
  margin: 1em 0 0 0;
}
.compare-features li {
  margin-bottom: 7px;
  color: #52383E;
}

/* ===============
   FAQ ACCORDION
  =============== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #fffdfa;
  border-radius: 13px;
  box-shadow: 0 1px 5px 0 rgba(160,130,120,0.08);
  margin-bottom: 0;
  border: 1px solid #E8D6C1;
  transition: border-color .2s, box-shadow .19s;
  padding: 14px 22px;
  cursor: pointer;
}
.faq-accordion > div:hover,
.faq-accordion > div:focus {
  border-color: #A77CA0;
  box-shadow: 0 7px 13px 0 rgba(167,124,160,0.12);
}
.faq-accordion h3 {
  font-size: 1.16rem;
  margin-bottom: 3px;
  font-family: 'Playfair Display', serif;
}
.faq-accordion .answer {
  font-size: 0.97rem;
  margin-top: 7px;
  color: #756358;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 21px 0 0 0;
  align-items: flex-start;
}
.topic-list li {
  background: #FFEFE0;
  color: #A77CA0;
  border-radius: 5px;
  font-size: .93rem;
  padding: 5px 18px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* ===============
    BUTTONS
  ===============*/
button,
input[type="button"],
input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 32px;
  border: none;
  background: #A77CA0;
  color: #fff;
  cursor: pointer;
  transition: background .17s;
}
button:hover, button:focus,
input[type="button"]:hover, input[type="button"]:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #d194c0;
  color: #3a0036;
  outline: none;
}

/* ===========
   FOOTER
   ===========*/
footer {
  background: #F3ECE5;
  border-top: 2px dashed #E8D6C1;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 20px 16px 20px;
  gap: 32px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  font-family: 'Playfair Display', serif;
  color: #A77CA0;
  font-size: 1.07rem;
  margin-bottom: 2px;
  transition: color .13s;
}
footer nav a:hover,
footer nav a:focus {
  color: #20232A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  font-size: .96rem;
  color: #756358;
  margin-bottom: 9px;
  line-height: 1.7;
}
.footer-contact img {
  width: 15px;
  vertical-align: text-bottom;
  margin-right: 6px;
  filter: grayscale(30%) sepia(20%);
}
.footer-credit {
  width: 100%;
  font-size: .9rem;
  color: #b89995;
  font-family: 'Playfair Display', serif;
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 900px) {
  footer .container{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-credit{
    text-align: left;
  }
}

/* =======================
   RESPONSIVE NAVIGATION
   =======================*/
@media (max-width: 1024px) {
  header .container{
    gap: 6px;
    padding-right: 9px;
  }
  header nav {
    gap: 10px;
  }
  .cta-btn.btn-primary {
    padding: 10px 19px;
    font-size: 1.02rem;
    margin-left: 4px;
  }
}
@media (max-width: 820px) {
  header nav { display: none; }
  .cta-btn.btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 821px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =============================
   HERO/CTA & SPECIAL SECTIONS
   ============================= */
.hero-section {
  background: #FFEFE0 url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="10" cy="10" r="1.5" fill="%23A77CA0" fill-opacity="0.04"/%3E%3C/svg%3E');
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}
.hero-section p {
  font-size: 1.15rem;
  color: #6D544B;
  margin-bottom: 13px;
}
@media (max-width: 600px){
  .hero-section{ border-radius: 0 0 20px 20px; }
}

.cta-section {
  background: #A77CA0;
  border-radius: 33px;
  box-shadow: 0 3px 14px 0 rgba(167,124,160,.11);
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-section .cta-btn.btn-primary {
  margin-left: 0;
  background: #fff;
  color: #A77CA0;
  font-weight: bold;
  margin-top: 10px;
  transition: color .15s, background .17s;
}
.cta-section .cta-btn.btn-primary:hover,
.cta-section .cta-btn.btn-primary:focus {
  background: #FFEFE0;
  color: #A77CA0;
}

/* Confirmation (Thank You) */
.confirmation-section ul {
  margin: 21px 0 10px 0;
  padding-left: 17px;
}
.confirmation-section li {
  margin-bottom: 0.5em;
  color: #52383E;
}

/* Contact section icons */
.contact-section .text-section {
  gap: 10px;
}
.contact-section .text-section div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Playfair Display', serif;
  color: #52383E;
  font-size: 1.05rem;
  padding: 7px 0;
}
.contact-section .text-section img {
  width: 23px;
  filter: grayscale(30%) sepia(20%);
  margin-top: 2px;
}

/* =====================
   LEGAL PAGES SECTIONS
   ===================== */
.legal-section h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.legal-section .text-section {
  gap: 10px;
  font-size: 1.01rem;
}
.legal-section h2 {
  margin-top: 23px;
  font-size: 1.2rem;
  color: #A77CA0;
}

/* ===============
   TEAM LOGO
   =============== */
.team-icon-placeholder {
  margin: 19px 0 0 0;
}
.team-icon-placeholder img {
  width: 58px;
  opacity: 0.8;
  border-radius: 50%;
  box-shadow: 0 1px 7px #A77CA01f;
  background: #fffdfa;
  padding: 6px;
}

/* ==============
   TRANSITIONS
   =============*/
a, button, .feature-grid > div, .card, .cta-btn, .testimonial-card, .faq-accordion > div, .mobile-menu, .mobile-menu-close {
  transition-property: background, color, box-shadow, border-color, transform, outline;
  transition-duration: .12s, .18s, .15s, .2s, .18s, .2s;
  transition-timing-function: cubic-bezier(.49,.02,.15,1.00);
}

/* Subtle retro shadows for elements */
.card, .testimonial-card, .feature-grid > div, .about-section .value-statements p {
  box-shadow: 0 2px 8px 0 rgba(160, 130, 120, 0.10);
}

/* ===============
   COOKIE CONSENT
   ===============*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 250;
  background: #f3ece5;
  border-top: 3px dashed #A77CA0;
  box-shadow: 0 -2px 18px 0 rgba(60,40,20,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 13vw 18px 13vw;
  font-size: 1rem;
  color: #403030;
  transition: transform 0.34s cubic-bezier(.6,.04,.16,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1 1 0%;
  padding-right: 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: .99rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  padding: 8px 19px;
  background: #A77CA0;
  color: #fff;
  font-size: .98rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background .15s, outline .19s;
  font-family: 'Playfair Display', serif;
  outline: none;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #d194c0;
}
.cookie-banner .cookie-settings {
  background: #FFEFE0;
  color: #A77CA0;
  border: 1.5px dashed #A77CA0;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #E8D6C1;
  color: #A77CA0;
}
@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 2vw 12px 2vw;
    font-size: .99rem;
  }
  .cookie-banner .cookie-message {
    padding-right: 0;
    margin-bottom: 10px;
  }
}

/* Cookie MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,35,42,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .27s cubic-bezier(.31,.06,.4,1.03);
}
.cookie-modal {
  background: #FFF;
  border-radius: 22px;
  padding: 40px 28px;
  min-width: 305px;
  max-width: 96vw;
  box-shadow: 0 8px 46px 0 rgba(60,48,40,0.14), 0 1.5px 7px #A77CA01c;
  position: relative;
}
.cookie-modal h2 {
  color: #A77CA0;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-bottom: 22px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #F9F6F2;
  border-radius: 9px;
  padding: 14px 13px;
}
.cookie-modal .cookie-category label {
  font-size: 1.01rem;
  color: #52383E;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 23px; height: 23px;
  accent-color: #A77CA0;
  margin-right: 7px;
}
.cookie-modal .cookie-category .always-on {
  font-style: italic;
  color: #BBB;
  font-size: .87rem;
  margin-left: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: #A77CA0;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0 8px 0 7px;
  border-radius: 12px;
  transition: background .18s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #E8D6C1;
}
@media (max-width: 480px){
  .cookie-modal{
    padding: 16vw 5vw 16vw 5vw;
    min-width: 0;
  }
  .cookie-modal .cookie-modal-actions{
    flex-direction: column;
    gap: 7px;
  }
}

/* =============
   FORMS (if any in future use)
   =============*/
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #E8D6C1;
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 12px;
  width: 100%;
  background: #fffdfa;
  color: #403030;
  transition: border-color .14s;
  outline: none;
}
input:focus, textarea:focus {
  border-color: #A77CA0;
}
label {
  font-family: 'Playfair Display', serif;
  color: #A77CA0;
  font-size: .98rem;
}

/* =============
   RETRO DETAILS
   =============*/
/* Typography: Vintage/retro script accents as headers */
.hero-section h1, .features-section h2, .about-section h2, .testimonials-section h2,
.services-section h2, .pricing-section h2, .cta-section h2, .legal-section h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: bold;
  letter-spacing: -1.5px;
  color: #A77CA0;
  text-shadow: 1px 2px 0 #fff6ed, 0 2px 9px #E8D6C1;
}
/* Retro-pattern on hero, sections */
.hero-section {
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="10" cy="10" r="1.5" fill="%23A77CA0" fill-opacity="0.03"/%3E%3C/svg%3E'), linear-gradient(180deg,#FFEFE0 74%, #fff 98%);
}

/* Decorative dashed lines for retro flavor */
.section, .features-section, .testimonials-section, .about-section {
  border-bottom: 2px dashed #E8D6C1;
}
@media (max-width:600px){
  .section,.features-section, .testimonials-section, .about-section {
    border-bottom: none;
  }
}

/* ==========
   UTILITIES
   ==========*/
.hide { display: none !important; }

/* ===== Scrollbar for retro touch ===== */
::-webkit-scrollbar { width: 7px; background: #FFEFE0;}
::-webkit-scrollbar-thumb { background: #E8D6C1; border-radius: 10px; }

