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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: #1F2937;
    background: linear-gradient(135deg, #FEFCF7 0%, #FDFAF4 40%, #FBF7ED 100%);
    font-weight: 400;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(254, 252, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(209, 126, 6, 0.15);
    box-shadow: 0 2px 20px rgba(209, 126, 6, 0.08);
    z-index: 1000;
}

.strategic1-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strategic1-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    text-decoration: none;
    background: linear-gradient(135deg, #0F766E 0%, #EA580C 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

nav a {
    text-decoration: none;
    color: #6B7280;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
}

nav a:hover {
    color: #0F766E;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0F766E 0%, #EA580C 100%);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.strategic1-nav-dropdown {
    position: relative;
}

.strategic1-nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 2px solid #0F766E;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg) translateY(-1px);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.strategic1-nav-dropdown:hover > a::after,
.strategic1-nav-dropdown:focus-within > a::after {
    transform: rotate(225deg) translateY(-1px);
    border-color: #EA580C;
}

.strategic1-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(254, 252, 247, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(24px);
    box-shadow:
        0 16px 48px rgba(209, 126, 6, 0.12),
        0 8px 24px rgba(15, 118, 110, 0.08),
        0 0 0 1px rgba(209, 126, 6, 0.08);
    min-width: 240px;
    z-index: 1001;
    border-radius: 16px;
    padding: 18px 0;
    border: 1px solid rgba(209, 126, 6, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.96);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-top: 0;
    pointer-events: none;
}

.strategic1-dropdown-content::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 24px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, rgba(254, 252, 247, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(209, 126, 6, 0.12);
    transform: rotate(45deg);
    z-index: -1;
}

.strategic1-dropdown-content a {
    display: block;
    padding: 14px 24px;
    color: #4B5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 3px solid transparent;
    letter-spacing: -0.01em;
}

.strategic1-dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.06) 0%, rgba(234, 88, 12, 0.04) 100%);
    color: #0F766E;
    border-left-color: #0F766E;
    padding-left: 28px;
    text-decoration: none;
}

.strategic1-dropdown-content a:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.strategic1-dropdown-content a:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Hero Section */
.strategic1-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.strategic1-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.3) 0%, rgba(234, 88, 12, 0.25) 50%, rgba(4, 120, 87, 0.3) 100%);
    z-index: 1;
}

.strategic1-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.4);
    z-index: 1;
}

.strategic1-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 48px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 650px;
    margin: 0 24px;
}

.strategic1-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1F2937;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.strategic1-hero .strategic1-subtitle {
    font-size: 22px;
    margin-bottom: 28px;
    color: #6B7280;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.strategic1-hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #4B5563;
    font-weight: 400;
}

/* Content Container */
.strategic1-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Sections */
.strategic1-feature-section {
    padding: 100px 0;
    position: relative;
}

.strategic1-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(209, 126, 6, 0.2) 50%, transparent 100%);
    border-radius: 1px;
}

.strategic1-feature-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 118, 110, 0.15) 50%, transparent 100%);
    border-radius: 1px;
}

.strategic1-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.strategic1-feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2937;
    background: linear-gradient(135deg, #0F766E 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.strategic1-feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #6B7280;
    font-weight: 400;
}

.strategic1-feature-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow:
        0 12px 40px rgba(209, 126, 6, 0.12),
        0 4px 16px rgba(15, 118, 110, 0.08),
        0 0 0 1px rgba(209, 126, 6, 0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.strategic1-feature-image img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(209, 126, 6, 0.15),
        0 8px 24px rgba(15, 118, 110, 0.12),
        0 0 0 1px rgba(209, 126, 6, 0.1);
}

/* Split Feature */
.strategic1-split-feature {
    padding: 100px 0;
}

.strategic1-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.strategic1-split-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow:
        0 16px 48px rgba(209, 126, 6, 0.15),
        0 6px 20px rgba(15, 118, 110, 0.1),
        0 0 0 1px rgba(209, 126, 6, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.strategic1-split-image img:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow:
        0 24px 64px rgba(209, 126, 6, 0.18),
        0 10px 28px rgba(15, 118, 110, 0.15),
        0 0 0 1px rgba(209, 126, 6, 0.12);
}

.strategic1-split-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1F2937;
    background: linear-gradient(135deg, #EA580C 0%, #0F766E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.strategic1-split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #6B7280;
    max-width: 420px;
    font-weight: 400;
}

/* Benefits Section */
.strategic1-benefits-section {
    padding: 100px 0;
    text-align: center;
}

.strategic1-benefits-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 56px;
    color: #1F2937;
    background: linear-gradient(135deg, #047857 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.strategic1-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 900px;
    margin: 0 auto;
}

.strategic1-benefit-item {
    text-align: left;
    background: linear-gradient(135deg, rgba(254, 252, 247, 0.95) 0%, rgba(253, 250, 244, 0.9) 100%);
    padding: 32px;
    border-radius: 18px;
    border: 1px solid rgba(209, 126, 6, 0.1);
    box-shadow:
        0 6px 20px rgba(209, 126, 6, 0.08),
        0 2px 8px rgba(15, 118, 110, 0.06),
        0 0 0 1px rgba(209, 126, 6, 0.05);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.strategic1-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F766E 0%, #EA580C 50%, #047857 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.strategic1-benefit-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 32px rgba(209, 126, 6, 0.12),
        0 6px 16px rgba(15, 118, 110, 0.1),
        0 0 0 1px rgba(209, 126, 6, 0.08);
}

.strategic1-benefit-item:hover::before {
    opacity: 1;
}

.strategic1-benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1F2937;
    letter-spacing: -0.01em;
}

.strategic1-benefit-item p {
    font-size: 15px;
    line-height: 1.65;
    color: #6B7280;
    font-weight: 400;
}

