@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Plus Jakarta Sans',sans-serif; background:#f5f0eb; color:#2c1810; min-height:100vh; line-height:1.6; }
a { color:#7a9a6e; text-decoration:none; transition:color .2s; }
a:hover { color:#5c7a52; }
img { max-width:100%; }

.nav { padding:24px 32px; background:#f5f0eb; border-bottom:1px solid #e0d8d0; position:sticky; top:0; z-index:100; }
.nav-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; }
.logo { font-size:20px; font-weight:700; color:#2c1810; text-decoration:none; letter-spacing:-0.3px; }
.logo span { color:#7a9a6e; font-weight:400; }
.logo em { font-style:normal; color:#c4956a; }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a { color:#8a7a68; font-size:14px; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:#2c1810; }

.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 28px; border-radius:10px; font-size:14px; font-weight:600; cursor:pointer; border:none; text-decoration:none; transition:all .25s; letter-spacing:0.2px; }
.btn-sm { padding:8px 20px; font-size:12px; }
.btn-primary { background:#7a9a6e; color:#fff; }
.btn-primary:hover { background:#5c7a52; transform:translateY(-1px); box-shadow:0 4px 12px rgba(122,154,110,0.3); }
.btn-outline { background:transparent; color:#7a9a6e; border:1.5px solid #7a9a6e; }
.btn-outline:hover { background:#7a9a6e; color:#fff; }

.hero { position:relative; overflow:hidden; padding:130px 32px 110px; text-align:center; }
.hero-bg { position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, rgba(122,154,110,0.07) 0%, transparent 60%); pointer-events:none; }
.hero-content { max-width:760px; margin:0 auto; position:relative; }
.hero-deco { font-size:14px; color:#7a9a6e; letter-spacing:6px; margin-bottom:24px; }
.hero h1 { font-size:54px; font-weight:800; line-height:1.1; margin-bottom:16px; color:#2c1810; letter-spacing:-1.5px; }
.hero h1 span { background:linear-gradient(135deg,#7a9a6e,#c4956a); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero p { font-size:17px; color:#8a7a68; line-height:1.7; margin-bottom:40px; max-width:500px; margin-left:auto; margin-right:auto; }
.hero-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

.section { padding:96px 32px; }
.section-sage { background:#eaf3e8; }
.section-dark { background:#1a2414; }
.section-inner { max-width:1100px; margin:0 auto; }
.section-inner h2 { font-size:30px; font-weight:700; text-align:center; margin-bottom:12px; color:#2c1810; letter-spacing:-0.5px; }
.section-inner .section-sub { font-size:15px; color:#8a7a68; text-align:center; max-width:540px; margin:0 auto 48px; line-height:1.7; }
.section-dark .section-inner h2 { color:#f2ebe2; }
.section-dark .section-inner .section-sub { color:#a89880; }

.section-label { text-align:center; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:3px; color:#7a9a6e; margin-bottom:12px; }

.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:768px) { .grid-3 { grid-template-columns:1fr; } }

.card { background:#fff; border:1px solid #e0d8d0; border-top:3px solid #7a9a6e; border-radius:0 0 16px 16px; padding:36px 32px 32px; transition:all .25s; display:flex; flex-direction:column; }
.card:hover { border-top-color:#5c7a52; transform:translateY(-3px); box-shadow:0 12px 28px rgba(0,0,0,0.06); }
.card-badge { display:inline-block; font-size:11px; font-weight:700; color:#7a9a6e; letter-spacing:1px; margin-bottom:16px; }
.card-icon { width:48px; height:48px; border-radius:12px; background:rgba(122,154,110,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:20px; color:#7a9a6e; }
.card-icon svg { width:22px; height:22px; }
.card h3 { font-size:18px; font-weight:600; margin-bottom:10px; color:#2c1810; }
.card p { font-size:14px; color:#8a7a68; line-height:1.65; margin-bottom:auto; }
.card-link { margin-top:20px; font-size:13px; font-weight:600; color:#7a9a6e; display:inline-flex; align-items:center; gap:6px; }
.card-link:hover { color:#5c7a52; }
.card-link::after { content:"→"; font-size:16px; }

.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; position:relative; }
@media (max-width:768px) { .steps-grid { grid-template-columns:1fr; gap:32px; } }
.step { text-align:center; position:relative; }
.step-num { width:48px; height:48px; border-radius:50%; background:rgba(122,154,110,0.12); color:#7a9a6e; font-size:15px; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.step h3 { font-size:17px; font-weight:600; margin-bottom:8px; color:#2c1810; }
.step p { font-size:14px; color:#8a7a68; line-height:1.65; max-width:280px; margin:0 auto; }

.cta-section { padding:80px 32px; background:#eaf3e8; text-align:center; border-top:1px solid #d0d8c8; }
.cta-section .section-inner { max-width:620px; }
.cta-section h2 { font-size:28px; font-weight:700; margin-bottom:12px; color:#2c1810; }
.cta-section p { font-size:15px; color:#8a7a68; margin-bottom:32px; }
.cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

.page-header { padding:96px 32px 0; text-align:center; }
.page-header .section-label { margin-bottom:16px; }
.page-header h1 { font-size:40px; font-weight:700; margin-bottom:12px; color:#2c1810; letter-spacing:-0.5px; }
.page-header .subtitle { font-size:16px; color:#8a7a68; max-width:500px; margin:0 auto; }

.content-body { max-width:700px; margin:0 auto 48px; }
.content-body h2 { font-size:22px; font-weight:600; margin-bottom:16px; color:#2c1810; text-align:left; }
.content-body p { font-size:15px; color:#8a7a68; line-height:1.8; margin-bottom:20px; }
.content-quote { font-size:17px; font-style:normal; color:#2c1810; font-weight:500; line-height:1.8; padding:16px 24px; background:#fff; border-radius:12px; border-left:3px solid #7a9a6e; margin-bottom:24px; }

.contact-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:48px; max-width:850px; margin:0 auto; }
@media (max-width:768px) { .contact-grid { grid-template-columns:1fr; } }
.form-card { background:#fff; border:1px solid #e0d8d0; border-radius:16px; padding:36px; }
.form-card h3 { font-size:18px; font-weight:600; margin-bottom:24px; color:#2c1810; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:12px; color:#8a7a68; margin-bottom:6px; font-weight:600; text-transform:uppercase; letter-spacing:0.8px; }
.form-input { width:100%; padding:12px 16px; background:#f8f5f0; border:1.5px solid #e0d8d0; border-radius:10px; color:#2c1810; font-size:14px; font-family:inherit; outline:none; transition:border-color .2s; }
.form-input:focus { border-color:#7a9a6e; background:#fff; }
.form-input::placeholder { color:#c0b8a8; }
textarea.form-input { resize:vertical; min-height:120px; }
.form-card .btn { width:100%; justify-content:center; }
.alert { padding:16px 20px; border-radius:10px; margin-bottom:24px; }
.alert-success { background:#eaf3e8; border:1px solid #7a9a6e; color:#4a6a3e; }
.alert-error { background:#f8e8e0; border:1px solid #c4956a; color:#8a5a3e; }
.alert h3 { font-size:14px; margin-bottom:4px; }
.alert p { font-size:13px; color:inherit; }
.contact-info { padding-top:4px; }
.contact-detail { margin-bottom:28px; padding:20px; background:#fff; border:1px solid #e0d8d0; border-radius:12px; }
.contact-detail:last-child { margin-bottom:0; }
.contact-detail h3 { font-size:11px; font-weight:700; margin-bottom:4px; color:#7a9a6e; text-transform:uppercase; letter-spacing:1px; }
.contact-detail p { font-size:14px; color:#8a7a68; }

.footer { padding:48px 32px; background:#1a2414; }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-brand strong { color:#f2ebe2; font-size:14px; }
.footer-brand p { color:#8a9a7a; font-size:12px; margin-top:3px; }
.footer-links { display:flex; gap:24px; }
.footer-links a { color:#8a9a7a; font-size:13px; transition:color .2s; }
.footer-links a:hover { color:#f2ebe2; }
.footer-copy { color:#6a7a5a; font-size:12px; width:100%; text-align:center; margin-top:20px; padding-top:20px; border-top:1px solid #2a3a2a; }
