/* ===== VARIABLES ===== */
:root {
    --c-primary: #6B7B3F;
    --c-primary-dark: #4A5A2B;
    --c-primary-light: #8B9B5E;
    --c-accent: #A4B06B;
    --c-cream: #F0EDE3;
    --c-cream-dark: #E4E0D3;
    --c-bg: #E8E2D0;
    --c-bg-alt: #D9D3C1;
    --c-text: #3A3A2A;
    --c-text-light: #6B6B5A;
    --c-white: #FAFAF5;
    --c-dark: #2C3319;
    --c-border: rgba(107, 123, 63, 0.2);

    --ff-heading: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Inter', -apple-system, sans-serif;

    --fs-hero: clamp(3.5rem, 8vw, 7rem);
    --fs-h2: clamp(2.2rem, 4.5vw, 3.8rem);
    --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    --space: clamp(1rem, 3vw, 2rem);
    --section-pad: clamp(4rem, 10vw, 8rem);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    --transition: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section-label {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--c-primary);
}

.section-label--light {
    color: var(--c-cream);
}

.section-label--light::before {
    background: var(--c-cream);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-h2);
    font-weight: 400;
    line-height: 1.15;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
}

.section-title--light {
    color: var(--c-white);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--c-text-light);
    max-width: 500px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--c-primary);
    color: var(--c-white);
}

.btn--primary:hover {
    background: var(--c-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 123, 63, 0.3);
}

.btn--outline {
    border: 1.5px solid var(--c-primary);
    color: var(--c-primary);
    background: transparent;
}

.btn--outline:hover {
    background: var(--c-primary);
    color: var(--c-white);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--c-dark);
    color: var(--c-white);
}

.btn--dark:hover {
    background: #1a2010;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 51, 25, 0.3);
}

.btn--light {
    background: rgba(255,255,255,0.15);
    color: var(--c-white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn--light:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(232, 226, 208, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__text {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--c-dark);
}

.logo__sub {
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--c-primary);
    letter-spacing: 0.1em;
}

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

.nav__list {
    display: flex;
    gap: 1.8rem;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--c-text);
    position: relative;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-primary);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--c-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--c-dark);
    transition: all var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(164, 176, 107, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(107, 123, 63, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(139, 155, 94, 0.2) 0%, transparent 40%);
}

.hero__leaves {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
    opacity: 0.08;
    background: var(--c-primary);
}

.hero__leaves--1 {
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero__leaves--2 {
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
    width: 500px;
    height: 500px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 15px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    padding: 2rem 0;
}

.hero__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: rgba(107, 123, 63, 0.15);
    color: var(--c-primary);
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 1;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--c-text-light);
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 60% 40% 50% 50% / 50% 55% 45% 50%;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(107, 123, 63, 0.25),
        0 0 0 8px rgba(107, 123, 63, 0.08),
        0 0 0 20px rgba(107, 123, 63, 0.04);
    animation: morphShape 12s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 55% 45% 50%; }
    25% { border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%; }
    50% { border-radius: 40% 60% 55% 45% / 45% 50% 50% 55%; }
    75% { border-radius: 55% 45% 50% 50% / 50% 60% 40% 50%; }
}

.hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.hero__image-wrapper:hover .hero__photo {
    transform: scale(1.05);
}

.hero__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107,123,63,0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero__decor-blob {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164,176,107,0.25), transparent 70%);
    bottom: -40px;
    right: -40px;
    filter: blur(30px);
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

.hero__decor-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1.5px solid var(--c-border);
    top: -30px;
    right: -30px;
    animation: spin 30s linear infinite;
}

.hero__decor-circle::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    top: -4px;
    left: 50%;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero__decor-dots {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--c-primary) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero__scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-text-light);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--c-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== ABOUT ===== */
