/* ------------------------
   SILENT VEIL ACCOUNTING CSS - luxury_premium style
   Author: Professional Web Developer
   Only Flexbox. Fully responsive. 
   Brand Guidelines enforced
---------------------------*/

/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #232C33;
  background: #F8F8F6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B18B47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #232C33;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #232C33;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
h5, h6 { font-size: 0.94rem; }
strong { font-weight: 700; color: #232C33; }
blockquote {
  border-left: 4px solid #B18B47;
  padding-left: 18px;
  color: #232C33;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 10px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography scale: 14px, 16px, 18px, 24px, 32px, 48px (with rem fallback above) */

/* ---- BRAND COLOR VARIABLES ---- */
:root {
  --primary: #232C33;
  --secondary: #8BA19E;
  --accent: #F1EFE7;
  --gold: #B18B47; /* Gold accent for luxury */
  --gold-darker: #8D6D34;
  --error: #B3312E;
  --white: #fff;
  --shadow: 0 2px 14px rgba(35,44,51,0.11);
  --shadow-soft: 0 1px 8px rgba(177,139,71,0.07);
}

/* --- LUXURY BALANCED BACKGROUNDS --- */
body, .accent-bg {
  background: var(--accent);
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(177,139,71,0.14);
  transform: translateY(-3px) scale(1.015);
}

.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #ede8d9;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
}

/* --- HERO SECTIONS --- */
.hero {
  background: var(--primary);
  color: var(--accent);
  padding-top: 72px;
  padding-bottom: 56px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 18px rgba(35,44,51,0.09);
  margin-bottom: 44px;
}
.hero h1, .hero h2, .hero p {
  color: var(--accent);
}
.hero .btn {
  margin-top: 10px;
}

/* --- MAIN NAV BAR & HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(35,44,51,0.06);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--gold);
}
.btn-primary {
  background: var(--gold);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 11px 28px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(177,139,71,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold-darker);
  color: #fff;
  box-shadow: 0 6px 24px rgba(177,139,71,0.19);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 28px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.14s;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--primary);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 11px;
  transition: background 0.12s;
  display: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold);
}
/* Show hamburger on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,44,51,0.98);
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.3,.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 46px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  padding: 16px 20px 8px 20px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
  z-index: 1200;
}
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 20px 40px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 7px;
  padding: 12px 8px;
  transition: background 0.17s, color 0.17s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary);
}

/* --- SECTIONS AND LAYOUTS --- */
.features {
  background: var(--accent);
}
.feature-grid, .service-list, .team-grid, .pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 10px;
}
.team-grid {
  flex-wrap: wrap;
}
.team-member {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  min-width: 210px;
  flex: 1 1 180px;
  margin-bottom: 16px;
  border-left: 4px solid var(--secondary);
}
.pricing-tables {
  justify-content: space-between;
}
.pricing-table {
  min-width: 260px;
  background: #fff;
  border-radius: 15px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 35px 30px 24px 30px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.pricing-table:hover {
  box-shadow: 0 10px 34px rgba(177,139,71,0.13);
  transform: translateY(-3px) scale(1.03);
}

.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  margin-bottom: 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 17px;
}
.service-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  min-width: 180px;
  flex: 1 1 180px;
  border-left: 3px solid var(--secondary);
}

.software-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- CTA --- */
.cta {
  background: var(--gold);
  color: var(--primary);
  text-align: center;
  padding-top: 46px;
  padding-bottom: 46px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 22px;
}
.cta .btn {
  margin-top: 12px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 50px;
}
.testimonial-card {
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-soft);
  border-radius: 13px;
  color: #232C33;
  max-width: 650px;
  margin-bottom: 26px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #232C33;
  border: none;
  padding-left: 0;
}
.testimonial-card footer {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--secondary);
  font-weight: 500;
}

/* --- CONTACT INFO --- */
.contact-details ul {
  list-style: none;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact-details a {
  color: var(--primary);
  text-decoration: underline;
  padding-left: 2px;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: var(--gold);
}
.location-map {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--secondary);
}