/* Image Gallery */
.strategic1-gallery-section {
    padding: 100px 0;
}

.strategic1-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.strategic1-gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow:
        0 8px 24px rgba(209, 126, 6, 0.1),
        0 3px 12px rgba(15, 118, 110, 0.08),
        0 0 0 1px rgba(209, 126, 6, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.strategic1-gallery-grid img:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow:
        0 16px 40px rgba(209, 126, 6, 0.15),
        0 6px 20px rgba(15, 118, 110, 0.12),
        0 0 0 1px rgba(209, 126, 6, 0.1);
}

/* Testimonials */
.strategic1-testimonials-section {
    padding: 100px 0;
    text-align: center;
}

.strategic1-testimonials-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 56px;
    color: #1F2937;
    background: linear-gradient(135deg, #EA580C 0%, #0F766E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.strategic1-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.strategic1-testimonial-card {
    background: linear-gradient(135deg, rgba(254, 252, 247, 0.98) 0%, rgba(253, 250, 244, 0.95) 100%);
    border: 1px solid rgba(209, 126, 6, 0.08);
    padding: 36px;
    border-radius: 20px;
    box-shadow:
        0 6px 24px rgba(209, 126, 6, 0.08),
        0 2px 12px rgba(15, 118, 110, 0.06),
        0 0 0 1px rgba(209, 126, 6, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    position: relative;
}

.strategic1-testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.strategic1-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 36px rgba(209, 126, 6, 0.12),
        0 4px 16px rgba(15, 118, 110, 0.1),
        0 0 0 1px rgba(209, 126, 6, 0.08);
}

.strategic1-testimonial-card:hover::before {
    opacity: 1;
}

.strategic1-testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.strategic1-testimonial-stars span {
    color: #F59E0B;
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.strategic1-testimonial-quote {
    font-size: 16px;
    line-height: 1.65;
    color: #4B5563;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.strategic1-testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    letter-spacing: -0.01em;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(209, 126, 6, 0.04) 0%, rgba(15, 118, 110, 0.03) 50%, rgba(234, 88, 12, 0.04) 100%);
    border-top: 1px solid rgba(209, 126, 6, 0.08);
    padding: 60px 0 32px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(209, 126, 6, 0.15) 50%, transparent 100%);
}

.strategic1-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.strategic1-footer-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.strategic1-footer-nav a {
    text-decoration: none;
    color: #6B7280;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.strategic1-footer-nav a:hover {
    color: #0F766E;
    text-decoration: none;
}

.strategic1-footer-nav a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #0F766E 0%, #EA580C 100%);
    transition: width 0.3s ease;
}

.strategic1-footer-nav a:hover::before {
    width: 100%;
}

.strategic1-footer-legal {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.strategic1-footer-legal a {
    text-decoration: none;
    color: #6B7280;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.strategic1-footer-legal a:hover {
    color: #0F766E;
}

.strategic1-footer-disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: rgba(254, 252, 247, 0.8);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(209, 126, 6, 0.08);
}

.strategic1-copyright {
    font-size: 13px;
    color: #9CA3AF;
    text-align: center;
    font-weight: 400;
}

/* Burger Menu */
.strategic1-burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.strategic1-burger-menu:hover {
    background: rgba(209, 126, 6, 0.08);
}

.strategic1-burger-line {
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #0F766E 0%, #EA580C 100%);
    margin: 4px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.strategic1-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 252, 247, 0.98);
    backdrop-filter: blur(28px);
    z-index: 1000;
    padding-top: 90px;
}

.strategic1-mobile-menu.open {
    display: block;
}

.strategic1-mobile-menu ul {
    list-style: none;
    padding: 0 24px;
}

.strategic1-mobile-menu li {
    margin-bottom: 20px;
}

.strategic1-mobile-menu a {
    display: block;
    padding: 16px 0;
    color: #4B5563;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid rgba(209, 126, 6, 0.1);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.strategic1-mobile-menu a:hover {
    color: #0F766E;
    border-bottom-color: rgba(15, 118, 110, 0.3);
    padding-left: 12px;
}

.strategic1-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.3s ease;
}

.strategic1-menu-close:hover {
    color: #0F766E;
}

/* Responsive */
@media (max-width: 768px) {
    .strategic1-header-content {
        padding: 16px 20px;
    }

    nav {
        display: none;
    }

    .strategic1-burger-menu {
        display: flex;
    }

    .strategic1-hero {
        height: 70vh;
    }

    .strategic1-hero h1 {
        font-size: 36px;
    }

    .strategic1-hero .strategic1-subtitle {
        font-size: 18px;
    }

    .strategic1-hero-content {
        padding: 32px 20px;
        margin: 0 12px;
    }

    .strategic1-feature-section {
        padding: 60px 0;
    }

    .strategic1-split-feature {
        padding: 60px 0;
    }

    .strategic1-feature-grid,
    .strategic1-split-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .strategic1-feature-text h3 {
        font-size: 24px;
    }

    .strategic1-split-text h2 {
        font-size: 28px;
    }

    .strategic1-benefits-section {
        padding: 60px 0;
    }

    .strategic1-benefits-section h2 {
        font-size: 28px;
    }

    .strategic1-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strategic1-gallery-section {
        padding: 60px 0;
    }

    .strategic1-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .strategic1-gallery-grid img {
        height: 240px;
    }

    .strategic1-testimonials-section {
        padding: 60px 0;
    }

    .strategic1-testimonials-section h2 {
        font-size: 28px;
    }

    .strategic1-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strategic1-footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .strategic1-footer-legal {
        flex-direction: column;
        gap: 16px;
    }

    footer {
        padding: 40px 0 24px 0;
    }
}