* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sora';
    src: url('../fonts/Sora/Sora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #1F2540;
    --secondary-color: #2FB5AA;
    --dark-color: #1F2540;
    --light-color: #f7fafa;
    --accent-color: #2FB5AA;
    --text-color: #1F2540;
    --muted-text: #4A5568;
    --surface: #ffffff;
    --surface-alt: #f7fafa;
    --border-color: #d9e2e7;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --border-radius: 20px;
    --pill-radius: 9999px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background:
        radial-gradient(circle at 90% 10%, rgba(47, 181, 170, 0.12), transparent 35%),
        radial-gradient(circle at 10% 60%, rgba(31, 37, 64, 0.06), transparent 45%),
        var(--surface-alt);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 226, 231, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    height: clamp(40px, 5vw, 56px);
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    color: var(--primary-color);
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-home {
    position: relative;
    background:
        linear-gradient(135deg, rgba(247, 250, 250, 0.95) 0%, rgba(232, 247, 246, 0.95) 100%);
    border-bottom: 1px solid rgba(217, 226, 231, 0.9);
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(47, 181, 170, 0.18), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(31, 37, 64, 0.12), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--muted-text);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--pill-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: #28a69b;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(47, 181, 170, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.65);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 50px;
    font-size: 18px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--surface-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(31, 37, 64, 0.04);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(31, 37, 64, 0.12);
}

.benefit-icon {
    font-size: 48px;
    color: #2FB5AA;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.benefit-icon-mask {
    width: 48px;
    height: 48px;
    display: inline-block;
    background-color: #2FB5AA;
    -webkit-mask-image: url('../images/ai_clipart.png?v=20260525-3');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 120%;
    mask-image: url('../images/ai_clipart.png?v=20260525-3');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 120%;
    transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: #28a69b;
}

.benefit-card:hover .benefit-icon-mask {
    background-color: #28a69b;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--muted-text);
    line-height: 1.7;
}

/* Scope Section */
.scope {
    padding: 80px 0;
    background: var(--surface);
}

.scope-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.scope-item-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.scope-item-reverse>* {
    direction: ltr;
}

.scope-main-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 16px;
    color: #2FB5AA;
}

.scope-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.scope-intro {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    text-align: center;
}

.scope-intro-lead {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 600;
}

.scope-intro:last-of-type {
    margin-bottom: 0;
}

.scope-sub-heading {
    font-size: 22px;
    color: #2FB5AA;
    margin-bottom: 12px;
}

.scope-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.scope-details h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.scope-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.scope-details ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--muted-text);
}

.scope-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.scope-details p {
    color: var(--muted-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.scope-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(183, 221, 221, 0.5) 0%, rgba(47, 181, 170, 0.2) 100%);
    border-radius: var(--border-radius);
    min-height: 300px;
}

.scope-image-photo {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.placeholder-image {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

/* Services Section */
.core-services {
    padding: 80px 0;
    background: var(--surface-alt);
}

.core-services h2,
.implementation h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(31, 37, 64, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(31, 37, 64, 0.12);
}

.service-icon {
    font-size: 48px;
    color: #2FB5AA;
    /* Default color */
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon:hover {
    color: #28A69B;
    /* Hover color */
}

.service-icon-mask {
    width: 48px;
    height: 48px;
    display: inline-block;
    background-color: #2FB5AA;
    -webkit-mask-image: url('../images/ai_clipart.png?v=20260525-3');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 120%;
    mask-image: url('../images/ai_clipart.png?v=20260525-3');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 120%;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #28a69b;
}

.service-card:hover .service-icon-mask {
    background-color: #28a69b;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--muted-text);
    line-height: 1.7;
}

/* Approach Section */
.our-approach {
    padding: 80px 0;
    background: var(--surface);
}

.our-approach h2 {
    text-align: center;
    color: #2FB5AA;
}

.approach-lead-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.approach-lead-copy {
    text-align: center;
    color: var(--muted-text);
    line-height: 1.8;
    max-width: 920px;
    margin: 0 auto 60px;
}

.approach-intro {
    text-align: center;
    font-size: 18px;
    color: var(--muted-text);
    margin-bottom: 60px;
}

.approach-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.approach-section-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.approach-section-reverse>* {
    direction: ltr;
}

.approach-followup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: -20px;
}

.approach-followup-card {
    background: var(--surface-alt);
    border: 2px solid #2FB5AA;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 4px rgba(31, 37, 64, 0.04);
}

.approach-followup-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.approach-followup-card p {
    color: var(--muted-text);
    line-height: 1.75;
    margin-bottom: 14px;
}

.approach-followup-card ul {
    margin: 0 0 16px 18px;
    color: var(--dark-color);
    line-height: 1.7;
}

.approach-followup-card p strong {
    color: var(--dark-color);
}

.approach-followup-image-wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
    grid-column: 1 / -1;
    min-height: 100%;
}

.approach-followup-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(31, 37, 64, 0.04);
    display: block;
}

.approach-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.approach-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.approach-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.approach-content p {
    color: var(--muted-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.xray-points {
    list-style: none;
    margin: 0 0 18px;
    padding-left: 0;
}

.xray-points li {
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.xray-points li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2FB5AA;
    position: absolute;
    left: 0;
    top: 2px;
}

.approach-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(183, 221, 221, 0.5) 0%, rgba(47, 181, 170, 0.2) 100%);
    border-radius: var(--border-radius);
    min-height: 300px;
}

