@charset "UTF-8";

/*
Skin Name: belleweb
Skin URI: https://wp-cocoon.com/
Description: エステ・ネイルサロン専門の上質なブランディングWebデザイン。30代女性をターゲットにした、上品でフェミニンなデザインです。
Author: belleweb
Author URI: https://wp-cocoon.com/
Priority: 10
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Noto+Serif+JP:wght@400;600;900&display=swap');

:root {
  --primary-color: #4A3F35; /* Warm dark brown for text */
  --secondary-color: #B5838D; /* Deep dusty rose/mauve */
  --accent-color: #D4A373; /* Soft caramel gold */
  --accent-hover: #C28E5C;
  --bg-light: #FAF8F5; /* Elegant warm off-white */
  --bg-dark: #FFFFFF;
  --text-main: #5C524A; /* Soft brown text */
  --font-base: 'Noto Serif JP', serif;
  --font-en: 'Cormorant Garamond', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles (Cocoon Overrides) */
#header, #footer, .breadcrumb, #sidebar {
  display: none !important;
}

#container,
#content,
.content-in,
#main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Singular Pages (Posts & Fixed Pages) Layout */
body.single #main,
body.page #main,
body.archive #main {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 100px 25px !important; /* Elegant vertical spacing */
  background-color: var(--bg-dark);
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  body.single #main,
  body.page #main,
  body.archive #main {
    padding: 60px 20px !important;
  }
}

/* Singular Content Styling (H2 Overrides) */
.article h2 {
  background-color: transparent !important;
  padding: 0 0 1rem 0 !important;
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 2.5rem;
  font-family: var(--font-base);
  border-radius: 0 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.article h3 {
  border: none !important;
  padding: 0 !important;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.05em;
}

body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}

.section-padding {
  padding: 120px 0;
}

.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  position: relative;
  font-family: var(--font-en);
}

.section-title::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 4px;
  font-weight: 400;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.1em;
}

.btn-primary {
  background: var(--secondary-color);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-outline {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 4px;
  font-weight: 400;
  font-size: 1.05rem;
  text-align: center;
  border: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: transparent;
  transition: var(--transition);
  text-decoration: none !important;
  letter-spacing: 0.1em;
}

.btn-outline:hover {
  background: var(--secondary-color) !important;
  color: #fff !important;
}

.btn-large {
  padding: 1.2rem 3.5rem;
  font-size: 1.1rem;
  width: 100%;
  max-width: 420px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition);
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

header.custom-header.scrolled {
  padding: 12px 0;
  background-color: rgba(250, 248, 245, 0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

header.custom-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.1em;
}

nav.custom-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  padding: 0;
}

nav.custom-nav a {
  font-weight: 400;
  color: var(--text-main);
  font-size: 0.95rem;
  text-decoration: none;
}

nav.custom-nav a:hover:not(.btn) {
  color: var(--secondary-color);
}

.btn-header {
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-header:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('./images/hero_beauty.png') center/cover no-repeat;
  color: var(--primary-color);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.95) 0%, rgba(250, 248, 245, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1.2;
}

.hero-badge {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--secondary-color);
  vertical-align: middle;
  margin-right: 10px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: var(--primary-color);
  word-break: keep-all;
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-main);
  line-height: 2;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}


/* Information Section */
#news {
  background-color: var(--bg-dark);
}

.news-list {
  max-width: 850px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(74, 63, 53, 0.1);
  transition: var(--transition);
  align-items: baseline;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.95rem;
  color: var(--secondary-color);
  min-width: 120px;
  font-weight: 400;
}

.news-category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.8rem;
  background-color: rgba(181, 131, 141, 0.1); /* Subtle secondary color background */
  color: var(--secondary-color);
  border-radius: 2px;
  margin-right: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0;
}

.news-title a {
  color: var(--text-main);
  transition: var(--transition);
}

.news-title a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 1.2rem 0;
  }
  
  .news-date {
    min-width: 85px;
    font-size: 0.85rem;
    flex-shrink: 0;
    padding-top: 2px;
  }
  
  .news-category {
    margin-right: 0;
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
    flex-shrink: 0;
  }

  .news-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Features Section */
.features {
  background-color: var(--bg-light); /* Changed to bg-light for alternating feel */
}

.concept-section {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 7rem;
}

.concept-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.concept-text {
  flex: 1.2;
}