.about {
    padding: var(--section-pad) 0;
    background: var(--c-cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about__image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.about__image-real {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(107, 123, 63, 0.2);
}

.about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-decor {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--c-border);
    z-index: -1;
}

.about__stats {
    display: flex;
    gap: 2rem;
}

.about__stat {
    text-align: center;
}

.about__stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--c-primary);
    line-height: 1;
}

.about__stat-label {
    font-size: var(--fs-small);
    color: var(--c-text-light);
    margin-top: 0.3rem;
    display: block;
}

.about__content {
    padding-top: 1rem;
}

.about__text {
    margin-bottom: 2rem;
}

.about__text p {
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.about__credential {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(107, 123, 63, 0.08);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.about__credential:hover {
    background: rgba(107, 123, 63, 0.15);
    transform: translateX(5px);
}

.about__credential i {
    font-size: 1.3rem;
    color: var(--c-primary);
}

.about__credential span {
    font-size: 0.9rem;
    color: var(--c-text);
}

/* ===== DIPLOMAS ===== */
.diplomas {
    padding: var(--section-pad) 0;
    background: var(--c-bg);
}

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

.diploma-card {
    background: var(--c-cream);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--c-cream-dark);
    transition: all var(--transition);
}

.diploma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 123, 63, 0.1);
    border-color: var(--c-border);
}

.diploma-card__preview {
    margin-bottom: 1.2rem;
}

.diploma-card__placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgba(107,123,63,0.06), rgba(107,123,63,0.12));
    border: 2px dashed var(--c-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all var(--transition);
}

.diploma-card:hover .diploma-card__placeholder {
    border-color: var(--c-primary-light);
    background: linear-gradient(145deg, rgba(107,123,63,0.08), rgba(107,123,63,0.16));
}

.diploma-card__placeholder i {
    font-size: 2.5rem;
    color: var(--c-primary-light);
    opacity: 0.6;
}

.diploma-card__placeholder span {
    font-size: var(--fs-small);
    color: var(--c-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.diploma-card__title {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 0.3rem;
}

.diploma-card__desc {
    font-size: 0.85rem;
    color: var(--c-text-light);
}

@media (max-width: 1024px) {
    .diplomas__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .diplomas__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    position: relative;
    padding: clamp(5rem, 12vw, 10rem) 0;
    overflow: hidden;
}

.quote-section__bg {
    position: absolute;
    inset: 0;
}

.quote-section__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,51,25,0.75), rgba(107,123,63,0.65));
}

.quote-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quote-section__icon {
    color: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
}

.quote-section__text {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--c-white);
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

/* ===== APPROACHES ===== */
.approaches {
    padding: var(--section-pad) 0;
    background: var(--c-bg);
}

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

.approach-card {
    background: var(--c-cream);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    opacity: 0;
    transition: opacity var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 123, 63, 0.12);
    border-color: var(--c-border);
}

.approach-card:hover::before {
    opacity: 1;
}

.approach-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(107, 123, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.approach-card__icon i {
    font-size: 1.5rem;
    color: var(--c-primary);
}

.approach-card__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-h3);
    font-weight: 500;
    color: var(--c-dark);
    margin-bottom: 0.8rem;
}

.approach-card__text {
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.approach-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.approach-card__tags li {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(107, 123, 63, 0.08);
    font-size: 0.8rem;
    color: var(--c-primary);
    font-weight: 500;
}

/* ===== STEPS ===== */
.steps {
    padding: var(--section-pad) 0;
    background: var(--c-primary);
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(164,176,107,0.2), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(44,51,25,0.3), transparent 50%);
}

.steps .section-label {
    color: rgba(255,255,255,0.7);
}

.steps .section-label::before {
    background: rgba(255,255,255,0.5);
}

.steps .section-title {
    color: var(--c-white);
}

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

.step-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}

.step-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-5px);
}

.step-card__num {
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.step-card__icon i {
    font-size: 1.3rem;
    color: var(--c-white);
}

.step-card__title {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 0.6rem;
}

.step-card__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--section-pad) 0;
    background: var(--c-cream);
}

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

