* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #435058;
--secondary: #848c8e;
--accent: #dcf763;
--light: #f1f2ee;
--gray: #bfb7b6;
}

body {
font-family: 'Inter', sans-serif;
background: #f1f2ee;
color: #435058;
line-height: 1.6;
overflow-x: hidden;
}

body {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.main-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(241, 242, 238, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(67, 80, 88, 0.1);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
background: rgba(241, 242, 238, 0.98);
box-shadow: 0 4px 20px rgba(67, 80, 88, 0.08);
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 1.2rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
}

.logo-section a {
display: block;
}

.site-logo {
height: 45px;
width: auto;
transition: transform 0.3s ease;
}

.site-logo:hover {
transform: scale(1.05);
}

.main-nav {
display: flex;
align-items: center;
}

.nav-menu {
display: flex;
align-items: center;
gap: 2.5rem;
}

.nav-link {
font-size: 15px;
font-weight: 500;
color: #435058;
position: relative;
background: none;
border: none;
cursor: pointer;
font-family: 'Inter', sans-serif;
display: flex;
align-items: center;
gap: 0.3rem;
padding: 0.5rem 0;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0%;
height: 2px;
background: #dcf763;
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

.contact-btn {
background: #dcf763;
padding: 0.7rem 1.8rem !important;
border-radius: 50px;
color: #435058;
font-weight: 600;
}

.contact-btn::after {
display: none;
}

.contact-btn:hover {
background: #d1ed4f;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 247, 99, 0.4);
}

.dropdown-wrapper {
position: relative;
}

.dropdown-trigger {
display: flex;
align-items: center;
gap: 0.4rem;
}

.arrow-dn {
font-size: 14px;
transition: transform 0.3s ease;
}

.dropdown-wrapper:hover .arrow-dn {
transform: rotate(180deg);
}

.dropdown-content {
position: absolute;
top: 100%;
left: 0;
background: #ffffff;
min-width: 220px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(67, 80, 88, 0.15);
padding: 0.8rem 0;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
margin-top: 1rem;
}

.dropdown-content.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-content a {
display: block;
padding: 0.8rem 1.5rem;
color: #435058;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
}

.dropdown-content a:hover {
background: rgba(220, 247, 99, 0.2);
color: #435058;
padding-left: 2rem;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.mobile-toggle span {
width: 28px;
height: 3px;
background: #435058;
border-radius: 2px;
transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.main-content {
padding-top: 85px;
}

.hero-new {
	background: #435058;
	padding: 5rem 3rem 4rem;
position: relative;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.top-badge {
background: rgba(220,247,99,0.2);
color: #dcf763;
    padding: 0.4rem 1rem;
border-radius: 20px;
display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2rem;
text-transform: lowercase;
}

.big-title {
font-size: 6rem;
    line-height: 0.95;
color: #f1f2ee;
margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-p {
color: #bfb7b6;
    font-size: 1.1rem;
line-height: 1.7;
    margin-bottom: 2.5rem;
max-width: 520px;
}

.hero-btns {
display: flex;
    gap: 1rem;
}

.btn-yellow {
background: #dcf763;
color: #435058;
    padding: 1rem 2.5rem;
border-radius: 8px;
    font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-yellow:hover {
background: #d1ed4f;
    transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(220,247,99,0.35);
}

.btn-outline {
background: transparent;
color: #f1f2ee;
padding: 1rem 2.5rem;
    border-radius: 8px;
font-weight: 600;
    font-size: 15px;
border: 2px solid rgba(241,242,238,0.3);
    transition: all 0.3s ease;
display: inline-block;
}

.btn-outline:hover {
border-color: #f1f2ee;
background: rgba(241,242,238,0.1);
}

.hero-visual-box {
position: relative;
}

.hero-main-img {
width: 100%;
border-radius: 24px;
box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}

.floating-badge {
position: absolute;
bottom: -25px;
right: -25px;
background: #dcf763;
padding: 1.5rem 2rem;
border-radius: 16px;
box-shadow: 0 15px 40px rgba(220,247,99,0.4);
text-align: center;
}

.badge-num {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 0.3rem;
}

.badge-text {
display: block;
font-size: 13px;
color: #435058;
font-weight: 600;
text-transform: lowercase;
}

.overlap-section {
padding: 6rem 3rem;
    background: #f1f2ee;
}

.overlap-wrap {
max-width: 1400px;
margin: 0 auto;
}

.overlap-text {
    text-align: center;
margin-bottom: 4rem;
}

.sec-heading {
color: #435058;
    margin-bottom: 1rem;
font-size: 3.5rem;
}

.overlap-text p {
    color: #848c8e;
font-size: 1.1rem;
max-width: 600px;
    margin: 0 auto;
}

.overlap-cards {
display: grid;
    grid-template-columns: repeat(3, 1fr);
gap: 2rem;
    position: relative;
}

.overlap-card {
background: white;
border-radius: 20px;
overflow: hidden;
    transition: transform 0.4s ease;
}

.overlap-card:hover {
    transform: translateY(-10px) scale(1.02);
z-index: 10;
}

.card-1 {
    transform: translateY(0);
}

.card-2 {
transform: translateY(40px);
}

.card-3 {
    transform: translateY(20px);
}

.card-img {
width: 100%;
height: 260px;
    overflow: hidden;
}

.card-img img {
width: 100%;
    height: 100%;
object-fit: cover;
    transition: transform 0.5s ease;
}

.overlap-card:hover .card-img img {
transform: scale(1.1);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
color: #435058;
    font-size: 1.6rem;
margin-bottom: 0.7rem;
}

.card-content p {
    color: #848c8e;
margin-bottom: 1.5rem;
line-height: 1.6;
}

.card-content a {
    color: #435058;
font-weight: 600;
    transition: color 0.3s ease;
}

.card-content a:hover {
color: #dcf763;
}

.numbers-block {
background: white;
    padding: 5rem 3rem;
}

.numbers-container {
max-width: 1200px;
    margin: 0 auto;
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.number-big,
.number-small {
    text-align: center;
}

.number-big .num-value {
font-size: 5rem;
    font-weight: 700;
color: #435058;
    font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 1rem;
}

.number-small .num-value {
    font-size: 3.5rem;
font-weight: 700;
color: #435058;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
margin-bottom: 0.8rem;
}

.num-text {
color: #848c8e;
    font-size: 15px;
line-height: 1.4;
}

.teach-method {
padding: 6rem 3rem;
    background: #f1f2ee;
}

.method-container {
max-width: 1400px;
    margin: 0 auto;
display: grid;
    grid-template-columns: 1.2fr 0.8fr;
gap: 5rem;
}

.dark-heading {
    color: #435058;
margin-bottom: 3rem;
}

.method-list {
display: flex;
    flex-direction: column;
gap: 2.5rem;
}

.method-point {
    display: flex;
gap: 2rem;
}

.point-num {
    background: #dcf763;
color: #435058;
padding: 0.5rem 1.2rem;
    border-radius: 30px;
font-weight: 700;
    font-size: 13px;
text-transform: lowercase;
    height: fit-content;
}

.point-info h4 {
color: #435058;
    font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.point-info p {
    color: #848c8e;
line-height: 1.7;
}

.method-right {
display: flex;
    flex-direction: column;
gap: 1.5rem;
}

.feature-box {
    background: white;
padding: 1.8rem;
border-radius: 16px;
    display: flex;
gap: 1.2rem;
align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-box:hover {
transform: translateX(10px);
}

.fb-icon {
    font-size: 1.8rem;
color: #dcf763;
}

.fb-text h5 {
color: #435058;
    font-size: 1.1rem;
margin-bottom: 0.4rem;
}

.fb-text p {
    color: #848c8e;
font-size: 14px;
line-height: 1.5;
}

.dark-trust {
    background: #435058;
padding: 6rem 3rem;
}

.trust-wrap {
    max-width: 1400px;
margin: 0 auto;
}

.trust-head h2 {
    color: #f1f2ee;
text-align: center;
margin-bottom: 4rem;
}

.trust-grid {
    display: grid;
grid-template-columns: 0.8fr 1.2fr;
gap: 4rem;
    align-items: center;
}

.trust-circles {
position: relative;
    width: 320px;
height: 320px;
    margin: 0 auto;
}

.circle-photo {
width: 140px;
    height: 140px;
border-radius: 50%;
    overflow: hidden;
position: absolute;
border: 4px solid #dcf763;
}

.circle-photo img {
    width: 100%;
height: 100%;
object-fit: cover;
}

.c1 {
    top: 0;
left: 0;
}

.c2 {
    top: 0;
right: 0;
}

.c3 {
bottom: 0;
    left: 0;
}

.circle-accent {
position: absolute;
bottom: 40px;
right: 40px;
width: 100px;
height: 100px;
background: #dcf763;
border-radius: 50%;
opacity: 0.3;
}

.trust-number {
    font-size: 3rem;
font-weight: 700;
color: #dcf763;
    text-align: center;
margin-top: 2rem;
font-family: 'Space Grotesk', sans-serif;
}

.trust-label {
    color: #bfb7b6;
text-align: center;
    font-size: 14px;
margin-top: 0.5rem;
}

.trust-quotes {
display: flex;
    flex-direction: column;
gap: 2rem;
}

.quote-card {
    background: rgba(241,242,238,0.1);
padding: 2rem;
border-radius: 16px;
    border-left: 4px solid #dcf763;
}

.quote-card p {
color: #f1f2ee;
    line-height: 1.7;
font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.quote-author {
display: flex;
    flex-direction: column;
gap: 0.3rem;
}

.author-name {
    color: #dcf763;
font-weight: 600;
}

.author-job {
    color: #bfb7b6;
font-size: 14px;
}

.price-preview {
padding: 6rem 3rem;
    background: white;
}

.price-container {
max-width: 1300px;
    margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
    gap: 4rem;
align-items: center;
}

.price-left h2 {
    color: #435058;
margin-bottom: 1.5rem;
}

.price-left p {
    color: #848c8e;
line-height: 1.7;
margin-bottom: 2rem;
}

.price-right {
    display: grid;
grid-template-columns: 1.3fr 0.7fr;
gap: 1.5rem;
}

.price-card {
    background: #f1f2ee;
padding: 2rem;
    border-radius: 20px;
}

.pc-main {
background: #435058;
    color: white;
}

.pc-label {
font-size: 12px;
    text-transform: uppercase;
font-weight: 700;
    letter-spacing: 1px;
color: #dcf763;
margin-bottom: 1rem;
}

.pc-amount {
    font-size: 3.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.3rem;
}

.pc-per {
    color: #bfb7b6;
font-size: 14px;
margin-bottom: 2rem;
}

.pc-features {
    display: flex;
flex-direction: column;
gap: 0.8rem;
}

.pc-feat {
    font-size: 14px;
}

.pc-small {
display: flex;
    flex-direction: column;
justify-content: center;
align-items: center;
}

.pc-small .pc-amount {
    font-size: 2.2rem;
color: #435058;
}

.pc-save {
    background: #dcf763;
color: #435058;
padding: 0.4rem 1rem;
    border-radius: 20px;
font-size: 12px;
    font-weight: 700;
margin-top: 1rem;
}

.tools-section {
padding: 6rem 3rem;
background: #f1f2ee;
}

.tools-wrap {
max-width: 1400px;
margin: 0 auto;
}

.tools-header {
text-align: center;
margin-bottom: 4rem;
}

.tools-header h2 {
color: #435058;
margin-bottom: 1rem;
}

.tools-header p {
color: #848c8e;
font-size: 1.1rem;
}

.tools-grid-1 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 4rem;
}

.tool-category {
background: white;
padding: 2.5rem;
border-radius: 20px;
transition: transform 0.3s ease;
}

.tool-category:hover {
transform: translateY(-8px);
}

.tc-head h3 {
color: #435058;
font-size: 1.5rem;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 3px solid #dcf763;
}

.tc-items {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.tool-item {
padding: 1rem 0;
}

.tool-name {
color: #435058;
font-weight: 700;
font-size: 1.1rem;
margin-bottom: 0.4rem;
}

.tool-desc {
color: #848c8e;
font-size: 14px;
line-height: 1.5;
}

.tools-footer {
background: #435058;
padding: 3rem;
border-radius: 20px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
}

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

.tf-number {
font-size: 3.5rem;
font-weight: 700;
color: #dcf763;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 0.8rem;
}

.tf-label {
color: #bfb7b6;
font-size: 15px;
}

.final-push {
padding: 6rem 3rem;
    background: linear-gradient(135deg, #435058 0%, #59686f 100%);
}

.push-box {
    max-width: 900px;
margin: 0 auto;
}

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

.push-content h2 {
color: #f1f2ee;
    font-size: 3.5rem;
margin-bottom: 1.5rem;
}

.push-content p {
    color: #bfb7b6;
font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.push-actions {
display: flex;
    gap: 1rem;
justify-content: center;
}

.btn-yellow.big,
.btn-outline.big {
    padding: 1.2rem 3rem;
font-size: 16px;
}

.main-footer {
background: #435058;
color: #f1f2ee;
padding: 4rem 3rem 2rem;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}

.footer-col h3 {
font-size: 1.1rem;
margin-bottom: 1.2rem;
color: #dcf763;
font-weight: 600;
}

.footer-logo {
height: 40px;
width: auto;
margin-bottom: 1rem;
}

.footer-desc {
color: #bfb7b6;
font-size: 14px;
line-height: 1.6;
}

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

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

.footer-col ul li a {
color: #bfb7b6;
font-size: 14px;
transition: all 0.3s ease;
}

.footer-col ul li a:hover {
color: #dcf763;
padding-left: 5px;
}

.footer-bottom {
padding-top: 2rem;
border-top: 1px solid rgba(220, 247, 99, 0.2);
text-align: center;
}

.footer-bottom p {
color: #bfb7b6;
font-size: 14px;
}

.cookie-banner {
position: fixed;
bottom: -100%;
left: 0;
right: 0;
background: #ffffff;
box-shadow: 0 -4px 30px rgba(67, 80, 88, 0.15);
padding: 2rem;
z-index: 9999;
transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
bottom: 0;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

.cookie-text h4 {
font-size: 1.3rem;
color: #435058;
margin-bottom: 0.5rem;
}

.cookie-text p {
color: #848c8e;
font-size: 14px;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-shrink: 0;
}

.cookie-btn {
padding: 0.7rem 1.5rem;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Inter', sans-serif;
}

.cookie-btn.accept-all {
background: #dcf763;
color: #435058;
}

.cookie-btn.accept-all:hover {
background: #d1ed4f;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(220, 247, 99, 0.3);
}

.cookie-btn.customize {
background: transparent;
color: #435058;
border: 2px solid #435058;
}

.cookie-btn.customize:hover {
background: #435058;
color: #f1f2ee;
}

.cookie-btn.reject {
background: transparent;
color: #848c8e;
border: 2px solid #bfb7b6;
}

.cookie-btn.reject:hover {
background: #bfb7b6;
color: #435058;
}

.cookie-btn.save {
background: #dcf763;
color: #435058;
width: 100%;
margin-top: 1rem;
}

.cookie-btn.save:hover {
background: #d1ed4f;
}

.cookie-details {
max-width: 1200px;
margin: 2rem auto 0;
padding-top: 2rem;
border-top: 1px solid #bfb7b6;
}

.cookie-options {
display: flex;
flex-direction: column;
gap: 1rem;
}

.cookie-option {
display: flex;
align-items: center;
gap: 0.8rem;
cursor: pointer;
}

.cookie-option input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
accent-color: #dcf763;
}

.cookie-option span {
color: #435058;
font-size: 14px;
font-weight: 500;
}

@media (max-width: 1200px) {
.hero-wrapper {
grid-template-columns: 1fr;
}

.big-title {
font-size: 4.5rem;
}

.overlap-cards {
grid-template-columns: 1fr;
}

.card-1, .card-2, .card-3 {
transform: translateY(0);
}

.numbers-container {
grid-template-columns: 1fr;
}

.method-container {
grid-template-columns: 1fr;
}

.trust-grid {
grid-template-columns: 1fr;
}

.price-container {
grid-template-columns: 1fr;
}

.price-right {
grid-template-columns: 1fr;
}

.tools-grid {
grid-template-columns: 1fr;
}

.tools-footer {
grid-template-columns: 1fr;
}
}

@media (max-width: 1024px) {
.header-container {
padding: 1rem 2rem;
}

.footer-grid {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

.mobile-toggle {
display: flex;
}

.nav-menu {
position: fixed;
top: 75px;
right: -100%;
width: 280px;
height: calc(100vh - 75px);
background: #ffffff;
flex-direction: column;
align-items: flex-start;
padding: 2rem;
box-shadow: -4px 0 20px rgba(67, 80, 88, 0.1);
transition: right 0.4s ease;
gap: 1.5rem;
}

.nav-menu.active {
right: 0;
}

.dropdown-content {
position: static;
box-shadow: none;
background: rgba(220, 247, 99, 0.1);
margin-top: 0.5rem;
transform: none;
}

.dropdown-content.active {
display: block;
opacity: 1;
visibility: visible;
}

.contact-btn {
width: 100%;
text-align: center;
}

.big-title {
font-size: 3rem;
}

.hero-btns {
flex-direction: column;
}

.btn-yellow,
.btn-outline {
width: 100%;
text-align: center;
}

.floating-badge {
bottom: -15px;
right: -15px;
padding: 1rem 1.5rem;
}

.badge-num {
font-size: 2rem;
}

.footer-grid {
grid-template-columns: 1fr;
}

.cookie-content {
flex-direction: column;
align-items: flex-start;
}

.cookie-actions {
flex-direction: column;
width: 100%;
}

.cookie-btn {
width: 100%;
}

.push-content h2 {
font-size: 2.5rem;
}

.push-actions {
flex-direction: column;
}

.btn-yellow.big,
.btn-outline.big {
width: 100%;
}
}

.plat-intro-full {
padding: 8rem 3rem 6rem;
background: #435058;
}

.pif-wrap {
max-width: 1400px;
margin: 0 auto;
  display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
  align-items: center;
}

.pif-small-tag {
background: rgba(220,247,99,0.2);
  color: #dcf763;
padding: 0.5rem 1.2rem;
  border-radius: 25px;
display: inline-block;
  font-size: 12px;
font-weight: 700;
  margin-bottom: 2rem;
letter-spacing: 0.5px;
}

.pif-big-h1 {
  font-size: 6.5rem;
color: #f1f2ee;
  line-height: 0.9;
margin-bottom: 2rem;
  font-weight: 700;
letter-spacing: -2px;
}

.pif-lead-text {
  color: #bfb7b6;
font-size: 1.2rem;
  line-height: 1.75;
margin-bottom: 3rem;
}

.pif-quick-stats {
display: flex;
  gap: 2rem;
}

.pif-stat-box {
  background: rgba(220,247,99,0.1);
padding: 1.5rem;
  border-radius: 12px;
}

.pif-stat-num {
  font-size: 2.5rem;
font-weight: 700;
  color: #dcf763;
font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
margin-bottom: 0.5rem;
}

.pif-stat-label {
color: #848c8e;
  font-size: 13px;
}

.pif-main-img {
width: 100%;
  border-radius: 20px;
box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.plat-method-grid {
  padding: 7rem 3rem;
background: #f1f2ee;
}

.pmg-container {
max-width: 1400px;
  margin: 0 auto;
}

.pmg-intro {
  margin-bottom: 4rem;
}

.pmg-title {
font-size: 4.5rem;
  color: #435058;
margin-bottom: 1.2rem;
  font-weight: 700;
line-height: 1;
}

.pmg-subtitle {
  color: #848c8e;
font-size: 1.15rem;
  line-height: 1.7;
max-width: 700px;
}

.pmg-cards-layout {
display: grid;
  grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(6, 100px);
  gap: 2rem;
}

.pmg-card {
  background: white;
padding: 2.5rem;
  border-radius: 20px;
}

.pmg-c1 {
grid-column: 1 / 7;
  grid-row: 1 / 4;
}

.pmg-c2 {
  grid-column: 7 / 13;
grid-row: 1 / 3;
}

.pmg-c3 {
  grid-column: 1 / 5;
grid-row: 4 / 7;
}

.pmg-c4 {
  grid-column: 5 / 13;
grid-row: 3 / 7;
}

.pmg-number {
  background: #dcf763;
color: #435058;
  padding: 0.4rem 1rem;
border-radius: 20px;
  font-size: 12px;
font-weight: 700;
  display: inline-block;
margin-bottom: 1.5rem;
}

.pmg-card-title {
  font-size: 1.7rem;
color: #435058;
  margin-bottom: 1rem;
font-weight: 700;
}

.pmg-card-desc {
  color: #848c8e;
line-height: 1.7;
  font-size: 15px;
}

.plat-tech-inverse {
padding: 6rem 3rem;
  background: white;
}

.pti-wrapper {
  max-width: 1400px;
margin: 0 auto;
  display: grid;
grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
align-items: center;
}

.pti-mini-label {
  background: rgba(67,80,88,0.08);
color: #435058;
  padding: 0.4rem 1rem;
border-radius: 20px;
  font-size: 11px;
font-weight: 700;
  text-transform: uppercase;
letter-spacing: 1px;
  margin-bottom: 1.5rem;
display: inline-block;
}

.pti-heading {
  font-size: 3.8rem;
color: #435058;
  margin-bottom: 1.5rem;
line-height: 1.05;
  font-weight: 700;
}

.pti-description {
color: #848c8e;
  font-size: 1.1rem;
line-height: 1.7;
  margin-bottom: 3rem;
}

.pti-features {
  display: flex;
flex-direction: column;
  gap: 2rem;
}

.pti-feature-item {
display: flex;
  gap: 1.3rem;
align-items: flex-start;
}

.pti-fi-icon {
  background: rgba(220,247,99,0.15);
width: 50px;
  height: 50px;
border-radius: 12px;
  display: flex;
align-items: center;
  justify-content: center;
flex-shrink: 0;
}

.pti-fi-icon i {
  font-size: 1.5rem;
color: #435058;
}

.pti-fi-title {
  font-weight: 700;
color: #435058;
  font-size: 1rem;
margin-bottom: 0.3rem;
}

.pti-fi-text {
color: #848c8e;
  font-size: 14px;
line-height: 1.6;
}

.pti-image {
  width: 100%;
border-radius: 20px;
  box-shadow: 0 20px 50px rgba(67,80,88,0.15);
}

.plat-values-section {
  padding: 7rem 3rem;
background: #435058;
}

.pvs-container {
  max-width: 1200px;
margin: 0 auto;
}

.pvs-main-heading {
font-size: 4.5rem;
  color: #f1f2ee;
text-align: center;
  margin-bottom: 5rem;
font-weight: 700;
}

.pvs-values-wrap {
  display: grid;
grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pvs-value-item {
background: rgba(241,242,238,0.06);
  padding: 2.5rem;
border-radius: 18px;
}

.pvs-icon {
  font-size: 2.5rem;
color: #dcf763;
  margin-bottom: 1.5rem;
display: block;
}

.pvs-value-title {
  font-size: 1.5rem;
color: #dcf763;
  margin-bottom: 1rem;
font-weight: 700;
}

.pvs-value-text {
color: #bfb7b6;
  line-height: 1.7;
font-size: 15px;
}

.plat-final-cta {
  padding: 7rem 3rem;
background: #dcf763;
}

.pfc-content-wrap {
  max-width: 800px;
margin: 0 auto;
  text-align: center;
}

.pfc-title {
font-size: 4.5rem;
  color: #435058;
margin-bottom: 1.5rem;
  font-weight: 700;
line-height: 1;
}

.pfc-text {
color: #435058;
  font-size: 1.2rem;
line-height: 1.7;
  margin-bottom: 3rem;
}

.pfc-buttons {
display: flex;
  gap: 1.5rem;
justify-content: center;
}

.pfc-btn-main {
  background: #435058;
color: #f1f2ee;
  padding: 1.2rem 2.8rem;
border-radius: 10px;
  font-weight: 600;
font-size: 15px;
  transition: all 0.3s ease;
display: inline-block;
}

.pfc-btn-main:hover {
background: #59686f;
  transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(67,80,88,0.25);
}

.pfc-btn-alt {
  background: transparent;
color: #435058;
  padding: 1.2rem 2.8rem;
border-radius: 10px;
  font-weight: 600;
font-size: 15px;
  border: 2px solid #435058;
transition: all 0.3s ease;
  display: inline-block;
}

.pfc-btn-alt:hover {
background: #435058;
  color: #f1f2ee;
}

@media (max-width: 1200px) {
.pif-wrap {
  grid-template-columns: 1fr;
gap: 4rem;
}

.pif-big-h1 {
font-size: 4.5rem;
}

.pmg-cards-layout {
  grid-template-columns: 1fr;
grid-template-rows: auto;
}

.pmg-c1, .pmg-c2, .pmg-c3, .pmg-c4 {
  grid-column: 1 / -1;
grid-row: auto;
}

.pti-wrapper {
  grid-template-columns: 1fr;
}

.pvs-values-wrap {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.pif-big-h1 {
  font-size: 3rem;
}

.pif-quick-stats {
flex-direction: column;
  gap: 1rem;
}

.pmg-title {
font-size: 3rem;
}

.pti-heading {
  font-size: 2.5rem;
}

.pvs-main-heading {
font-size: 3rem;
}

.pvs-values-wrap {
  grid-template-columns: 1fr;
}

.pfc-title {
font-size: 3rem;
}

.pfc-buttons {
  flex-direction: column;
}

.pfc-btn-main, .pfc-btn-alt {
width: 100%;
}
}

.course-intro {
background: linear-gradient(165deg, #435058 0%, #59686f 100%);
padding: 8rem 3rem 6rem;
position: relative;
overflow: hidden;
}

.intro-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.3fr 0.7fr;
gap: 5rem;
align-items: center;
}

.intro-left h1 {
color: #f1f2ee;
font-size: 5.5rem;
line-height: 0.92;
margin-bottom: 2rem;
}

.intro-left p {
color: #bfb7b6;
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 3rem;
max-width: 540px;
}

.quick-stats {
display: flex;
gap: 3rem;
}

.stat-box {
display: flex;
flex-direction: column;
}

.stat-num {
font-size: 3.8rem;
font-weight: 700;
color: #dcf763;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 0.6rem;
}

.stat-label {
color: #848c8e;
font-size: 15px;
}

.intro-visual {
position: relative;
height: 420px;
}

.visual-card {
position: absolute;
background: white;
border-radius: 24px;
padding: 2rem;
box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.vc1 {
top: 0;
left: 0;
width: 200px;
z-index: 3;
}

.vc2 {
top: 80px;
right: 20px;
width: 240px;
z-index: 2;
}

.vc3 {
bottom: 40px;
left: 60px;
width: 180px;
z-index: 1;
background: #dcf763;
}

.vc-icon {
font-size: 2.5rem;
color: #435058;
margin-bottom: 1rem;
}

.vc-title {
font-size: 1.1rem;
font-weight: 700;
color: #435058;
margin-bottom: 0.5rem;
}

.vc-text {
font-size: 13px;
color: #848c8e;
}

.process-steps {
padding: 7rem 3rem;
background: #f1f2ee;
}

.process-container {
max-width: 1300px;
margin: 0 auto;
}

.process-header {
text-align: center;
margin-bottom: 5rem;
}

.process-header h2 {
color: #435058;
font-size: 4rem;
margin-bottom: 1.2rem;
}

.process-header p {
color: #848c8e;
font-size: 1.15rem;
}

.steps-timeline {
position: relative;
display: flex;
flex-direction: column;
gap: 0;
}

.timeline-step {
display: grid;
grid-template-columns: 0.4fr 1.6fr;
gap: 4rem;
padding: 3rem 0;
align-items: start;
}

.timeline-step:not(:last-child) {
border-bottom: 2px solid rgba(67,80,88,0.1);
}

.step-num-area {
position: relative;
}

.step-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 90px;
height: 90px;
background: #435058;
color: #dcf763;
font-size: 2.5rem;
font-weight: 700;
border-radius: 50%;
font-family: 'Space Grotesk', sans-serif;
}

.step-content h3 {
color: #435058;
font-size: 2rem;
margin-bottom: 1rem;
}

.step-content p {
color: #848c8e;
line-height: 1.75;
margin-bottom: 1.5rem;
}

.step-features {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}

.feature-tag {
background: white;
padding: 0.6rem 1.3rem;
border-radius: 30px;
font-size: 13px;
color: #435058;
font-weight: 600;
}

.courses-showcase {
padding: 6rem 3rem;
background: white;
}

.showcase-wrap {
max-width: 1400px;
margin: 0 auto;
}

.showcase-header {
margin-bottom: 4rem;
}

.showcase-header h2 {
color: #435058;
font-size: 3.5rem;
margin-bottom: 1rem;
}

.courses-masonry {
display: grid;
grid-template-columns: 1.2fr 0.8fr 1fr;
gap: 2rem;
}

.course-item {
background: #f1f2ee;
border-radius: 20px;
overflow: hidden;
transition: all 0.4s ease;
}

.course-item:hover {
transform: translateY(-12px);
box-shadow: 0 20px 50px rgba(67,80,88,0.15);
}

.ci-img {
width: 100%;
height: 280px;
overflow: hidden;
}

.ci-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}

.course-item:hover .ci-img img {
transform: scale(1.15);
}

.ci-content {
padding: 2.5rem;
}

.ci-meta {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 1.5rem;
}

.ci-duration {
display: flex;
align-items: center;
gap: 0.5rem;
color: #848c8e;
font-size: 14px;
}

.ci-level {
background: #dcf763;
padding: 0.3rem 1rem;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
color: #435058;
}

.ci-content h3 {
color: #435058;
font-size: 1.7rem;
margin-bottom: 1rem;
}

.ci-content p {
color: #848c8e;
line-height: 1.7;
margin-bottom: 1.8rem;
}

.ci-link {
color: #435058;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}

.ci-link:hover {
gap: 1rem;
color: #dcf763;
}

.item-tall {
grid-row: span 2;
}

.item-wide {
grid-column: span 2;
}

.tools-mastery {
padding: 6rem 3rem;
background: #435058;
}

.mastery-container {
max-width: 1200px;
margin: 0 auto;
}

.mastery-header {
text-align: center;
margin-bottom: 4rem;
}

.mastery-header h2 {
color: #f1f2ee;
font-size: 3.5rem;
margin-bottom: 1rem;
}

.mastery-header p {
color: #bfb7b6;
font-size: 1.1rem;
}

.tools-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}

.tool-box {
background: rgba(241,242,238,0.08);
padding: 2rem;
border-radius: 16px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.tool-box:hover {
background: rgba(220,247,99,0.15);
border-color: #dcf763;
transform: translateY(-5px);
}

.tool-icon {
font-size: 3rem;
color: #dcf763;
margin-bottom: 1rem;
}

.tool-name {
color: #f1f2ee;
font-weight: 700;
font-size: 1.1rem;
}

.start-journey {
padding: 6rem 3rem;
background: #f1f2ee;
}

.journey-box {
max-width: 1100px;
margin: 0 auto;
background: linear-gradient(135deg, #435058 0%, #59686f 100%);
border-radius: 30px;
padding: 5rem 4rem;
text-align: center;
position: relative;
overflow: hidden;
}

.journey-box::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 400px;
height: 400px;
background: rgba(220,247,99,0.1);
border-radius: 50%;
}

.journey-content {
position: relative;
z-index: 2;
}

.journey-content h2 {
color: #f1f2ee;
font-size: 3.8rem;
margin-bottom: 1.5rem;
}

.journey-content p {
color: #bfb7b6;
font-size: 1.2rem;
margin-bottom: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.journey-actions {
display: flex;
gap: 1.5rem;
justify-content: center;
}

.gd-hero {
padding: 8rem 3rem 6rem;
background: #f1f2ee;
position: relative;
}

.gd-hero-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 6rem;
align-items: center;
}

.gd-hero-left h1 {
color: #435058;
font-size: 6rem;
line-height: 0.9;
margin-bottom: 2rem;
}

.gd-hero-left .accent-line {
color: #dcf763;
}

.gd-desc {
color: #848c8e;
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 2.5rem;
}

.quick-info {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}

.info-item {
display: flex;
flex-direction: column;
}

.info-icon {
font-size: 2rem;
color: #dcf763;
margin-bottom: 0.8rem;
}

.info-value {
font-size: 1.8rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 0.3rem;
}

.info-label {
color: #848c8e;
font-size: 14px;
}

.gd-hero-img {
border-radius: 30px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(67,80,88,0.2);
position: relative;
}

.gd-hero-img img {
width: 100%;
height: auto;
display: block;
}

.floating-tag {
position: absolute;
bottom: 30px;
left: 30px;
background: #dcf763;
padding: 1.5rem 2rem;
border-radius: 16px;
}

.ft-text {
font-size: 14px;
font-weight: 700;
color: #435058;
margin-bottom: 0.3rem;
}

.ft-value {
font-size: 2rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
}

.curriculum-block {
padding: 7rem 3rem;
background: white;
}

.curr-container {
max-width: 1300px;
margin: 0 auto;
}

.curr-header {
margin-bottom: 5rem;
text-align: center;
}

.curr-header h2 {
color: #435058;
font-size: 4rem;
margin-bottom: 1.5rem;
}

.curr-header p {
color: #848c8e;
font-size: 1.15rem;
max-width: 650px;
margin: 0 auto;
}

.modules-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}

.module-card {
background: #f1f2ee;
padding: 3rem;
border-radius: 24px;
transition: all 0.4s ease;
border: 3px solid transparent;
}

.module-card:hover {
border-color: #dcf763;
transform: translateY(-8px);
}

.module-number {
font-size: 3.5rem;
font-weight: 700;
color: rgba(67,80,88,0.15);
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 1rem;
}

.module-card h3 {
color: #435058;
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.module-topics {
display: flex;
flex-direction: column;
gap: 1rem;
}

.topic-item {
display: flex;
align-items: start;
gap: 1rem;
}

.topic-icon {
color: #dcf763;
font-size: 20px;
margin-top: 3px;
}

.topic-text {
color: #848c8e;
line-height: 1.6;
}

.skills-section {
padding: 6rem 3rem;
background: #435058;
}

.skills-wrap {
max-width: 1200px;
margin: 0 auto;
}

.skills-title {
text-align: center;
margin-bottom: 4rem;
}

.skills-title h2 {
color: #f1f2ee;
font-size: 3.5rem;
margin-bottom: 1rem;
}

.skills-title p {
color: #bfb7b6;
font-size: 1.1rem;
}

.skills-columns {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 5rem;
}

.skill-list {
display: flex;
flex-direction: column;
gap: 2rem;
}

.skill-row {
background: rgba(241,242,238,0.06);
padding: 2rem;
border-radius: 16px;
display: flex;
align-items: center;
gap: 2rem;
transition: all 0.3s ease;
}

.skill-row:hover {
background: rgba(220,247,99,0.12);
}

.skill-icon-box {
width: 70px;
height: 70px;
background: #dcf763;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: #435058;
flex-shrink: 0;
}

.skill-info h4 {
color: #f1f2ee;
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.skill-info p {
color: #bfb7b6;
font-size: 14px;
line-height: 1.5;
}

.software-stack {
display: flex;
flex-direction: column;
gap: 2rem;
}

.stack-item {
background: rgba(241,242,238,0.08);
padding: 2rem;
border-radius: 20px;
text-align: center;
}

.stack-logo {
font-size: 3.5rem;
color: #dcf763;
margin-bottom: 1rem;
}

.stack-name {
color: #f1f2ee;
font-weight: 700;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.stack-desc {
color: #bfb7b6;
font-size: 13px;
}

.projects-section {
padding: 7rem 3rem;
background: #f1f2ee;
}

.projects-container {
max-width: 1400px;
margin: 0 auto;
}

.proj-header {
margin-bottom: 4rem;
}

.proj-header h2 {
color: #435058;
font-size: 4rem;
margin-bottom: 1.5rem;
}

.proj-header p {
color: #848c8e;
font-size: 1.1rem;
}

.project-types {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 2.5rem;
}

.proj-type {
background: white;
border-radius: 20px;
overflow: hidden;
transition: transform 0.4s ease;
}

.proj-type:hover {
transform: scale(1.05);
}

.proj-visual {
height: 220px;
background: #435058;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
color: #dcf763;
}

.proj-details {
padding: 2.5rem;
}

.proj-details h3 {
color: #435058;
font-size: 1.6rem;
margin-bottom: 1rem;
}

.proj-details p {
color: #848c8e;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.proj-tags {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
}

.p-tag {
background: #f1f2ee;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 12px;
color: #435058;
font-weight: 600;
}

.cta-final {
padding: 6rem 3rem;
background: linear-gradient(to right, #435058, #59686f);
}

.cta-content {
max-width: 1000px;
margin: 0 auto;
text-align: center;
}

.cta-content h2 {
color: #f1f2ee;
font-size: 4.5rem;
margin-bottom: 2rem;
}

.cta-content p {
color: #bfb7b6;
font-size: 1.25rem;
margin-bottom: 3rem;
line-height: 1.7;
}

.cta-btns {
display: flex;
gap: 1.5rem;
justify-content: center;
}

.web-splash {
background: linear-gradient(to bottom, #f1f2ee 0%, white 100%);
padding: 9rem 3rem 7rem;
}

.splash-container {
max-width: 1300px;
margin: 0 auto;
text-align: center;
}

.splash-container h1 {
font-size: 7rem;
color: #435058;
line-height: 0.88;
margin-bottom: 2rem;
}

.highlight-text {
background: linear-gradient(120deg, #dcf763 0%, #d1ed4f 100%);
padding: 0 1.5rem;
border-radius: 12px;
display: inline-block;
}

.splash-desc {
font-size: 1.3rem;
color: #848c8e;
max-width: 750px;
margin: 0 auto 3.5rem;
line-height: 1.75;
}

.stats-row {
display: flex;
justify-content: center;
gap: 5rem;
margin-bottom: 4rem;
}

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

.sb-number {
font-size: 4rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 0.5rem;
line-height: 1;
}

.sb-label {
font-size: 15px;
color: #848c8e;
}

.tech-showcase {
padding: 6rem 3rem;
background: #435058;
}

.tech-wrap {
max-width: 1400px;
margin: 0 auto;
}

.tech-header {
text-align: center;
margin-bottom: 5rem;
}

.tech-header h2 {
color: #f1f2ee;
font-size: 4.5rem;
margin-bottom: 1.5rem;
}

.tech-header p {
color: #bfb7b6;
font-size: 1.2rem;
}

.tech-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 2.5rem;
}

.tech-card {
background: rgba(241,242,238,0.05);
padding: 3rem;
border-radius: 24px;
border: 2px solid rgba(220,247,99,0.2);
transition: all 0.4s ease;
}

.tech-card:hover {
background: rgba(220,247,99,0.08);
border-color: #dcf763;
transform: translateY(-10px);
}

.tc-badge {
background: #dcf763;
color: #435058;
padding: 0.5rem 1.2rem;
border-radius: 25px;
font-size: 13px;
font-weight: 700;
display: inline-block;
margin-bottom: 2rem;
}

.tech-card h3 {
color: #f1f2ee;
font-size: 2rem;
margin-bottom: 1.5rem;
}

.tech-list {
display: flex;
flex-direction: column;
gap: 1.2rem;
}

.tl-item {
color: #bfb7b6;
font-size: 15px;
padding-left: 1.5rem;
position: relative;
}

.tl-item::before {
content: '→';
position: absolute;
left: 0;
color: #dcf763;
font-weight: 700;
}

.card-tall {
grid-row: span 2;
}

.learning-path {
padding: 7rem 3rem;
background: white;
}

.path-container {
max-width: 1200px;
margin: 0 auto;
}

.path-title {
text-align: center;
margin-bottom: 5rem;
}

.path-title h2 {
color: #435058;
font-size: 4rem;
margin-bottom: 1.5rem;
}

.path-title p {
color: #848c8e;
font-size: 1.15rem;
}

.weeks-timeline {
display: flex;
flex-direction: column;
gap: 3.5rem;
}

.week-item {
display: grid;
grid-template-columns: 200px 1fr;
gap: 4rem;
align-items: start;
}

.week-label {
background: #f1f2ee;
padding: 2rem;
border-radius: 20px;
text-align: center;
}

.wl-number {
font-size: 3rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 0.5rem;
line-height: 1;
}

.wl-text {
color: #848c8e;
font-size: 14px;
}

.week-content {
background: #f1f2ee;
padding: 3rem;
border-radius: 20px;
}

.week-content h3 {
color: #435058;
font-size: 2rem;
margin-bottom: 1.5rem;
}

.week-content p {
color: #848c8e;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.week-skills {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}

.skill-tag {
background: white;
padding: 0.6rem 1.4rem;
border-radius: 30px;
font-size: 13px;
color: #435058;
font-weight: 600;
}

.build-section {
padding: 6rem 3rem;
background: #f1f2ee;
}

.build-container {
max-width: 1400px;
margin: 0 auto;
}

.build-header {
margin-bottom: 4rem;
text-align: center;
}

.build-header h2 {
color: #435058;
font-size: 4rem;
margin-bottom: 1.5rem;
}

.build-header p {
color: #848c8e;
font-size: 1.15rem;
}

.build-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}

.build-card {
background: white;
border-radius: 24px;
overflow: hidden;
border: 3px solid transparent;
transition: all 0.4s ease;
}

.build-card:hover {
border-color: #dcf763;
transform: scale(1.03);
}

.bc-header {
background: #435058;
padding: 3rem;
}

.bc-header h3 {
color: #dcf763;
font-size: 2.2rem;
margin-bottom: 1rem;
}

.bc-header p {
color: #bfb7b6;
line-height: 1.7;
}

.bc-details {
padding: 3rem;
}

.detail-row {
display: flex;
align-items: start;
gap: 1.5rem;
margin-bottom: 2rem;
}

.dr-icon {
width: 50px;
height: 50px;
background: #dcf763;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: #435058;
flex-shrink: 0;
}

.dr-text h4 {
color: #435058;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.dr-text p {
color: #848c8e;
font-size: 14px;
line-height: 1.6;
}

.final-cta {
padding: 6rem 3rem;
background: linear-gradient(135deg, #435058, #59686f);
}

.final-content {
max-width: 950px;
margin: 0 auto;
text-align: center;
}

.final-content h2 {
color: #f1f2ee;
font-size: 5rem;
margin-bottom: 2rem;
line-height: 1;
}

.final-content p {
color: #bfb7b6;
font-size: 1.3rem;
margin-bottom: 3.5rem;
line-height: 1.7;
}

.final-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
}

.uiux-intro {
padding: 8rem 3rem 6rem;
background: white;
position: relative;
}

.intro-wrapper {
max-width: 1400px;
margin: 0 auto;
}

.intro-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
margin-bottom: 5rem;
}

.intro-text h1 {
font-size: 6.5rem;
color: #435058;
line-height: 0.9;
margin-bottom: 2.5rem;
}

.accent {
color: #dcf763;
}

.intro-text p {
font-size: 1.25rem;
color: #848c8e;
line-height: 1.8;
margin-bottom: 3rem;
}

.intro-metrics {
display: flex;
gap: 3rem;
}

.metric-box {
display: flex;
flex-direction: column;
}

.mb-value {
font-size: 3.2rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 0.6rem;
}

.mb-label {
font-size: 14px;
color: #848c8e;
}

.intro-image {
position: relative;
}

.intro-image img {
width: 100%;
border-radius: 30px;
box-shadow: 0 30px 80px rgba(67,80,88,0.25);
}

.floating-stat {
position: absolute;
bottom: -30px;
right: -30px;
background: #435058;
padding: 2rem 2.5rem;
border-radius: 20px;
}

.fs-number {
font-size: 2.8rem;
font-weight: 700;
color: #dcf763;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 0.5rem;
}

.fs-text {
color: #bfb7b6;
font-size: 14px;
}

.process-deep {
padding: 6rem 3rem;
background: #f1f2ee;
}

.process-head {
text-align: center;
margin-bottom: 5rem;
}

.process-head h2 {
font-size: 4.5rem;
color: #435058;
margin-bottom: 1.5rem;
}

.process-head p {
font-size: 1.2rem;
color: #848c8e;
}

.process-phases {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
}

.phase-card {
background: white;
padding: 3rem;
border-radius: 24px;
transition: all 0.4s ease;
position: relative;
}

.phase-card:hover {
transform: translateY(-15px);
box-shadow: 0 25px 60px rgba(67,80,88,0.15);
}

.phase-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #dcf763, #d1ed4f);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
}

.phase-icon i {
font-size: 2.5rem;
color: #435058;
}

.phase-card h3 {
color: #435058;
font-size: 1.9rem;
margin-bottom: 1.5rem;
}

.phase-steps {
display: flex;
flex-direction: column;
gap: 1.2rem;
}

.step-line {
display: flex;
align-items: start;
gap: 1rem;
}

.step-dot {
width: 8px;
height: 8px;
background: #dcf763;
border-radius: 50%;
margin-top: 8px;
flex-shrink: 0;
}

.step-line p {
color: #848c8e;
line-height: 1.7;
}

.tools-deep {
padding: 7rem 3rem;
background: #435058;
}

.tools-wrapper {
max-width: 1200px;
margin: 0 auto;
}

.tools-header {
text-align: center;
margin-bottom: 5rem;
}

.tools-header h2 {
color: #f1f2ee;
font-size: 4rem;
margin-bottom: 1.5rem;
}

.tools-header p {
color: #bfb7b6;
font-size: 1.15rem;
}

.tools-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.tool-main {
background: rgba(241,242,238,0.08);
padding: 4rem;
border-radius: 24px;
border: 3px solid rgba(220,247,99,0.3);
}

.tm-logo {
font-size: 5rem;
color: #dcf763;
margin-bottom: 2rem;
}

.tool-main h3 {
color: #f1f2ee;
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

.tool-main p {
color: #bfb7b6;
line-height: 1.8;
margin-bottom: 2.5rem;
}

.feature-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.fl-item {
display: flex;
align-items: center;
gap: 1.2rem;
}

.fl-icon {
width: 45px;
height: 45px;
background: #dcf763;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #435058;
flex-shrink: 0;
}

.fl-text {
color: #f1f2ee;
font-size: 15px;
font-weight: 500;
}

.tool-secondary {
display: flex;
flex-direction: column;
gap: 2rem;
}

.ts-item {
background: rgba(241,242,238,0.05);
padding: 2.5rem;
border-radius: 20px;
transition: all 0.3s ease;
}

.ts-item:hover {
background: rgba(220,247,99,0.1);
}

.ts-item h4 {
color: #dcf763;
font-size: 1.4rem;
margin-bottom: 1rem;
}

.ts-item p {
color: #bfb7b6;
font-size: 14px;
line-height: 1.7;
}

.outcomes-section {
padding: 7rem 3rem;
background: white;
}

.outcomes-wrap {
max-width: 1400px;
margin: 0 auto;
}

.outcomes-title {
margin-bottom: 5rem;
}

.outcomes-title h2 {
color: #435058;
font-size: 4.5rem;
margin-bottom: 1.5rem;
}

.outcomes-title p {
color: #848c8e;
font-size: 1.2rem;
}

.outcomes-grid {
display: grid;
grid-template-columns: 1.3fr 0.7fr 1fr;
gap: 2.5rem;
}

.outcome-card {
background: #f1f2ee;
border-radius: 24px;
padding: 3rem;
transition: all 0.4s ease;
}

.outcome-card:hover {
background: #dcf763;
transform: scale(1.05);
}

.oc-number {
font-size: 5rem;
font-weight: 700;
color: rgba(67,80,88,0.2);
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 1.5rem;
}

.outcome-card:hover .oc-number {
color: rgba(67,80,88,0.4);
}

.outcome-card h3 {
color: #435058;
font-size: 1.8rem;
margin-bottom: 1.2rem;
}

.outcome-card p {
color: #848c8e;
line-height: 1.75;
}

.outcome-card:hover p {
color: #435058;
}

.oc-tall {
grid-row: span 2;
}

.final-push {
padding: 6rem 3rem;
background: linear-gradient(to bottom right, #435058, #59686f);
}

.push-wrapper {
max-width: 1100px;
margin: 0 auto;
text-align: center;
}

.push-wrapper h2 {
color: #f1f2ee;
font-size: 5.5rem;
margin-bottom: 2rem;
line-height: 0.95;
}

.push-wrapper p {
color: #bfb7b6;
font-size: 1.3rem;
margin-bottom: 3.5rem;
line-height: 1.8;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.push-actions {
display: flex;
gap: 1.5rem;
justify-content: center;
}

.price-interactive-hero {
padding: 8rem 3rem 6rem;
background: linear-gradient(to bottom, #f1f2ee, white);
}

.pih-container {
max-width: 1100px;
margin: 0 auto;
}

.pih-intro {
text-align: center;
margin-bottom: 4rem;
}

.pih-badge {
display: inline-block;
background: rgba(67,80,88,0.1);
color: #435058;
padding: 0.5rem 1.5rem;
border-radius: 30px;
font-size: 13px;
font-weight: 700;
margin-bottom: 2rem;
}

.pih-intro h1 {
font-size: 5.5rem;
color: #435058;
margin-bottom: 1.5rem;
line-height: 1;
}

.pih-intro p {
font-size: 1.2rem;
color: #848c8e;
}

.pih-selector {
background: white;
border-radius: 30px;
padding: 4rem;
box-shadow: 0 20px 60px rgba(67,80,88,0.1);
}

.pih-tabs {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
background: #f1f2ee;
padding: 0.5rem;
border-radius: 16px;
}

.pih-tab {
flex: 1;
padding: 1.2rem;
background: transparent;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
color: #848c8e;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Inter', sans-serif;
}

.pih-tab.active {
background: #435058;
color: #f1f2ee;
}

.pih-display {
text-align: center;
margin-bottom: 3rem;
}

.pih-price-zone {
display: flex;
align-items: baseline;
justify-content: center;
gap: 0.5rem;
margin-bottom: 1rem;
}

.pih-currency {
font-size: 3rem;
font-weight: 700;
color: #435058;
}

.pih-amount {
font-size: 8rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
}

.pih-period {
font-size: 1.8rem;
color: #848c8e;
}

.pih-total {
font-size: 1.2rem;
color: #848c8e;
margin-bottom: 0.5rem;
}

.pih-save {
font-size: 1.1rem;
font-weight: 700;
color: #dcf763;
min-height: 1.5rem;
}

.pih-benefits {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-bottom: 3rem;
padding: 2rem 0;
border-top: 2px solid #f1f2ee;
border-bottom: 2px solid #f1f2ee;
}

.pih-benefit {
display: flex;
align-items: center;
gap: 1rem;
}

.pih-benefit i {
font-size: 1.8rem;
color: #dcf763;
}

.pih-benefit span {
color: #435058;
font-weight: 500;
}

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

.pih-cta {
display: inline-block;
background: #435058;
color: #f1f2ee;
padding: 1.5rem 4rem;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 700;
transition: all 0.3s ease;
margin-bottom: 1rem;
}

.pih-cta:hover {
background: #59686f;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(67,80,88,0.3);
}

.pih-guarantee {
display: block;
font-size: 14px;
color: #848c8e;
}

.value-modules {
padding: 7rem 3rem;
background: white;
}

.vm-container {
max-width: 1400px;
margin: 0 auto;
}

.vm-header {
text-align: center;
margin-bottom: 5rem;
}

.vm-header h2 {
font-size: 4.5rem;
color: #435058;
margin-bottom: 1rem;
}

.vm-header p {
font-size: 1.2rem;
color: #848c8e;
}

.vm-grid {
display: grid;
grid-template-columns: 1.5fr 0.8fr 0.7fr;
gap: 2rem;
grid-auto-rows: minmax(200px, auto);
}

.vm-card {
background: #f1f2ee;
padding: 3rem;
border-radius: 24px;
transition: all 0.4s ease;
}

.vm-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(67,80,88,0.12);
}

.vm-large {
grid-row: span 2;
}

.vm-wide {
grid-column: span 2;
}

.vm-highlight {
background: #435058;
}

.vm-highlight .vm-icon-box {
background: rgba(220,247,99,0.2);
}

.vm-highlight .vm-icon-box i {
color: #dcf763;
}

.vm-highlight h3,
.vm-highlight p,
.vm-highlight .vm-meta {
color: #f1f2ee;
}

.vm-icon-box {
width: 60px;
height: 60px;
background: white;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
}

.vm-icon-box i {
font-size: 2rem;
color: #435058;
}

.vm-card h3 {
font-size: 1.7rem;
color: #435058;
margin-bottom: 1rem;
}

.vm-card p {
color: #848c8e;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.vm-meta {
font-size: 13px;
color: #bfb7b6;
font-weight: 600;
}

.payment-reality {
padding: 7rem 3rem;
background: #f1f2ee;
}

.pr-container {
max-width: 1400px;
margin: 0 auto;
}

.pr-split {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 6rem;
margin-bottom: 6rem;
}

.pr-left h2 {
font-size: 4rem;
color: #435058;
margin-bottom: 2rem;
}

.pr-left p {
color: #848c8e;
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
}

.pr-comparison {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin-top: 3rem;
}

.pr-comp-item {
background: white;
padding: 2rem;
border-radius: 16px;
border: 2px solid transparent;
transition: all 0.3s ease;
}

.pr-comp-item:hover {
border-color: #bfb7b6;
}

.pr-highlight {
border-color: #dcf763;
background: linear-gradient(135deg, #dcf763, #d1ed4f);
}

.pr-highlight:hover {
border-color: #dcf763;
transform: scale(1.05);
}

.pr-comp-label {
font-size: 14px;
color: #848c8e;
margin-bottom: 0.8rem;
font-weight: 600;
}

.pr-highlight .pr-comp-label {
color: #435058;
}

.pr-comp-price {
font-size: 2.5rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
}

.pr-comp-note {
font-size: 13px;
color: #435058;
margin-top: 0.5rem;
font-weight: 600;
}

.pr-right {
display: flex;
flex-direction: column;
gap: 2rem;
}

.pr-value-box {
background: white;
padding: 2.5rem;
border-radius: 20px;
}

.pr-vb-number {
font-size: 3.5rem;
font-weight: 700;
color: #435058;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 1rem;
line-height: 1;
}

.pr-vb-text {
color: #848c8e;
line-height: 1.6;
font-size: 15px;
}

.pr-faq-quick {
background: white;
padding: 4rem;
border-radius: 30px;
}

.pr-faq-quick h3 {
font-size: 2.5rem;
color: #435058;
margin-bottom: 3rem;
text-align: center;
}

.pr-faq-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
}

.pr-faq-item {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.pr-faq-item strong {
color: #435058;
font-size: 15px;
display: block;
}

.pr-faq-item span {
color: #848c8e;
font-size: 14px;
line-height: 1.6;
}

@media (max-width: 1024px) {
.intro-grid, .gd-hero-grid, .intro-split, .pr-split {
grid-template-columns: 1fr;
gap: 4rem;
}

.intro-left h1, .gd-hero-left h1, .intro-text h1 {
font-size: 4.5rem;
}

.courses-masonry, .project-types, .outcomes-grid, .vm-grid, .pr-comparison {
grid-template-columns: 1fr;
}

.modules-grid, .build-grid {
grid-template-columns: 1fr;
}

.item-tall, .item-wide, .oc-tall, .card-tall, .vm-large, .vm-wide {
grid-row: span 1;
grid-column: span 1;
}

.timeline-step, .week-item {
grid-template-columns: 1fr;
gap: 2rem;
}

.skills-columns, .tools-layout {
grid-template-columns: 1fr;
}

.tech-grid {
grid-template-columns: 1fr;
}

.process-phases {
grid-template-columns: 1fr;
}

.splash-container h1 {
font-size: 5rem;
}

.pih-benefits {
grid-template-columns: 1fr;
}

.pr-faq-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 {
font-size: 3rem !important;
}

.intro-left h1, .gd-hero-left h1, .intro-text h1, .splash-container h1, .pih-intro h1 {
font-size: 3.5rem !important;
}

.quick-stats, .intro-metrics, .stats-row {
flex-direction: column;
gap: 2rem;
}

.quick-info {
grid-template-columns: 1fr;
}

.process-header h2, .curr-header h2, .path-title h2 {
font-size: 2.8rem;
}

.showcase-header h2, .proj-header h2, .build-header h2, .vm-header h2, .pr-left h2 {
font-size: 2.5rem;
}

.journey-content h2, .cta-content h2, .final-content h2, .push-wrapper h2 {
font-size: 3rem;
}

.journey-actions, .cta-btns, .final-buttons, .push-actions {
flex-direction: column;
}

.tools-grid {
grid-template-columns: 1fr;
}

.pih-amount {
font-size: 5rem;
}

.pih-tabs {
flex-direction: column;
}
}

.blog-hero {
background: #435058;
padding: 6rem 3rem 5rem;
text-align: center;
}

.bh-wrapper {
max-width: 800px;
margin: 0 auto;
}

.bh-badge {
background: rgba(220, 247, 99, 0.2);
color: #dcf763;
padding: 0.5rem 1.3rem;
border-radius: 20px;
display: inline-block;
font-size: 13px;
font-weight: 600;
margin-bottom: 2rem;
text-transform: lowercase;
}

.bh-title {
font-size: 5.5rem;
color: #f1f2ee;
margin-bottom: 1.5rem;
line-height: 1;
}

.bh-text {
color: #bfb7b6;
font-size: 1.2rem;
line-height: 1.7;
max-width: 650px;
margin: 0 auto;
}

.blog-articles {
padding: 6rem 3rem;
background: #f1f2ee;
}

.ba-container {
max-width: 1200px;
margin: 0 auto;
}

.articles-grid {
display: grid;
gap: 2.5rem;
}

.post-card {
background: white;
border-radius: 16px;
padding: 2.5rem;
transition: all 0.4s ease;
border: 2px solid transparent;
}

.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(67, 80, 88, 0.12);
border-color: #dcf763;
}

.post-card.featured {
background: linear-gradient(135deg, #435058 0%, #59686f 100%);
padding: 3rem;
}

.pc-tag {
display: inline-block;
background: rgba(67, 80, 88, 0.1);
color: #435058;
padding: 0.4rem 1rem;
border-radius: 15px;
font-size: 12px;
font-weight: 600;
text-transform: lowercase;
margin-bottom: 1.5rem;
}

.post-card.featured .pc-tag {
background: rgba(220, 247, 99, 0.2);
color: #dcf763;
}

.pc-title {
font-size: 2rem;
margin-bottom: 1rem;
line-height: 1.3;
}

.pc-title a {
color: #435058;
transition: color 0.3s ease;
}

.post-card.featured .pc-title a {
color: #f1f2ee;
}

.pc-title a:hover {
color: #dcf763;
}

.pc-excerpt {
color: #848c8e;
line-height: 1.7;
margin-bottom: 1.5rem;
font-size: 15px;
}

.post-card.featured .pc-excerpt {
color: #bfb7b6;
}

.pc-meta {
display: flex;
gap: 2rem;
margin-bottom: 1.5rem;
font-size: 13px;
color: #848c8e;
}

.post-card.featured .pc-meta {
color: #bfb7b6;
}

.pc-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
}

.pc-meta i {
font-size: 15px;
}

.pc-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #435058;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.post-card.featured .pc-link {
color: #dcf763;
}

.pc-link:hover {
gap: 0.8rem;
}

.pc-link i {
font-size: 18px;
transition: transform 0.3s ease;
}

.pc-link:hover i {
transform: translateX(3px);
}

.blog-cta {
background: white;
padding: 5rem 3rem;
}

.bcta-box {
max-width: 700px;
margin: 0 auto;
text-align: center;
background: #f1f2ee;
padding: 4rem 3rem;
border-radius: 20px;
}

.bcta-box h2 {
color: #435058;
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

.bcta-box p {
color: #848c8e;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 2.5rem;
}

.cta-back {
display: inline-block;
background: #dcf763;
color: #435058;
padding: 1rem 2.5rem;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}

.cta-back:hover {
background: #d1ed4f;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(220, 247, 99, 0.35);
}

.article-container {
max-width: 1200px;
margin: 0 auto;
}

.article-hero {
background: #435058;
padding: 6rem 3rem 4rem;
text-align: center;
}

.article-hero.alt {
background: linear-gradient(135deg, #2d3e45 0%, #435058 100%);
}

.article-hero.dark {
background: #2d3436;
}

.article-hero.compact {
padding: 5rem 3rem 3rem;
}

.article-hero.minimal {
background: #f1f2ee;
border-bottom: 3px solid #dcf763;
}

.ah-content {
max-width: 800px;
margin: 0 auto;
}

.article-cat {
background: rgba(220, 247, 99, 0.2);
color: #dcf763;
padding: 0.5rem 1.2rem;
border-radius: 20px;
display: inline-block;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
text-transform: lowercase;
}

.article-hero.minimal .article-cat {
background: rgba(67, 80, 88, 0.1);
color: #435058;
}

.article-h1 {
font-size: 4rem;
color: #f1f2ee;
margin-bottom: 1.5rem;
line-height: 1.1;
}

.article-hero.minimal .article-h1 {
color: #435058;
}

.article-meta {
display: flex;
gap: 2rem;
justify-content: center;
align-items: center;
color: #bfb7b6;
font-size: 14px;
}

.article-hero.minimal .article-meta {
color: #848c8e;
}

.meta-item {
display: flex;
align-items: center;
gap: 0.5rem;
}

.meta-item i {
font-size: 16px;
}

.article-body {
padding: 5rem 3rem;
max-width: 800px;
margin: 0 auto;
}

.ab-intro {
margin-bottom: 3rem;
}

.lead-text {
font-size: 1.3rem;
line-height: 1.8;
color: #435058;
font-weight: 400;
}

.content-block {
margin-bottom: 3rem;
}

.content-block h2 {
color: #435058;
font-size: 2.2rem;
margin-bottom: 1.5rem;
}

.content-block p {
color: #848c8e;
line-height: 1.8;
font-size: 1.05rem;
margin-bottom: 1.2rem;
}

.image-showcase {
margin: 3rem 0;
}

.image-showcase.wide {
margin: 4rem -3rem;
}

.image-showcase.full {
margin: 4rem calc(-25vw + 50%);
}

.article-img {
width: 100%;
border-radius: 12px;
margin-bottom: 1rem;
}

.img-caption {
color: #848c8e;
font-size: 14px;
text-align: center;
font-style: italic;
}

.highlight-box {
background: #dcf763;
padding: 2rem;
border-radius: 12px;
margin: 3rem 0;
}

.highlight-box h3 {
color: #435058;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.highlight-box p {
color: #435058;
line-height: 1.7;
margin: 0;
}

.trend-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin: 3rem 0;
}

.trend-item {
background: #f1f2ee;
padding: 2rem;
border-radius: 12px;
}

.trend-num {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: #dcf763;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 1rem;
}

.trend-item h4 {
color: #435058;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.trend-item p {
color: #848c8e;
font-size: 14px;
margin: 0;
}

.quote-big {
text-align: center;
margin: 4rem 0;
padding: 3rem 2rem;
border-left: 5px solid #dcf763;
background: #f1f2ee;
}

.quote-big p {
font-size: 2rem;
color: #435058;
font-weight: 600;
line-height: 1.4;
font-family: 'Space Grotesk', sans-serif;
margin: 0;
}

.split-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 3rem;
align-items: center;
margin: 3rem 0;
}

.split-layout.reverse {
grid-template-columns: 1fr 1.5fr;
}

.split-left h2,
.split-right h2 {
color: #435058;
font-size: 1.8rem;
margin-bottom: 1rem;
}

.split-left p,
.split-right p {
color: #848c8e;
line-height: 1.7;
}

.color-demo {
height: 200px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cd-hex {
background: white;
color: #435058;
padding: 0.7rem 1.5rem;
border-radius: 8px;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
}

.color-pairs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin: 3rem 0;
}

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

.pair-colors {
display: flex;
gap: 0.5rem;
margin-bottom: 1rem;
}

.pair-colors span {
flex: 1;
height: 80px;
border-radius: 8px;
}

.pair-item p {
color: #848c8e;
font-size: 14px;
margin: 0;
}

.dos-donts {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin: 3rem 0;
}

.dd-col h3 {
display: flex;
align-items: center;
gap: 0.7rem;
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.dd-col.do h3 {
color: #2e8b57;
}

.dd-col.dont h3 {
color: #dc143c;
}

.dd-col.do h3 i {
color: #2e8b57;
}

.dd-col.dont h3 i {
color: #dc143c;
}

.dd-col ul {
list-style: none;
}

.dd-col ul li {
padding-left: 1.5rem;
position: relative;
margin-bottom: 1rem;
color: #848c8e;
line-height: 1.6;
}

.dd-col.do ul li:before {
content: "✓";
position: absolute;
left: 0;
color: #2e8b57;
font-weight: 700;
}

.dd-col.dont ul li:before {
content: "✗";
position: absolute;
left: 0;
color: #dc143c;
font-weight: 700;
}

.key-takeaway {
background: #435058;
color: #f1f2ee;
padding: 2.5rem;
border-radius: 12px;
margin: 3rem 0;
}

.key-takeaway h3 {
color: #dcf763;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.key-takeaway p {
color: #f1f2ee;
line-height: 1.7;
margin: 0;
}

.article-footer {
padding: 3rem 3rem 0;
max-width: 800px;
margin: 0 auto;
border-top: 2px solid #f1f2ee;
}

.back-link {
display: inline-flex;
align-items: center;
gap: 0.7rem;
color: #435058;
font-weight: 600;
transition: all 0.3s ease;
}

.back-link:hover {
color: #dcf763;
transform: translateX(-5px);
}

.back-link i {
font-size: 20px;
}

.principle-card {
background: #f1f2ee;
padding: 2.5rem;
border-radius: 16px;
margin: 3rem 0;
border-left: 5px solid #dcf763;
}

.pc-number {
display: inline-block;
background: #dcf763;
color: #435058;
padding: 0.4rem 1.2rem;
border-radius: 20px;
font-weight: 700;
font-size: 13px;
text-transform: lowercase;
margin-bottom: 1rem;
}

.principle-card h3 {
color: #435058;
font-size: 1.6rem;
margin-bottom: 1rem;
}

.principle-card p {
color: #848c8e;
line-height: 1.7;
margin: 0;
}

.checklist-box {
background: white;
padding: 2rem;
border-radius: 12px;
margin: 3rem 0;
box-shadow: 0 5px 20px rgba(67, 80, 88, 0.08);
}

.checklist-box h3 {
color: #435058;
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.checklist {
display: flex;
flex-direction: column;
gap: 1rem;
}

.check-item {
display: flex;
align-items: center;
gap: 1rem;
cursor: not-allowed;
}

.check-item input[type="checkbox"] {
width: 22px;
height: 22px;
accent-color: #dcf763;
}

.check-item span {
color: #435058;
font-size: 15px;
}

.tip-block {
display: flex;
gap: 1.5rem;
background: rgba(220, 247, 99, 0.1);
padding: 2rem;
border-radius: 12px;
margin: 3rem 0;
}

.tip-block i {
font-size: 2rem;
color: #dcf763;
flex-shrink: 0;
}

.tip-block h4 {
color: #435058;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.tip-block p {
color: #848c8e;
line-height: 1.6;
margin: 0;
}

.quote-simple {
text-align: center;
margin: 3rem 0;
padding: 2rem;
}

.quote-simple p {
font-size: 1.6rem;
color: #435058;
font-weight: 500;
font-style: italic;
line-height: 1.5;
margin: 0;
}

.shortcut-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin: 3rem 0;
}

.sc-item {
background: #f1f2ee;
padding: 1.8rem;
border-radius: 12px;
text-align: center;
}

.sc-item.essential {
background: #dcf763;
}

.sc-item kbd {
background: #435058;
color: #f1f2ee;
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
margin: 0 0.2rem;
}

.sc-item.essential kbd {
background: white;
color: #435058;
}

.sc-item p {
color: #848c8e;
margin-top: 1rem;
font-size: 14px;
}

.sc-item.essential p {
color: #435058;
font-weight: 500;
}

.workflow-step {
display: flex;
gap: 2rem;
margin: 3rem 0;
align-items: flex-start;
}

.step-num {
background: #dcf763;
color: #435058;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.5rem;
flex-shrink: 0;
font-family: 'Space Grotesk', sans-serif;
}

.step-content h3 {
color: #435058;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.step-content p {
color: #848c8e;
line-height: 1.7;
margin-bottom: 0.8rem;
}

.pro-tips {
background: #435058;
padding: 3rem;
border-radius: 16px;
margin: 3rem 0;
}

.pro-tips h3 {
color: #dcf763;
font-size: 1.8rem;
margin-bottom: 2rem;
text-align: center;
}

.pt-list {
display: flex;
flex-direction: column;
gap: 2rem;
}

.pt-item {
display: flex;
gap: 1.5rem;
background: rgba(241, 242, 238, 0.05);
padding: 1.5rem;
border-radius: 12px;
}

.pt-item i {
font-size: 2rem;
color: #dcf763;
flex-shrink: 0;
}

.pt-item h4 {
color: #f1f2ee;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.pt-item p {
color: #bfb7b6;
line-height: 1.6;
margin: 0;
}

.warning-box {
display: flex;
gap: 1.5rem;
background: rgba(220, 71, 71, 0.1);
border-left: 4px solid #dc4747;
padding: 2rem;
border-radius: 8px;
margin: 3rem 0;
}

.warning-box i {
font-size: 2rem;
color: #dc4747;
flex-shrink: 0;
}

.warning-box h4 {
color: #435058;
font-size: 1.2rem;
margin-bottom: 0.7rem;
}

.warning-box p {
color: #848c8e;
line-height: 1.6;
margin: 0;
}

.final-thought {
background: linear-gradient(135deg, #435058 0%, #59686f 100%);
padding: 3rem;
border-radius: 16px;
margin: 3rem 0;
text-align: center;
}

.final-thought h3 {
color: #dcf763;
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.final-thought p {
color: #f1f2ee;
line-height: 1.8;
font-size: 1.1rem;
margin: 0;
}

.reality-check {
background: #dcf763;
padding: 2.5rem;
border-radius: 16px;
margin-bottom: 3rem;
text-align: center;
}

.reality-check h3 {
color: #435058;
font-size: 1.8rem;
margin-bottom: 1rem;
}

.reality-check p {
color: #435058;
line-height: 1.7;
font-size: 1.05rem;
margin: 0;
}

.split-facts {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin: 3rem 0;
}

.fact-box {
padding: 2rem;
border-radius: 12px;
}

.fact-box.positive {
background: rgba(46, 139, 87, 0.1);
border-left: 4px solid #2e8b57;
}

.fact-box.negative {
background: rgba(220, 71, 71, 0.1);
border-left: 4px solid #dc4747;
}

.fact-box h4 {
color: #435058;
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.fact-box ul {
list-style: none;
}

.fact-box ul li {
padding-left: 1.5rem;
position: relative;
margin-bottom: 0.8rem;
color: #848c8e;
line-height: 1.6;
}

.fact-box.positive ul li:before {
content: "+";
position: absolute;
left: 0;
color: #2e8b57;
font-weight: 700;
}

.fact-box.negative ul li:before {
content: "−";
position: absolute;
left: 0;
color: #dc4747;
font-weight: 700;
}

.formula-box {
background: #f1f2ee;
padding: 2.5rem;
border-radius: 12px;
margin: 3rem 0;
text-align: center;
}

.formula-box h4 {
color: #435058;
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.formula {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
color: #435058;
font-weight: 600;
margin-bottom: 1rem;
}

.formula-note {
color: #848c8e;
font-size: 14px;
margin: 0;
}

.tip-simple {
display: flex;
align-items: flex-start;
gap: 1rem;
background: rgba(220, 247, 99, 0.15);
padding: 1.5rem;
border-radius: 10px;
margin: 3rem 0;
}

.tip-simple i {
font-size: 1.5rem;
color: #dcf763;
flex-shrink: 0;
margin-top: 0.2rem;
}

.tip-simple p {
color: #435058;
line-height: 1.6;
margin: 0;
}

.mistake-list {
margin: 3rem 0;
}

.mistake-list h3 {
color: #435058;
font-size: 1.6rem;
margin-bottom: 2rem;
}

.mistake-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
background: #f1f2ee;
padding: 1.5rem;
border-radius: 10px;
margin-bottom: 1rem;
}

.m-icon {
background: #dc4747;
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.m-icon i {
font-size: 18px;
}

.mistake-item p {
color: #435058;
line-height: 1.6;
margin: 0;
}

.final-advice {
background: #435058;
padding: 3rem;
border-radius: 16px;
margin: 3rem 0;
}

.final-advice h3 {
color: #dcf763;
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.final-advice p {
color: #f1f2ee;
line-height: 1.8;
font-size: 1.05rem;
margin-bottom: 1.2rem;
}

.final-advice p:last-child {
margin-bottom: 0;
}

@media (max-width: 1024px) {
.bh-title {
font-size: 4rem;
}

.article-h1 {
font-size: 3rem;
}

.trend-grid {
grid-template-columns: 1fr;
}

.split-layout,
.split-layout.reverse {
grid-template-columns: 1fr;
}

.color-pairs {
grid-template-columns: 1fr;
}

.dos-donts {
grid-template-columns: 1fr;
}

.shortcut-grid {
grid-template-columns: 1fr;
}

.split-facts {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.blog-hero {
padding: 4rem 2rem 3rem;
}

.bh-title {
font-size: 2.8rem;
}

.bh-text {
font-size: 1.05rem;
}

.blog-articles {
padding: 4rem 2rem;
}

.post-card,
.post-card.featured {
padding: 2rem;
}

.pc-title {
font-size: 1.6rem;
}

.pc-meta {
flex-direction: column;
gap: 0.8rem;
}

.blog-cta {
padding: 4rem 2rem;
}

.bcta-box {
padding: 3rem 2rem;
}

.bcta-box h2 {
font-size: 2rem;
}

.article-hero {
padding: 4rem 2rem 3rem;
}

.article-h1 {
font-size: 2.2rem;
}

.article-body {
padding: 3rem 2rem;
}

.quote-big p {
font-size: 1.5rem;
}

.article-meta {
flex-direction: column;
gap: 0.8rem;
}

.image-showcase.wide,
.image-showcase.full {
margin-left: -2rem;
margin-right: -2rem;
}
}

.blog-coming-wrapper {
padding: 8rem 3rem;
background: linear-gradient(135deg, #435058 0%, #59686f 100%);
min-height: calc(100vh - 85px);
display: flex;
align-items: center;
justify-content: center;
}

.coming-content {
text-align: center;
max-width: 900px;
}

.coming-tag {
background: rgba(220, 247, 99, 0.15);
color: #dcf763;
padding: 0.6rem 1.5rem;
border-radius: 30px;
display: inline-block;
font-size: 14px;
font-weight: 600;
margin-bottom: 2rem;
text-transform: lowercase;
}

.coming-title {
font-size: 5rem;
color: #f1f2ee;
margin-bottom: 1.5rem;
line-height: 1.1;
}

.coming-text {
color: #bfb7b6;
font-size: 1.2rem;
margin-bottom: 4rem;
line-height: 1.7;
}

.coming-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}

.topic-box {
background: rgba(241, 242, 238, 0.05);
padding: 2.5rem 2rem;
border-radius: 16px;
transition: all 0.3s ease;
}

.topic-box:hover {
background: rgba(241, 242, 238, 0.1);
transform: translateY(-5px);
}

.topic-box i {
font-size: 2.5rem;
color: #dcf763;
margin-bottom: 1rem;
}

.topic-box h3 {
color: #f1f2ee;
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.topic-box p {
color: #bfb7b6;
font-size: 14px;
}

.back-home {
display: inline-block;
background: transparent;
color: #f1f2ee;
padding: 1rem 2.5rem;
border-radius: 8px;
font-weight: 600;
border: 2px solid rgba(241, 242, 238, 0.3);
transition: all 0.3s ease;
}

.back-home:hover {
border-color: #dcf763;
background: rgba(220, 247, 99, 0.1);
color: #dcf763;
}

@media (max-width: 768px) {
.blog-coming-wrapper {
padding: 4rem 2rem;
}

.coming-title {
font-size: 2.5rem;
}

.coming-grid {
grid-template-columns: 1fr;
}
}

.contact-hero {
background: linear-gradient(135deg, #435058 0%, #59686f 100%);
padding: 8rem 3rem 5rem;
text-align: center;
}

.contact-hero-wrap h1 {
color: #f1f2ee;
font-size: 4.5rem;
margin-bottom: 1.2rem;
}

.contact-hero-wrap p {
color: #bfb7b6;
font-size: 1.2rem;
max-width: 650px;
margin: 0 auto;
}

.contact-form-area {
padding: 6rem 3rem;
background: #f1f2ee;
}

.cfa-container {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.4fr 0.6fr;
gap: 5rem;
}

.cfa-left h2 {
color: #435058;
margin-bottom: 1rem;
font-size: 2.8rem;
}

.cfa-left > p {
color: #848c8e;
margin-bottom: 3rem;
font-size: 1.05rem;
}

.main-form {
background: white;
padding: 2.5rem;
border-radius: 20px;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
color: #435058;
font-weight: 600;
margin-bottom: 0.6rem;
font-size: 14px;
text-transform: lowercase;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.9rem 1.2rem;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 15px;
font-family: 'Inter', sans-serif;
transition: border-color 0.3s ease;
background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #dcf763;
background: white;
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.submit-btn {
background: #dcf763;
color: #435058;
padding: 1.1rem 3rem;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Inter', sans-serif;
width: 100%;
text-transform: lowercase;
}

.submit-btn:hover {
background: #d1ed4f;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 247, 99, 0.4);
}

.cfa-right {
display: flex;
flex-direction: column;
gap: 1.8rem;
}

.info-block {
background: white;
padding: 2rem;
border-radius: 16px;
display: flex;
gap: 1.3rem;
align-items: flex-start;
}

.ib-icon {
background: #dcf763;
width: 50px;
height: 50px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.ib-icon i {
font-size: 1.5rem;
color: #435058;
}

.ib-content h4 {
color: #435058;
font-size: 1.1rem;
margin-bottom: 0.4rem;
text-transform: lowercase;
}

.ib-content p {
color: #848c8e;
font-size: 14px;
line-height: 1.6;
}

.response-box {
background: #435058;
padding: 2rem;
border-radius: 16px;
}

.response-box h4 {
color: #dcf763;
font-size: 1.2rem;
margin-bottom: 0.8rem;
text-transform: lowercase;
}

.response-box p {
color: #bfb7b6;
font-size: 14px;
line-height: 1.6;
}

.contact-map-section {
padding: 6rem 3rem;
background: white;
}

.cms-wrapper {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.cms-wrapper h2 {
color: #435058;
margin-bottom: 1rem;
}

.cms-wrapper > p {
color: #848c8e;
font-size: 1.05rem;
margin-bottom: 3rem;
}

.map-placeholder {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(67, 80, 88, 0.1);
}

.legal-page {
padding: 8rem 3rem 6rem;
background: #f1f2ee;
min-height: 100vh;
}

.legal-container {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 4rem;
border-radius: 20px;
}

.legal-container h1 {
color: #435058;
font-size: 3.5rem;
margin-bottom: 1rem;
text-transform: lowercase;
}

.legal-update {
color: #848c8e;
font-size: 14px;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 2px solid #f1f2ee;
}

.legal-section {
margin-bottom: 3rem;
}

.legal-section h2 {
color: #435058;
font-size: 1.8rem;
margin-bottom: 1.2rem;
text-transform: lowercase;
}

.legal-section p {
color: #848c8e;
line-height: 1.8;
margin-bottom: 1.2rem;
font-size: 15px;
}

.legal-section p strong {
color: #435058;
font-weight: 600;
}

.thankyou-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #435058 0%, #59686f 100%);
padding: 2rem;
}

.ty-content {
text-align: center;
max-width: 600px;
}

.ty-icon {
margin-bottom: 2rem;
}

.ty-content h1 {
color: #f1f2ee;
font-size: 3.5rem;
margin-bottom: 1.5rem;
text-transform: lowercase;
}

.ty-content p {
color: #bfb7b6;
font-size: 1.15rem;
line-height: 1.7;
margin-bottom: 1rem;
}

.ty-subtext {
font-size: 0.95rem;
color: #848c8e;
margin-bottom: 3rem;
}

.ty-button {
display: inline-block;
background: #dcf763;
color: #435058;
padding: 1.2rem 3rem;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
text-transform: lowercase;
}

.ty-button:hover {
background: #d1ed4f;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(220, 247, 99, 0.4);
}

@media (max-width: 1024px) {
.cfa-container {
grid-template-columns: 1fr;
gap: 3rem;
}

.form-row {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.contact-hero {
padding: 6rem 2rem 4rem;
}

.contact-hero-wrap h1 {
font-size: 3rem;
}

.legal-container {
padding: 2.5rem 2rem;
}

.legal-container h1 {
font-size: 2.5rem;
}

.ty-content h1 {
font-size: 2.5rem;
}
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; } 
    h2 { font-size: 1.8rem; } 
    h3 { font-size: 1.4rem; } 


    .big-title {
        font-size: 2.5rem !important; 
        line-height: 1.1;
    }

    .splash-container h1 {
        font-size: 2.8rem !important; 
        line-height: 1;
    }

    .bh-title {
        font-size: 2.2rem; 
        line-height: 1.1;
    }

    .article-h1 {
        font-size: 2rem; 
        line-height: 1.15;
    }

    .legal-container h1 {
        font-size: 2rem;
        word-break: break-word;
    }

    .ty-content h1 {
        font-size: 2.2rem; 
    }

    .pih-intro h1 {
        font-size: 2.5rem !important;
    }

    .coming-title {
        font-size: 2rem; 
    }

    .contact-hero-wrap h1 {
        font-size: 2.5rem; 
    }
}

@media (max-width: 375px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .big-title {
        font-size: 2rem !important;
    }
    
    .splash-container h1,
    .bh-title,
    .article-h1,
    .legal-container h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-wrapper,
    .overlap-wrap,
    .trust-wrap,
    .legal-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {

    .hero-new,
    .overlap-section,
    .price-preview,
    .tools-section,
    .final-push,
    .blog-articles,
    .article-body,
    .legal-page {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .legal-container {
        padding: 2rem 1.5rem;
    }
}

.legal-container h1 {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.legal-section h2 {
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .legal-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .tools-grid-1 {
      display: flow;
    }

   .tool-category {
margin-bottom: 20px;
    }
}