/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F7F3F9;
  color: #2D2D2D;
}
body {
  min-height: 100vh;
  background: linear-gradient(160deg,#faf7ef 0%,#f9f5fa 100%);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #32524A;
  /* Soft color, readable */
  position: relative;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
}
ul, ol {
  padding-left: 1.6em;
}
li + li {
  margin-top: 10px;
}
a {
  color: #A44A58;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E77471;
}
strong { font-weight: 600; }

/* Brand Colors (Pastel) */
:root {
  --primary: #29574A;
  --primary-rgb: 41,87,74;
  --secondary: #F7F0EA;
  --secondary-alt: #fffaf6;
  --accent: #E77471;
  --accent-dark: #C53831;
  --pastel-rose: #F3B6A5;
  --pastel-pink: #FFE5EC;
  --pastel-green: #AEE8BD;
  --pastel-yellow: #FEF7D3;
  --pastel-blue: #DFF2FA;
  --heading: #31605B;
  --card-bg: #fffaf7;
  --testimonial-bg: #fbeffd;
  --btn-primary: #E77471;
  --btn-primary-text: #fff;
  --btn-secondary: #F7F0EA;
  --btn-secondary-text: #29574A;
  --shadow: 0 4px 24px rgba(41,87,74,0.11);
  --radius: 18px;
  --footer-bg: #F4F6F7;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; line-height: 1.14; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 14px; }
h3 { font-size: 1.33rem; line-height: 1.25; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol { font-size: 1rem; margin-bottom: 10px; }

/* CONTAINER AND LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px 22px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(130deg,var(--pastel-pink) 0%,var(--pastel-yellow) 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 40px rgba(163,80,106,0.08);
  margin-bottom: 40px;
  padding-top: 46px;
  padding-bottom: 60px;
  position: relative;
}
.hero-section h1 {
  font-size: 2.2rem;
  color: #C53831;
  line-height: 1.14;
  margin-bottom: 14px;
  text-shadow: 0 2px 13px rgba(255,176,194,0.13);
}
.hero-section .subheadline {
  font-size: 1.22rem;
  color: #29574A;
  opacity: .86;
  margin-bottom: 20px;
}

/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(231,116,113,0.13);
  transform: translateY(-4px) scale(1.018);
}

/* CONTENT GRID */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* TEXT-IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TESTIMONIALS */
.testimonials-section {
  background: linear-gradient(115deg,#fbeffd 0%, #e3faf6 100%);
  border-radius: var(--radius);
  padding: 48px 0;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px 22px 30px;
  background: var(--testimonial-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px rgba(41,87,74,0.09);
  margin-bottom: 20px;
  color: #283F39;
  font-size: 1.08rem;
  max-width: 710px;
  transition: box-shadow .19s, transform .19s;
  position: relative;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #397D6E;
  margin-bottom: 0;
  line-height: 1.55;
  font-size: 1.09em;
  position: relative;
}
.testimonial-card cite {
  font-style: normal;
  color: #A44A58;
  font-size: .98em;
  margin-left: 18px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(231,116,113,.15);
  background: #fff6fb;
  transform: scale(1.014);
}

/* FEATURES LIST */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  list-style: none;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #FAFEF8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow .16s, background .16s;
}
.features-list li:hover {
  background: #F7F0EA;
  box-shadow: 0 8px 28px rgba(174,232,189,0.13);
}
.features-list img {
  width: 42px; height: 42px;
  margin-top: 4px;
  flex-shrink: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SERVICE LIST */
.service-list, .service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  list-style: none;
}
.service-list li, .service-list-detailed li {
  background: #FFF6FA;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px rgba(231,116,113, 0.07);
  padding: 22px 18px 16px 18px;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 12px;
  transition: box-shadow .18s, background .18s;
}
.service-list li:hover, .service-list-detailed li:hover {
  background: #FFE5EC;
  box-shadow: 0 8px 22px rgba(231,116,113,0.12);
}
.price {
  display: inline-block;
  background: var(--pastel-yellow);
  color: #C53831;
  border-radius: 23px;
  padding: 4px 16px;
  margin-top: 10px;
  font-size: 1.05em;
  box-shadow: 0 1px 6px rgba(255,197,183,0.10);
  font-weight: 600;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(95deg, #AEF1D0 0%, #FDEBE6 100%);
  border-radius: var(--radius);
  padding: 34px 0 26px;
  margin-bottom: 44px;
  box-shadow: 0 1px 22px rgba(211,197,246,0.10);
}
.cta-section h2 {
  margin-bottom: 16px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 12px 36px;
  margin: 12px 0 0 0;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .14s, transform .13s;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(231,116,113,0.05);
}
.btn-primary {
  background: var(--btn-primary);
  color: var(--btn-primary-text);
  box-shadow: 0 2px 16px rgba(231,116,113,0.11);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--btn-secondary);
  color: var(--btn-secondary-text);
  border: 2px solid var(--btn-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: var(--btn-primary);
  border-color: var(--accent-dark);
}

/* NAVIGATION */
header {
  background: var(--secondary);
  padding: 0 0 0 0;
  box-shadow: 0 2px 14px rgba(210, 208, 215, 0.09);
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 16px;
  min-height: 66px;
  gap: 10px;
}
.logo img {
  height: 44px;
  border-radius: 0;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #29574A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 16px;
  opacity: .89;
  transition: background .16s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7F7EE;
  color: var(--accent-dark);
}

/* HIDE main-nav/BUTTON ON MOBILE, SHOW BURGER */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #E77471;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  border-radius: 50%;
  transition: background .15s;
  z-index: 1121;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E77471;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(249,245,250,0.98);
  box-shadow: 0 4px 44px rgba(163,80,106,0.09);
  z-index: 2100;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.6,.04,.3,1.05);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E77471;
  margin: 24px 26px 12px 0;
  cursor: pointer;
  z-index: 2122;
  border-radius: 50%;
  transition: background .1s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFC6B7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 30px 40px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #29574A;
  font-size: 1.22rem;
  border-radius: 16px;
  padding: 8px 2px;
  font-weight: 500;
  display: block;
  width: 100%;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3B6A5;
  color: #fff;
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  padding: 36px 0 24px 0;
  border-radius: 34px 34px 0 0;
  margin-top: 44px;
  box-shadow: 0 -2px 20px rgba(41,87,74,.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #29574A;
  font-size: .98em;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
  opacity: .78;
  transition: color .15s, background .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E77471;
  background: #FAFEF8;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  color: #797676;
}
.brand-footer img {
  height: 36px; width: 36px;
  border-radius: 10px;
  background: transparent;
}

/* TABLES (CENIK) */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffaf7;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
}
.pricing-table thead th {
  background: #f9f5fa;
  color: #31605B;
  font-weight: 700;
  font-size: 1.08em;
}
.pricing-table tbody tr {
  border-top: 1px solid #F1DFD3;
}
.pricing-table tbody td {
  color: #32524A;
  font-size: .98em;
}

/* LEGAL SECTION (for legal/terms/cookies) */
.legal-section {
  background: linear-gradient(105deg,#FFE5EC 10%, #FAFEF8 100%);
  border-radius: var(--radius);
  padding: 44px 0 40px 0;
  margin-bottom: 44px;
  box-shadow: 0 1px 22px rgba(211,197,246,0.11);
}

/* THANK YOU SECTION */
.thankyou-section {
  background: linear-gradient(125deg, #F3B6A5 5%,#DFF2FA 80%);
  border-radius: var(--radius);
  margin-bottom: 48px;
  padding-top: 36px;
  padding-bottom: 40px;
  box-shadow: var(--shadow);
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.contact-info a {
  font-weight: 600;
}

/* SPACING/SUPPORT CLASSES */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 16px !important; }

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff7f6;
  color: #29574A;
  box-shadow: 0 -2px 18px rgba(231,116,113,0.13);
  z-index: 2170;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 14px 22px 20px;
  font-size: 1rem;
  animation: cookieDrop .52s cubic-bezier(.9,.51,.43,1.17);
}
@keyframes cookieDrop {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0;
  font-size: .99rem;
  flex: 1 1 320px;
}
.cookie-btn {
  background: #E77471;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 9px 22px;
  margin-left: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s;
  box-shadow: 0 2px 10px rgba(231,116,113,0.12);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #C53831;
}
.cookie-settings-btn {
  background: #F3B6A5;
  color: #29574A;
  border: none;
  border-radius: 22px;
  padding: 9px 20px;
  font-size: 1rem;
  margin-left: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .16s, color .14s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFE5EC;
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(50,82,74,0.25);
  z-index: 2180;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .49s cubic-bezier(.82,.01,.37,.98);
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fffaf6;
  border-radius: var(--radius);
  padding: 34px 32px 26px 32px;
  box-shadow: 0 8px 40px rgba(231,116,113,0.18);
  min-width: 320px; max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1.01rem;
  color: #29574A;
  flex: 1;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #DFF2FA;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .15s;
}
.cookie-toggle:checked {
  background: #AEE8BD;
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .16s, background .12s;
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #50A87D;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings-btn {
  margin-left: 0;
  margin-top: 0;
}

/* UTILITIES */
::-webkit-input-placeholder { color: #B198B6; opacity: .8; }
::-moz-placeholder { color: #B198B6; opacity: .8; }
:-ms-input-placeholder { color: #B198B6; opacity: .8; }
::placeholder { color: #B198B6; opacity: .8; }

/* ANIMATIONS & MICRO-INTERACTIONS */
.btn, .cookie-btn, .cookie-settings-btn {
  outline: none;
}
.btn:focus, .cookie-btn:focus, .cookie-settings-btn:focus {
  box-shadow: 0 0 0 3px #AEE8BD55;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width:900px) {
  .footer-nav { gap: 12px; }
  .testimonials-section { padding: 34px 0; }
  .card-container, .service-list, .service-list-detailed, .features-list { gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; } h2 { font-size: 1.45rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { gap: 10px; }
  .section, .hero-section, .legal-section, .thankyou-section, .cta-section, .testimonials-section {
    padding: 24px 5px 24px 5px;
    margin-bottom: 28px;
  }
  .service-list, .service-list-detailed, .features-list, .card-container {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card { padding: 20px 14px 16px 14px; max-width: 94vw; }
  .footer-nav { flex-direction: column; gap: 8px; align-items: center; }
  .brand-footer { flex-direction: column; align-items: center; gap:8px; }
  .content-grid, .card-content, .contact-info {
    flex-direction: column;
    gap: 8px;
  }
  .hero-section { padding-top: 22px; padding-bottom: 28px; }
  .main-nav { display: none !important; }
  .btn.btn-primary, .btn.btn-secondary { width: 100%; text-align: center; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-nav, .mobile-menu-close { display: none !important; }
  .main-nav { display: flex !important; }
}

@media (max-width: 520px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 6px; padding: 19px 3vw; }
  .cookie-btn, .cookie-settings-btn { width: 100%; margin: 8px 0 0 0; }
  .pricing-table th, .pricing-table td { padding: 10px 6px; }
}

/* Utility helper: visually hide on mobile/desktop if needed */
.hide-mobile { display: none !important; }
@media (min-width: 769px) { .hide-desktop { display: none !important; } }

/* *** END OF CSS *** */