.service-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--c-white);
    border: 1px solid var(--c-cream-dark);
    transition: all var(--transition);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 123, 63, 0.1);
    border-color: var(--c-border);
}

.service-card__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.service-card__header i {
    font-size: 1.5rem;
    color: var(--c-primary);
    flex-shrink: 0;
}

.service-card__header h3 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.7;
}

/* ===== FORMATS ===== */
.formats {
    padding: var(--section-pad) 0;
    background: var(--c-bg);
}

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

.format-card {
    background: var(--c-cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--c-cream-dark);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 123, 63, 0.1);
}

.format-card--accent {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

.format-card--accent .format-card__title,
.format-card--accent .format-card__text,
.format-card--accent .format-card__detail span,
.format-card--accent .format-card__detail i {
    color: var(--c-white);
}

.format-card--accent .format-card__text {
    color: rgba(255,255,255,0.8);
}

.format-card__visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.format-card__shapes {
    position: relative;
}

.format-card__shape {
    border-radius: 50%;
}

.format-card__shape--1 {
    width: 70px;
    height: 70px;
    background: rgba(107, 123, 63, 0.15);
    border: 2px solid var(--c-accent);
}

.format-card__shape--2 {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
}

.format-card__shape--3 {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    position: absolute;
    top: -10px;
    left: 30px;
}

.format-card__shape--4 {
    width: 60px;
    height: 60px;
    background: rgba(107, 123, 63, 0.1);
    border: 2px solid var(--c-accent);
    border-radius: 30% 70% 50% 50%;
}

.format-card__title {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-dark);
    margin-bottom: 0.8rem;
}

.format-card__text {
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.format-card__details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.format-card__detail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.format-card__detail i {
    color: var(--c-primary);
    font-size: 1.1rem;
}

.format-card__detail span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text);
}

.format-card__btn {
    align-self: center;
}

/* ===== FAQ ===== */
.faq {
    padding: var(--section-pad) 0;
    background: var(--c-cream);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.faq__desc {
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq__right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border-radius: var(--radius-sm);
    background: var(--c-white);
    overflow: hidden;
    border: 1px solid var(--c-cream-dark);
    transition: border-color var(--transition);
}

.faq-item.active {
    border-color: var(--c-border);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
}

.faq-item__question span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--c-dark);
}

.faq-item__question i {
    font-size: 1.3rem;
    color: var(--c-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: 0;
}

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

.contact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,51,25,0.88), rgba(107,123,63,0.78));
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact__text {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

.contact__channel {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--c-white);
    transition: all var(--transition);
}

.contact__channel:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.contact__channel i {
    font-size: 1.3rem;
}

.contact__form {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--c-cream-dark);
    background: var(--c-cream);
    color: var(--c-text);
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--c-text-light);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--c-text-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B5A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--c-primary);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(107, 123, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--c-text-light);
    margin-top: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-dark);
    padding: 3rem 0 1.5rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo__text {
    color: var(--c-white);
}

.footer__tagline {
    margin-top: 0.8rem;
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer__links h4,
.footer__social h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 1rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--c-accent);
    transform: translateX(3px);
    display: inline-block;
}

.footer__social-links {
    display: flex;
    gap: 0.8rem;
}

.footer__social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer__social-links a:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white);
    transform: translateY(-3px);
}

.footer__bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer__credit {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer__credit a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    font-weight: 500;
}

.footer__credit a:hover {
    color: var(--c-accent);
}

.footer__heart {
    color: #e74c3c;
    font-size: 0.85rem;
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

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

    .about__image-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about__image-silhouette {
        max-width: 320px;
    }

    .about__image-decor {
        max-width: 320px;
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--c-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-slow);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav.open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .nav__link {
        font-size: 1.1rem;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero__scroll {
        display: none;
    }

    .approaches__grid,
    .services__grid,
    .steps__grid,
    .formats__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about__stats {
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .format-card__details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== OVERLAY for mobile nav ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 51, 25, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