.approach-visual-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.placeholder-box {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Implementation Section */
.implementation {
    padding: 80px 0;
    background: var(--surface-alt);
}

.implementation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.impl-phase {
    background: var(--surface);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(31, 37, 64, 0.04);
}

.impl-phase h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.impl-list {
    list-style: none;
}

.impl-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--muted-text);
    font-size: 16px;
}

.impl-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.impl-phase p {
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 80px 0;
    color: var(--primary-color);
    text-align: center;
    background: linear-gradient(135deg, rgba(247, 250, 250, 0.95) 0%, rgba(232, 247, 246, 0.95) 100%);
    border-top: 1px solid rgba(217, 226, 231, 0.7);
    border-bottom: 1px solid rgba(217, 226, 231, 0.9);
}

.page-header::before {
    content: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--muted-text);
}

.page-header-cta {
    margin-top: 22px;
    padding: 12px 30px;
    font-size: 16px;
}

/* About Section */
.about-main {
    padding: 80px 0;
    background: var(--surface);
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2FB5AA;
    text-align: center;
}

.about-description {
    font-size: 18px;
    color: var(--muted-text);
    line-height: 1.9;
    text-align: center;
}

.about-founder {
    padding: 20px 0 80px;
    background: var(--surface);
}

.founder-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--surface-alt);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.founder-card+.founder-card {
    margin-top: 30px;
}

.founder-image-wrap {
    width: 100%;
}

.founder-image {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.founder-content p {
    color: var(--muted-text);
    line-height: 1.85;
    margin-bottom: 16px;
}

.founder-content p:last-child {
    margin-bottom: 0;
}

.about-values {
    padding: 80px 0;
    background: var(--surface-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(31, 37, 64, 0.04);
}

.value-icon {
    color: #2FB5AA;
    /* Default color */
    font-size: 48px;
    transition: var(--transition);
}

.value-icon:hover {
    color: #28A69B;
    /* Hover color */
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--muted-text);
    line-height: 1.7;
}

.about-supporting {
    padding: 80px 0;
    background: var(--surface);
}

.supporting-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.why-silkoptima-copy {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.why-silkoptima-copy p {
    font-size: 18px;
    color: var(--muted-text);
    line-height: 1.9;
    margin-bottom: 22px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    background: var(--surface-alt);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-item i {
    color: #2FB5AA;
    /* Default color */
    font-size: 24px;
    /* Adjust size if needed */
    transition: var(--transition);
}

.benefit-item i:hover {
    color: #28A69B;
    /* Hover color */
}

.benefit-item p {
    color: var(--muted-text);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--surface);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--surface-alt);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(47, 181, 170, 0.2);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    background: var(--surface-alt);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-block i {
    color: var(--primary-color);
    margin-right: 10px;
}

.info-block p {
    color: var(--muted-text);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-block a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(247, 250, 250, 1) 0%, rgba(232, 247, 246, 1) 100%);
    color: var(--primary-color);
    text-align: center;
    border-top: 1px solid rgba(217, 226, 231, 0.9);
    border-bottom: 1px solid rgba(217, 226, 231, 0.9);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted-text);
}

.cta-inquire-btn {
    background: #2FB5AA;
    border-color: #2FB5AA;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 16px;
    line-height: 1.2;
}

.cta-inquire-btn:hover {
    background: #28a69b;
    border-color: #28a69b;
}

/* Footer */
.footer {
    background: var(--surface-alt);
    color: var(--primary-color);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    color: var(--muted-text);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: var(--surface);
        flex-direction: column;
        gap: 12px;
        padding: 14px 18px;
        border-radius: var(--border-radius);
        border: 1px solid var(--border-color);
        box-shadow: 0 8px 20px rgba(31, 37, 64, 0.14);
        z-index: 101;
        min-width: 200px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 10px 16px;
        font-size: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta-inquire-btn {
        width: auto;
        min-width: 180px;
        padding: 10px 20px;
        font-size: 15px;
    }

    .page-header-cta {
        width: auto;
        display: inline-block;
        padding: 10px 18px;
        font-size: 14px;
        margin-top: 16px;
    }

    .scope-item-sme .scope-image {
        order: -1;
    }

    .scope-item,
    .scope-item-reverse,
    .approach-section,
    .approach-section-reverse,
    .approach-followup-grid,
    .contact-content,
    .implementation-grid,
    .founder-card {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }

    .scope-item-reverse>*,
    .approach-section-reverse>* {
        direction: ltr !important;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .benefits,
    .scope,
    .core-services,
    .our-approach,
    .implementation,
    .about-main,
    .about-founder,
    .about-values,
    .about-supporting,
    .contact-section,
    .cta {
        padding: 50px 0;
    }

    .founder-image {
        max-width: 100%;
        height: auto;
        max-height: 360px;
    }

    .founder-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 24px;
    }

    .hero-subheading {
        font-size: 16px;
    }

    .benefits-grid,
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .hero-buttons .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .cta-inquire-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 16px;
        font-size: 14px;
    }
}