.concept-text h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.concept-text p {
  margin-bottom: 2.5rem;
  color: var(--text-main);
  line-height: 1.9;
}

.concept-list li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.concept-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-right: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.feature-icon {
  width: 100px;
  height: 100px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.feature-card p {
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Works Section */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.work-card {
  background: var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
  transition: var(--transition);
}

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

.work-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.work-info {
  padding: 2rem;
}

.work-category {
  display: inline-block;
  color: var(--secondary-color);
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.work-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.work-info p {
  color: var(--text-main);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
  background: var(--bg-light);
  position: relative;
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-card {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background: var(--bg-dark);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border-top: 3px solid transparent;
}

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

.pricing-card.popular {
  border-top: 3px solid var(--secondary-color);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.popular-badge {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-base);
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
  color: var(--primary-color);
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-main);
  font-family: var(--font-base);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  min-height: 45px;
}

.plan-features {
  text-align: left;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  font-size: 0.9rem;
}

.pricing-card .btn {
  width: 100%;
  padding: 1rem;
}

.pricing-card:not(.popular) .btn {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid #EBE4DB;
}

.pricing-card:not(.popular) .btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* Comparison Section */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 3rem;
  background: var(--bg-dark);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: center;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.comparison-table th {
  font-weight: 400;
  color: var(--primary-color);
  background: var(--bg-light);
  font-family: var(--font-base);
}

.comparison-table th.highlight {
  background: var(--secondary-color);
  color: #fff;
  font-size: 1.1rem;
}

.comparison-table td.highlight {
  background: rgba(181, 131, 141, 0.03);
  color: var(--secondary-color);
}

.comparison-table td {
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Flow Section */
.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  background: var(--bg-light);
  border-radius: 4px;
  padding: 2.5rem;
  align-items: center;
  position: relative;
}

.flow-number {
  font-size: 2.5rem;
  font-family: var(--font-en);
  color: var(--accent-color);
  min-width: 80px;
  opacity: 0.5;
}

.flow-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  margin-bottom: 1rem;
  border-radius: 4px;
  display: block; /* Stack Q and A vertically */
  width: 100%;
  box-sizing: border-box;
}

.faq-q {
  padding: 1.8rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.faq-icon {
  font-size: 1.5rem;
  font-family: var(--font-en);
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  width: 100%;
  box-sizing: border-box;
  display: block; /* Ensure it's a block element */
}

.faq-item.active .faq-a {
  padding: 0 2rem 1.8rem;
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  background: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 400;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 2;
}

.cta-section .btn {
  background: var(--bg-light);
  color: var(--secondary-color);
}

.cta-section .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Contact Form 7 Styling */
.contact-form-container {
  max-width: 650px;
  margin: 4rem auto 0;
  text-align: left;
}

.wpcf7-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wpcf7-form p {
  margin-bottom: 2rem !important;
  text-align: left !important;
}

.wpcf7-form label {
  display: block;
  font-family: var(--font-base);
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(250, 248, 245, 0.98);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-main);
  box-sizing: border-box;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wpcf7-submit {
  display: block;
  width: 100%;
  padding: 1.3rem 2rem;
  background-color: var(--bg-light);
  color: var(--secondary-color) !important;
  border: 1px solid var(--bg-light);
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-submit:hover {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Validation & Feedback */
.wpcf7-spinner {
  background-color: #fff !important;
  margin: 0 0 0 10px !important;
}

.wpcf7-not-valid-tip {
  color: #fff !important;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 600;
  background: rgba(214, 40, 40, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

.wpcf7-response-output {
  margin: 3rem 0 0 !important;
  padding: 1.5rem !important;
  border-radius: 6px !important;
  font-size: 1rem;
  color: #fff !important;
  border: 1.5px solid #fff !important;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .wpcf7-form {
    padding: 25px 20px;
  }
}

/* Footer */
.custom-footer {
  background: var(--bg-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  font-family: var(--font-en);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2100; /* Higher than sticky header */
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--primary-color);
  margin-bottom: 6px;
  transition: var(--transition);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Hamburger to X Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2050;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  text-align: center;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-nav li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

.mobile-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: var(--secondary-color);
  color: #fff !important;
  border-radius: 4px;
  font-size: 1.2rem !important;
  margin-top: 1rem;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-text {
    margin-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .concept-section {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .custom-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .flow-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .flow-number {
    margin-bottom: 1rem;
  }
}
