:root {
  --primary: #c2544b;
  --primary-dark: #a03d36;
  --primary-light: #f2e0de;
  --secondary: #c9a96e;
  --secondary-dark: #b08c4a;
  --accent: #4a7c5b;
  --accent-light: #e0ede4;
  --bg-main: #fffbf7;
  --bg-section: #f5ede5;
  --bg-dark: #2b2b2b;
  --text-dark: #2b2b2b;
  --text-body: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --border: #e0d6cc;
  --shadow: 0 2px 20px rgba(43, 43, 43, 0.08);
  --shadow-lg: 0 8px 32px rgba(43, 43, 43, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1100px;
  --font-heading: "Playfair Display", serif;
  --font-body: "Quicksand", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}

section {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  margin-top: 0.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-gold {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-gold:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
}

header {
  position: fixed;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 1.5rem);
  max-width: var(--max-width);
  background: rgba(255, 251, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  box-shadow: var(--shadow);
  padding: 0.45rem 1.4rem;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease;
}

header.header-hidden {
  transform: translateX(-50%) translateY(calc(-100% - 1rem));
}

header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.logo:hover {
  color: var(--primary);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-list li a {
  display: block;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-list li a:hover,
.nav-list li a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 251, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
}

.mobile-nav li {
  margin: 1rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-overlay.active .mobile-nav li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-overlay.active .mobile-nav li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-overlay.active .mobile-nav li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-overlay.active .mobile-nav li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-overlay.active .mobile-nav li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-overlay.active .mobile-nav li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav li a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  transition: color var(--transition);
}

.mobile-nav li a:hover {
  color: var(--primary);
}

.hero {
  padding: 6rem 0 3.5rem;
  background: linear-gradient(
    135deg,
    var(--bg-main) 0%,
    var(--primary-light) 50%,
    var(--bg-section) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero h1 {
  margin-bottom: 0.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--text-light);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.hero-img {
  margin: 2rem auto 0;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-sub {
  padding: 5.5rem 0 2.5rem;
  background: linear-gradient(
    135deg,
    var(--bg-section) 0%,
    var(--primary-light) 100%
  );
  text-align: center;
}

.hero-sub h1 {
  margin-bottom: 0.5rem;
}

.hero-sub p {
  color: var(--text-light);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card .webpn-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.service-card .btn {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-item .webpn-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.feature-item h3 {
  font-size: 0.95rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.features-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.8rem;
}

.step-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.step-card h3 {
  font-size: 0.95rem;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-card .stars {
  color: var(--secondary);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}

.testimonial-card .author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  text-align: center;
  padding: 2.5rem 0;
  border-radius: 0;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section h2::after {
  background: var(--secondary);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-section .btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--secondary);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card .webpn-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.1rem;
}

.pricing-card .price-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 1.2rem;
}

.pricing-card ul li {
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li i {
  color: var(--accent);
  font-size: 0.7rem;
}

.styles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.style-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.style-item .webpn-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.style-item:nth-child(1) .webpn-wrap {
  background: var(--primary-light);
  color: var(--primary);
}
.style-item:nth-child(2) .webpn-wrap {
  background: var(--accent-light);
  color: var(--accent);
}
.style-item:nth-child(3) .webpn-wrap {
  background: #fff3e0;
  color: #e67e22;
}
.style-item:nth-child(4) .webpn-wrap {
  background: #e8eaf6;
  color: #5c6bc0;
}

.style-item h3 {
  font-size: 0.95rem;
}

.style-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.card-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.card-type {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.card-type:hover {
  transform: translateY(-3px);
}

.card-type .webpn-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.2rem;
}

.card-type:nth-child(1) .webpn-wrap {
  background: var(--primary-light);
  color: var(--primary);
}
.card-type:nth-child(2) .webpn-wrap {
  background: var(--accent-light);
  color: var(--accent);
}
.card-type:nth-child(3) .webpn-wrap {
  background: #fff3e0;
  color: #e67e22;
}
.card-type:nth-child(4) .webpn-wrap {
  background: #e8eaf6;
  color: #5c6bc0;
}

.card-type h3 {
  font-size: 0.95rem;
}

.card-type p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  max-width: 200px;
  position: relative;
}

.process-step .step-number {
  background: var(--accent);
}

.process-step h3 {
  font-size: 0.95rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-story-text h2 {
  margin-bottom: 0.8rem;
}

.about-story-text p {
  font-size: 0.88rem;
}

.about-story-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.value-card .webpn-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 0.95rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-wrap h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  background: var(--bg-main);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.form-consent label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.form-error {
  color: var(--primary);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--primary);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info-card .webpn-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}

.contact-info-card h3 {
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.contact-info-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

.fullpage-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.2rem 3rem;
}

.fullpage-inner {
  max-width: 450px;
}

.fullpage-inner .webpn-large {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.fullpage-inner h1 {
  margin-bottom: 0.6rem;
}

.fullpage-inner p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.policy-content {
  padding: 5.5rem 0 3rem;
}

.policy-content h1 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-content h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-content p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.policy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.policy-content ul li {
  font-size: 0.85rem;
  line-height: 1.7;
  padding: 0.15rem 0;
  list-style: disc;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
}

footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 0 1rem;
  font-size: 0.75rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-risk {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-risk p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.footer-copy p {
  font-size: 0.72rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.78rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.cookie-accept:hover {
  background: var(--secondary-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bg-alt {
  background: var(--bg-section);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

@media (max-width: 900px) {
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .features-grid,
  .styles-list,
  .card-types-grid {
    grid-template-columns: 1fr;
  }

  .features-with-image {
    grid-template-columns: 1fr;
  }

  .features-image {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-img {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  header {
    width: calc(100% - 1rem);
    padding: 0.4rem 1rem;
    top: 0.4rem;
  }

  .hero {
    padding: 5rem 0 2.5rem;
  }

  .hero-sub {
    padding: 5rem 0 2rem;
  }

  section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 0.8rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .process-steps {
    gap: 1rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  header {
    width: calc(100% - 0.5rem);
    padding: 0.35rem 0.7rem;
    border-radius: 30px;
    top: 0.25rem;
  }

  .logo {
    font-size: 0.9rem;
  }

  .hero {
    padding: 4.5rem 0 2rem;
  }
}