/* --- LEGAL PAGES --- */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 36px 20px;
}

/* --- THANK YOU SECTION --- */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 70px 20px;
}
.thank-you h1 {
  color: var(--gold);
  font-size: 2.1rem;
}

/* --- PRICING INCLUDED SERVICES/BILLING --- */
.package-description,
.included-services,
.billing-cycle-info {
  margin-top: 22px;
}
.included-services ul,
.billing-cycle-info ul {
  padding-left: 18px;
}

/* --- FAQ, BENEFITS, HIGHLIGHTS --- */
.faqs, .benefits-list, .leadership-highlights, .key-benefits, .pricing-faq, .support-options {
  margin-top: 18px;
  background: #f7f5f2;
  border-radius: 11px;
  padding: 18px 14px 18px 20px;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(177,139,71,0.03);
}
.faqs h3, .benefits-list h3, .leadership-highlights p, .key-benefits h3 {
  color: var(--gold);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- FOOTER --- */
footer {
  padding-top: 48px;
  padding-bottom: 32px;
  background: var(--primary);
  color: var(--accent);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #485259;
  padding-bottom: 19px;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 14px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.99rem;
  color: var(--accent);
  align-items: center;
}
.footer-contact img {
  width: 18px; height: 18px; margin-right: 8px;
}
.footer-copy {
  text-align: center;
  color: #b1bdc1;
  margin-top: 12px;
  font-size: 0.97rem;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2400;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -3px 16px rgba(35,44,51,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 9px 20px 17px;
  gap: 24px;
  border-top: 3px solid var(--gold);
  transition: transform 0.32s cubic-bezier(.73,.09,.47,.94);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 0.99rem;
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
}
.cookie-btn {
  padding: 9px 21px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--gold-darker);
  color: #fff;
}
.cookie-btn.reject {
  background: #e7dfc8;
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--error);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
  border: 1.5px solid var(--gold);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--gold);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,44,51,.48);
  z-index: 2550;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeIn 0.18s;
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(35,44,51,0.18);
  padding: 36px 28px 22px 28px;
  width: 92%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin 0.25s cubic-bezier(.7,.31,.25,1.18);
}
@keyframes popin {
  from {opacity:0; transform:scale(0.85);} to {opacity:1;transform:scale(1);}
}
.cookie-modal h3 {
  color: var(--gold);
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.cookie-modal .cookie-switch {
  display: inline-flex;
  align-items: center;
  height: 24px;
}
.cookie-modal input[type=checkbox] {
  width: 32px;
  height: 18px;
  accent-color: var(--gold);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal .essential-label {
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 6px;
}
.cookie-modal .btnbar {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
/* Accessibility */
.cookie-modal input[type=checkbox][disabled], .cookie-modal input[type=checkbox][disabled]+label {
  cursor: not-allowed;
  opacity: 0.5;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 900px) {
  .feature-grid, .service-list, .team-grid, .pricing-tables, .footer-contact {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-main, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding-left: 13px;
    padding-right: 13px;
    max-width: 99vw;
  }
  .section, section {
    padding: 24px 8px;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 34px;
    border-radius: 0 0 22px 22px;
    margin-bottom: 26px;
  }
  .content-grid, .feature-grid, .service-list, .team-grid, .pricing-tables {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 14px;
    border-radius: 12px;
  }
  footer {
    padding-top: 32px;
    padding-bottom: 18px;
  }
  .footer-main, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cta {
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 15px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 18px 7px 8px 13px;
  }
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
button, .btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
}
button:active, .btn:active {
  transform: scale(0.98);
}

/* --- UTILITY CLASSES --- */
.hide { display: none !important; }
.visible { display: block !important; }


/* --- FOCUS RINGS (Accessibility) --- */
a:focus, .btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2.2px solid var(--gold);
  outline-offset: 2px;
  background: #F5F2E4;
}

/* --- PRINT OPTIMIZATION --- */
@media print {
  header, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #232C33 !important;
  }
}

/* ---- END ---- */
